feat
parent
1950a11992
commit
606df9c56b
|
|
@ -47,8 +47,8 @@ export default function BasicInfoStep({ form, disabled, mode }) {
|
|||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item name="filingUnitName" label="备案单位" rules={[{ required: !disabled, message: "请输入备案单位" }]}>
|
||||
<Input placeholder="备案单位" maxLength={64} />
|
||||
<Form.Item name="filingUnitName" label="机构名称" rules={[{ required: !disabled, message: "请输入机构名称" }]}>
|
||||
<Input placeholder="机构名称" maxLength={64} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
|
|
|
|||
|
|
@ -105,8 +105,8 @@ export default function FilingListTable({
|
|||
width: 120,
|
||||
ellipsis: true,
|
||||
},
|
||||
{ title: "备案单位", dataIndex: "filingUnitName", ellipsis: true },
|
||||
{ title: "备案编号", dataIndex: "filingNo", width: 200 },
|
||||
{ title: "机构名称", dataIndex: "filingUnitName", ellipsis: true },
|
||||
mode !== 'application' && { title: "资质证书编号", dataIndex: "filingNo", width: 200 },
|
||||
{
|
||||
title: "安全评价业务范围",
|
||||
dataIndex: "businessScope",
|
||||
|
|
@ -120,7 +120,7 @@ export default function FilingListTable({
|
|||
return record.businessScope || "-";
|
||||
},
|
||||
},
|
||||
];
|
||||
].filter(Boolean);
|
||||
|
||||
if (showChangeCount) {
|
||||
columns.push({
|
||||
|
|
@ -241,7 +241,7 @@ export default function FilingListTable({
|
|||
formLine={[
|
||||
<Form.Item key="filingUnitName" name="filingUnitName">
|
||||
<ControlWrapper.Input
|
||||
label="备案单位"
|
||||
label="机构名称"
|
||||
placeholder="关键字搜索"
|
||||
allowClear
|
||||
/>
|
||||
|
|
@ -260,9 +260,9 @@ export default function FilingListTable({
|
|||
))}
|
||||
</ControlWrapper.Select>
|
||||
</Form.Item>,
|
||||
<Form.Item key="filingNo" name="filingNo">
|
||||
mode !== 'application' && <Form.Item key="filingNo" name="filingNo">
|
||||
<ControlWrapper.Input
|
||||
label="备案编号"
|
||||
label="资质证书编号"
|
||||
placeholder="关键字搜索"
|
||||
allowClear
|
||||
/>
|
||||
|
|
@ -281,7 +281,7 @@ export default function FilingListTable({
|
|||
))}
|
||||
</ControlWrapper.Select>
|
||||
</Form.Item>,
|
||||
]}
|
||||
].filter(Boolean)}
|
||||
onFinish={(values) => onSearch(values)}
|
||||
onReset={(values) => onSearch(values)}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -332,7 +332,7 @@ const FilingTabs = ({
|
|||
</div>
|
||||
</div>
|
||||
<ReadonlyField label="备案属地 *" value={detail.filingTerritoryName} />
|
||||
<ReadonlyField label="备案单位 *" value={detail.filingUnitName} />
|
||||
<ReadonlyField label="机构名称 *" value={detail.filingUnitName} />
|
||||
<ReadonlyField label="备案单位类型 *" value={detail.filingUnitTypeName} />
|
||||
<ReadonlyField label="统一社会信用代码 *" value={detail.creditCode} />
|
||||
<ReadonlyField label="注册地址 *" value={detail.registerAddress} span={fullSpan} />
|
||||
|
|
|
|||
|
|
@ -115,7 +115,6 @@ const QualReview = (props) => {
|
|||
},
|
||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
||||
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
|
||||
{
|
||||
title: "安全评价业务范围",
|
||||
dataIndex: "businessScope",
|
||||
|
|
|
|||
Loading…
Reference in New Issue