62 lines
1.6 KiB
TypeScript
Raw Normal View History

2025-07-10 18:01:45 +08:00
import { MyPageContainer } from '@/common';
import { Apis } from '@/gen/Apis';
import { ProCard } from '@ant-design/pro-components';
import { useParams } from '@umijs/max';
import { Tabs } from 'antd';
import { useEffect, useState } from 'react';
import HouseInfo from './components/HouseInfo';
2025-07-25 16:42:54 +08:00
import OccupantsHistory from './table/OccupantsHistory';
2025-07-10 18:01:45 +08:00
import OccupantsNow from './table/OccupantsNow';
2025-07-25 16:42:54 +08:00
import RegistersList from './table/RegistersList';
2025-07-10 18:01:45 +08:00
export default function Show({ title = '房屋详情' }) {
const { id } = useParams<{ id: string }>();
const [data, setShow] = useState<any>({});
const loadShow = () => {
let paramsId: any = { id: id ?? 0 };
Apis.Asset.AssetHouses.Show(paramsId).then((res) => {
setShow(res?.data);
});
};
useEffect(() => {
loadShow();
}, [id]);
let items = [
{
2025-07-25 16:42:54 +08:00
label: '当前客户',
2025-07-10 18:01:45 +08:00
key: '1',
closable: false,
2025-07-25 16:42:54 +08:00
children: data?.id ? (
2025-07-16 10:18:01 +08:00
<OccupantsNow
2025-07-25 16:42:54 +08:00
item={{ ...data, asset_houses_id: id }}
2025-07-16 10:18:01 +08:00
reload={() => loadShow()}
/>
2025-07-25 16:42:54 +08:00
) : (
''
2025-07-16 10:18:01 +08:00
),
2025-07-10 18:01:45 +08:00
},
{
2025-07-25 16:42:54 +08:00
label: '历史客户',
2025-07-10 18:01:45 +08:00
key: '2',
closable: false,
2025-07-25 16:42:54 +08:00
children: <OccupantsHistory item={{ ...data, asset_houses_id: id }} />,
},
{
label: '操作记录',
key: '3',
closable: false,
children: <RegistersList item={{ ...data, asset_houses_id: id }} />,
2025-07-10 18:01:45 +08:00
},
];
return (
<MyPageContainer title={title}>
<HouseInfo item={data} />
<ProCard>
<Tabs type="card" items={items} />
</ProCard>
</MyPageContainer>
);
}