import { MyBetaModalFormProps } from '@/common'; import { Apis } from '@/gen/Apis'; import { ProCard } from '@ant-design/pro-components'; import { useParams } from '@umijs/max'; import { Badge, Tabs } from 'antd'; import { useEffect, useState } from 'react'; import OccupantsHistory from '../table/OccupantsHistory'; import OccupantsNow from '../table/OccupantsNow'; import RegistersList from '../table/RegistersList'; import HouseInfo from './HouseInfo'; import SummaryInfo from './SummaryInfo'; export default function Show(props: MyBetaModalFormProps) { const { id } = useParams<{ id: string }>(); const [data, setShow] = useState({}); const [pendingCount, setPendingCount] = useState(0); const loadShow = () => { let paramsId: any = { id: id ?? 0 }; Apis.Asset.AssetHouses.Show(paramsId).then((res) => { setShow(res?.data); }); }; const loadPendingCount = () => { Apis.Archive.HouseRegisters.List({ asset_houses_id: Number(id), status: 'Pending', }).then((res) => { setPendingCount(res?.meta?.total || 0); }); }; useEffect(() => { loadShow(); loadPendingCount(); }, [props.item?.id]); let items = [ { label: '当前客户', key: '1', closable: false, children: ( { loadShow(); loadPendingCount(); }} /> ), }, { label: '历史客户', key: '2', closable: false, children: , }, { label: (
操作记录 {pendingCount > 0 && ( )}
), key: '3', closable: false, children: ( ), }, ]; return ( <> {id && } ); }