45 lines
1.2 KiB
TypeScript
Raw Normal View History

2025-06-30 14:24:39 +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';
2025-06-30 16:07:20 +08:00
import ComponentsInfo from './components/ComponentsInfo';
2025-06-30 14:24:39 +08:00
import Organizations from './components/Organizations';
export default function Show({ title = '机构详情' }) {
const { id } = useParams<{ id: string }>();
const [data, setShow] = useState<any>({});
const loadShow = () => {
let paramsId: any = { id: id ?? 0 };
Apis.Company.Companies.Show(paramsId).then((res) => {
setShow(res?.data);
});
};
useEffect(() => {
loadShow();
}, [id]);
let items = [
{
2025-06-30 16:07:20 +08:00
label: '基本信息',
2025-06-30 14:24:39 +08:00
key: '1',
closable: false,
2025-06-30 16:07:20 +08:00
children: <ComponentsInfo item={data} reload={() => loadShow()} />,
},
{
label: '组织',
key: '2',
closable: false,
2025-06-30 14:24:39 +08:00
children: <Organizations item={data} />,
},
];
return (
<MyPageContainer title={title}>
<ProCard>
<Tabs type="card" items={data?.id ? items : []} />
</ProCard>
</MyPageContainer>
);
}