dev-tmp1
tangjie 2026-08-11 18:12:20 +08:00
parent 1950a11992
commit 606df9c56b
4 changed files with 10 additions and 11 deletions

View File

@ -47,8 +47,8 @@ export default function BasicInfoStep({ form, disabled, mode }) {
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item name="filingUnitName" label="备案单位" rules={[{ required: !disabled, message: "请输入备案单位" }]}> <Form.Item name="filingUnitName" label="机构名称" rules={[{ required: !disabled, message: "请输入机构名称" }]}>
<Input placeholder="备案单位" maxLength={64} /> <Input placeholder="机构名称" maxLength={64} />
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={12}> <Col span={12}>

View File

@ -105,8 +105,8 @@ export default function FilingListTable({
width: 120, width: 120,
ellipsis: true, ellipsis: true,
}, },
{ title: "备案单位", dataIndex: "filingUnitName", ellipsis: true }, { title: "机构名称", dataIndex: "filingUnitName", ellipsis: true },
{ title: "备案编号", dataIndex: "filingNo", width: 200 }, mode !== 'application' && { title: "资质证书编号", dataIndex: "filingNo", width: 200 },
{ {
title: "安全评价业务范围", title: "安全评价业务范围",
dataIndex: "businessScope", dataIndex: "businessScope",
@ -120,7 +120,7 @@ export default function FilingListTable({
return record.businessScope || "-"; return record.businessScope || "-";
}, },
}, },
]; ].filter(Boolean);
if (showChangeCount) { if (showChangeCount) {
columns.push({ columns.push({
@ -241,7 +241,7 @@ export default function FilingListTable({
formLine={[ formLine={[
<Form.Item key="filingUnitName" name="filingUnitName"> <Form.Item key="filingUnitName" name="filingUnitName">
<ControlWrapper.Input <ControlWrapper.Input
label="备案单位" label="机构名称"
placeholder="关键字搜索" placeholder="关键字搜索"
allowClear allowClear
/> />
@ -260,9 +260,9 @@ export default function FilingListTable({
))} ))}
</ControlWrapper.Select> </ControlWrapper.Select>
</Form.Item>, </Form.Item>,
<Form.Item key="filingNo" name="filingNo"> mode !== 'application' && <Form.Item key="filingNo" name="filingNo">
<ControlWrapper.Input <ControlWrapper.Input
label="备案编号" label="资质证书编号"
placeholder="关键字搜索" placeholder="关键字搜索"
allowClear allowClear
/> />
@ -281,7 +281,7 @@ export default function FilingListTable({
))} ))}
</ControlWrapper.Select> </ControlWrapper.Select>
</Form.Item>, </Form.Item>,
]} ].filter(Boolean)}
onFinish={(values) => onSearch(values)} onFinish={(values) => onSearch(values)}
onReset={(values) => onSearch(values)} onReset={(values) => onSearch(values)}
/> />

View File

@ -332,7 +332,7 @@ const FilingTabs = ({
</div> </div>
</div> </div>
<ReadonlyField label="备案属地 *" value={detail.filingTerritoryName} /> <ReadonlyField label="备案属地 *" value={detail.filingTerritoryName} />
<ReadonlyField label="备案单位 *" value={detail.filingUnitName} /> <ReadonlyField label="机构名称 *" value={detail.filingUnitName} />
<ReadonlyField label="备案单位类型 *" value={detail.filingUnitTypeName} /> <ReadonlyField label="备案单位类型 *" value={detail.filingUnitTypeName} />
<ReadonlyField label="统一社会信用代码 *" value={detail.creditCode} /> <ReadonlyField label="统一社会信用代码 *" value={detail.creditCode} />
<ReadonlyField label="注册地址 *" value={detail.registerAddress} span={fullSpan} /> <ReadonlyField label="注册地址 *" value={detail.registerAddress} span={fullSpan} />

View File

@ -115,7 +115,6 @@ const QualReview = (props) => {
}, },
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true }, { title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 }, { title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
{ {
title: "安全评价业务范围", title: "安全评价业务范围",
dataIndex: "businessScope", dataIndex: "businessScope",