diff --git a/src/components/StaffViewModal/index.js b/src/components/StaffViewModal/index.js index c419270..30c9fe0 100644 --- a/src/components/StaffViewModal/index.js +++ b/src/components/StaffViewModal/index.js @@ -121,7 +121,7 @@ export default function StaffViewModal({ onCancel={onCancel} > - {info.titleName} + {info.userName} {GENDER_MAP[info.genderCode]} diff --git a/src/pages/Container/QualApplication/FilingApplication/List/index.js b/src/pages/Container/QualApplication/FilingApplication/List/index.js index 333542e..470ad87 100644 --- a/src/pages/Container/QualApplication/FilingApplication/List/index.js +++ b/src/pages/Container/QualApplication/FilingApplication/List/index.js @@ -71,7 +71,7 @@ function FilingApplicationListPage(props) { okText: "是", cancelText: "否", onOk: async () => { - const res = await props.qualFilingDelete({ id: record.id }); + const res = await props.qualFilingDelete({ data: record.id }); if (res?.success !== false) { message.success("删除成功"); getData(); diff --git a/src/pages/Container/QualApplication/FilingForm/index.js b/src/pages/Container/QualApplication/FilingForm/index.js index c7a1330..78bc381 100644 --- a/src/pages/Container/QualApplication/FilingForm/index.js +++ b/src/pages/Container/QualApplication/FilingForm/index.js @@ -193,7 +193,7 @@ function FilingFormPage(props) { return { ...item, personName: item.userName || item.personName, - sourcePersonnelId: item.id, + sourcePersonnelId: item.sourcePersonnelId || item.id, }; }); delete params.personnelList; diff --git a/src/pages/Container/QualApplication/filingVerify.js b/src/pages/Container/QualApplication/filingVerify.js index 52c5695..3087d63 100644 --- a/src/pages/Container/QualApplication/filingVerify.js +++ b/src/pages/Container/QualApplication/filingVerify.js @@ -1,7 +1,7 @@ /** 资质申请前置条件核验(提交前展示,对齐原型) */ /** 人员相关三项暂不校验(机构库数据不足),恢复时改为 false */ -const SKIP_PERSONNEL_VERIFY = true; +const SKIP_PERSONNEL_VERIFY = false; const KEY_POSITIONS = ["负责人", "技术负责人", "质量负责人"]; diff --git a/src/pages/Container/QualificationReview/FilingTabs/index.js b/src/pages/Container/QualificationReview/FilingTabs/index.js index 47f128b..063d28d 100644 --- a/src/pages/Container/QualificationReview/FilingTabs/index.js +++ b/src/pages/Container/QualificationReview/FilingTabs/index.js @@ -172,8 +172,8 @@ const FilingTabs = ({ i + 1 }, - { title: "装备名称", dataIndex: "deviceName", width: 140 }, - { title: "规格型号", dataIndex: "deviceModel", width: 120 }, + { title: "装备名称", dataIndex: "deviceName", width: 140, ellipsis: true }, + { title: "规格型号", dataIndex: "deviceModel", width: 120, ellipsis: true }, { title: "生产厂家", dataIndex: "manufacturer", width: 140 }, { title: "计量检定情况", width: 120, render: (_, record) => {