2026-01-08 16:35:06 +08:00
|
|
|
import {
|
|
|
|
|
MyButtons,
|
|
|
|
|
MyColumns,
|
|
|
|
|
MyPageContainer,
|
|
|
|
|
MyProTableProps,
|
|
|
|
|
} from '@/common';
|
|
|
|
|
import { Selects } from '@/components/Select';
|
|
|
|
|
import { Apis } from '@/gen/Apis';
|
|
|
|
|
import {
|
|
|
|
|
AssetHousesOwnershipTypeEnum,
|
|
|
|
|
AssetHousesUsageEnum,
|
|
|
|
|
} from '@/gen/Enums';
|
|
|
|
|
import { ProTable } from '@ant-design/pro-components';
|
|
|
|
|
import { useNavigate } from '@umijs/max';
|
|
|
|
|
import { Space, Tag } from 'antd';
|
|
|
|
|
import Delivery from './modals/Delivery';
|
|
|
|
|
|
|
|
|
|
export default function Index({ title = '房屋档案' }) {
|
|
|
|
|
const navigate = useNavigate();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<MyPageContainer
|
|
|
|
|
title={title}
|
|
|
|
|
enableTabs={true}
|
|
|
|
|
tabKey="archive-asset-houses"
|
|
|
|
|
tabLabel={title}
|
|
|
|
|
>
|
|
|
|
|
<ProTable
|
|
|
|
|
{...MyProTableProps.props}
|
|
|
|
|
headerTitle="房屋档案 (按房屋查询)"
|
|
|
|
|
request={async (params, sort) =>
|
|
|
|
|
MyProTableProps.request(params, sort, Apis.Asset.AssetHouses.List)
|
|
|
|
|
}
|
2026-01-22 11:41:29 +08:00
|
|
|
// toolBarRender={(action) => [
|
|
|
|
|
// <MyImportModal
|
|
|
|
|
// key="ImportHouse"
|
|
|
|
|
// title="批量导入"
|
|
|
|
|
// type="default"
|
|
|
|
|
// size="middle"
|
|
|
|
|
// templateApi={Apis.Archive.HouseOccupants.DownloadTemplate}
|
|
|
|
|
// importApi={Apis.Archive.HouseOccupants.Import}
|
|
|
|
|
// reload={action?.reload}
|
|
|
|
|
// />,
|
|
|
|
|
// ]}
|
2026-01-08 16:35:06 +08:00
|
|
|
columns={[
|
|
|
|
|
MyColumns.ID({ search: false }),
|
|
|
|
|
Selects?.AssetProjects({
|
|
|
|
|
title: '选择项目',
|
|
|
|
|
key: 'asset_projects_id',
|
|
|
|
|
hidden: true,
|
|
|
|
|
}),
|
|
|
|
|
{
|
|
|
|
|
title: '项目名称',
|
|
|
|
|
dataIndex: ['asset_project', 'name'],
|
|
|
|
|
search: {
|
|
|
|
|
transform: (value) => {
|
|
|
|
|
return { project_name: value };
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '房屋名称',
|
|
|
|
|
dataIndex: 'full_name',
|
|
|
|
|
ellipsis: true,
|
|
|
|
|
},
|
|
|
|
|
// MyColumns.EnumTag({
|
|
|
|
|
// title: '房屋状态',
|
|
|
|
|
// dataIndex: 'status',
|
|
|
|
|
// valueEnum: AssetHousesStatusEnum,
|
|
|
|
|
// search: false,
|
|
|
|
|
// }),
|
|
|
|
|
|
|
|
|
|
MyColumns.EnumTag({
|
|
|
|
|
title: '产权性质',
|
|
|
|
|
dataIndex: 'ownership_type',
|
|
|
|
|
valueEnum: AssetHousesOwnershipTypeEnum,
|
|
|
|
|
search: false,
|
|
|
|
|
}),
|
|
|
|
|
MyColumns.EnumTag({
|
|
|
|
|
title: '用途',
|
|
|
|
|
dataIndex: 'usage',
|
|
|
|
|
valueEnum: AssetHousesUsageEnum,
|
|
|
|
|
}),
|
|
|
|
|
{
|
|
|
|
|
title: '楼层',
|
|
|
|
|
dataIndex: 'floor',
|
|
|
|
|
render(_, record) {
|
|
|
|
|
return `${record?.floor}层`;
|
|
|
|
|
},
|
|
|
|
|
search: false,
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// title: '建筑面积',
|
|
|
|
|
// dataIndex: 'built_area',
|
|
|
|
|
// render(_, record) {
|
|
|
|
|
// return `${record?.built_area || ''} m²`;
|
|
|
|
|
// },
|
|
|
|
|
// search: false,
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
title: '客户信息',
|
|
|
|
|
render(_, record) {
|
|
|
|
|
const owners =
|
|
|
|
|
record?.house_occupants?.filter(
|
|
|
|
|
(res: any) => res?.house_relation === 'Owner',
|
|
|
|
|
) || [];
|
|
|
|
|
const residents =
|
|
|
|
|
record?.house_occupants?.filter(
|
|
|
|
|
(res: any) => res?.house_relation === 'Resident',
|
|
|
|
|
) || [];
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
{owners.length > 0 && (
|
|
|
|
|
<div>
|
|
|
|
|
<Tag color="blue">产权人</Tag>
|
|
|
|
|
{owners.map((owner: any) => owner?.name).join('、')}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{residents.length > 0 && (
|
|
|
|
|
<div style={{ marginTop: 4 }}>
|
|
|
|
|
<Tag color="green">住户</Tag>
|
|
|
|
|
{residents
|
|
|
|
|
.map((resident: any) => resident?.name)
|
|
|
|
|
.join('、')}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{owners.length === 0 && residents.length === 0 && (
|
|
|
|
|
<Tag color="default">暂无</Tag>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
search: false,
|
|
|
|
|
},
|
|
|
|
|
MyColumns.Option({
|
|
|
|
|
render: (_, item: any, index, action) => (
|
|
|
|
|
<Space key={index}>
|
|
|
|
|
<MyButtons.View
|
|
|
|
|
title="查看"
|
|
|
|
|
onClick={() => {
|
|
|
|
|
navigate(`/customer/archive/show/${item.id}`);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2026-01-22 11:41:29 +08:00
|
|
|
<Delivery
|
|
|
|
|
item={item}
|
|
|
|
|
reload={action?.reload}
|
|
|
|
|
title="添加业主"
|
|
|
|
|
/>
|
|
|
|
|
{/* {!item?.house_occupants?.length ? (
|
2026-01-08 16:35:06 +08:00
|
|
|
<Delivery
|
|
|
|
|
item={item}
|
|
|
|
|
reload={action?.reload}
|
|
|
|
|
title="添加业主"
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
''
|
2026-01-22 11:41:29 +08:00
|
|
|
)} */}
|
2026-01-08 16:35:06 +08:00
|
|
|
</Space>
|
|
|
|
|
),
|
|
|
|
|
}),
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</MyPageContainer>
|
|
|
|
|
);
|
|
|
|
|
}
|