tangjie 2026-08-06 11:23:43 +08:00
parent aee347f000
commit 7147cff0bf
2 changed files with 5 additions and 18 deletions

View File

@ -24,8 +24,8 @@ export function verifyFilingPrerequisites(detail = {}) {
items.push({
key: "entity",
label: "主体资格",
desc: "独立法人资格,固定资产不少于一千万元",
passed: fixedAsset >= 1000,
desc: "独立法人资格,固定资产不少于八百万元",
passed: fixedAsset >= 800,
});
const workplaceArea = Number(detail.workplaceArea) || 0;

View File

@ -121,25 +121,12 @@ const StaffPickerModal = (props) => {
},
{
title: "资质范围",
dataIndex: "qualScope",
title: "能力",
dataIndex: "abilityNames",
ellipsis: true,
render: (code) => {
const status = QUALIFICATION_INDUSTRY_OPTIONS_MAP[code];
return status || "-";
},
},
{
title: "职称",
dataIndex: "titleCode",
width: 80,
ellipsis: true,
render: (code) => {
const status = TITLE_LEVEL_MAP[code];
return status || "-";
},
},
];
return (