All checks were successful
Build and Push Docker Image / build (push) Successful in 3m52s
129 lines
3.5 KiB
TypeScript
129 lines
3.5 KiB
TypeScript
import {
|
|
MyButtons,
|
|
MyColumns,
|
|
MyImportModal,
|
|
MyPageContainer,
|
|
MyProTableProps,
|
|
usePageTabs,
|
|
} from '@/common';
|
|
import { Apis } from '@/gen/Apis';
|
|
import { HouseBillsBillStatusEnum, HouseBillsTypeEnum } from '@/gen/Enums';
|
|
import { ProTable } from '@ant-design/pro-components';
|
|
import { Space } from 'antd';
|
|
import BillCreate from './modals/BillCreate';
|
|
import BillUpdate from './modals/BillUpdate';
|
|
|
|
export default function Index({ title = '账单明细' }) {
|
|
// 注册当前页面为标签页
|
|
usePageTabs({
|
|
tabKey: 'housebills',
|
|
tabLabel: title,
|
|
});
|
|
|
|
return (
|
|
<MyPageContainer
|
|
title={title}
|
|
enableTabs={true}
|
|
tabKey="housebills"
|
|
tabLabel={title}
|
|
>
|
|
<ProTable
|
|
{...MyProTableProps.props}
|
|
request={async (params, sort) =>
|
|
MyProTableProps.request(params, sort, Apis.Bill.HouseBills.List)
|
|
}
|
|
toolBarRender={(action) => [
|
|
<MyImportModal
|
|
key="ImportHouse"
|
|
title="批量导入"
|
|
type="danger"
|
|
size="middle"
|
|
templateApi={Apis.Bill.HouseBills.DownloadTemplate}
|
|
importApi={Apis.Bill.HouseBills.Import}
|
|
reload={action?.reload}
|
|
/>,
|
|
<BillCreate key="Create" reload={action?.reload} title={title} />,
|
|
]}
|
|
columns={[
|
|
MyColumns.ID(),
|
|
MyColumns.EnumTag({
|
|
title: '状态',
|
|
dataIndex: 'bill_status',
|
|
valueEnum: HouseBillsBillStatusEnum,
|
|
}),
|
|
MyColumns.EnumTag({
|
|
title: '类型',
|
|
dataIndex: 'type',
|
|
valueEnum: HouseBillsTypeEnum,
|
|
}),
|
|
{
|
|
title: '房屋',
|
|
dataIndex: ['asset_house', 'full_name'],
|
|
search: {
|
|
transform: (value) => {
|
|
return { full_name: value };
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: '账单月份',
|
|
render: (_, record) => {
|
|
return `${record.year}-${String(record.month).padStart(2, '0')}`;
|
|
},
|
|
},
|
|
{
|
|
title: '账单金额',
|
|
dataIndex: 'amount',
|
|
search: false,
|
|
},
|
|
{
|
|
title: '优惠金额',
|
|
dataIndex: 'discount_amount',
|
|
search: false,
|
|
},
|
|
{
|
|
title: '滞纳金',
|
|
dataIndex: 'late_fee',
|
|
search: false,
|
|
},
|
|
{
|
|
title: '应付金额',
|
|
dataIndex: 'total_payable_amount',
|
|
search: false,
|
|
},
|
|
{
|
|
title: '计费开始日期',
|
|
dataIndex: 'start_date',
|
|
search: false,
|
|
},
|
|
{
|
|
title: '计费结束日期',
|
|
dataIndex: 'end_date',
|
|
search: false,
|
|
},
|
|
|
|
// title: '备注',
|
|
// dataIndex: 'remark',
|
|
// search: false,
|
|
// },
|
|
MyColumns.CreatedAt(),
|
|
MyColumns.Option({
|
|
render: (_, item: any, index, action) => (
|
|
<Space key={index}>
|
|
<BillUpdate item={item} reload={action?.reload} title={title} />
|
|
<MyButtons.Delete
|
|
onConfirm={() =>
|
|
Apis.Bill.HouseBills.Delete({ id: item.id }).then(() =>
|
|
action?.reload(),
|
|
)
|
|
}
|
|
/>
|
|
</Space>
|
|
),
|
|
}),
|
|
]}
|
|
/>
|
|
</MyPageContainer>
|
|
);
|
|
}
|