dev_1.2
tangjie 2026-07-31 17:15:16 +08:00
parent 373fe6d612
commit cdebb79a03
2 changed files with 10 additions and 3 deletions

View File

@ -212,6 +212,13 @@ function PersonnelInfoPage(props) {
dataIndex: "certNames", dataIndex: "certNames",
ellipsis: true, ellipsis: true,
render: (text) => text || "-", render: (text) => text || "-",
},
{
title: "能力",
width: 80,
dataIndex: "abilityNames",
ellipsis: true,
render: (text) => '暂无',
}, },
{ {
title: "操作", title: "操作",
@ -246,7 +253,7 @@ function PersonnelInfoPage(props) {
goCertificate(record.id, record.userName); goCertificate(record.id, record.userName);
}} }}
> >
证书 证书能力
</Button> </Button>
<Button <Button
type="link" type="link"

View File

@ -372,7 +372,7 @@ function OrgAccountPage(props) {
<Descriptions.Item label="属地"> <Descriptions.Item label="属地">
{detail.districtName} {detail.districtName}
</Descriptions.Item> </Descriptions.Item>
<Descriptions.Item label="安全生产监管行业类别"> <Descriptions.Item label="执业资质范围">
{detail.safetyIndustryCategoryName} {detail.safetyIndustryCategoryName}
</Descriptions.Item> </Descriptions.Item>
<Descriptions.Item label="经营地址" span={2}> <Descriptions.Item label="经营地址" span={2}>
@ -449,7 +449,7 @@ function OrgAccountPage(props) {
<Col span={12}> <Col span={12}>
<Form.Item <Form.Item
name="safetyIndustryCategoryName" name="safetyIndustryCategoryName"
label="安全生产监管行业类别" label="执业资质范围"
> >
<Input /> <Input />
</Form.Item> </Form.Item>