diff --git a/src/components/ViewProjectReviewUserModal/index.js b/src/components/ViewProjectReviewUserModal/index.js index 0bf1681..b7d7d20 100644 --- a/src/components/ViewProjectReviewUserModal/index.js +++ b/src/components/ViewProjectReviewUserModal/index.js @@ -207,8 +207,8 @@ const ViewInfoModalComponent = (props) => { items={[ { label: "证书名称", children: info.certificateName }, { label: "证书编号", children: info.certificateCode }, - { label: "操作项目", children: info.assignmentCategoryName }, - { label: "作业类别", children: info.assignmentOperatingItemsName }, + { label: "操作项目", children: info.assignmentOperatingItemsName }, + { label: "作业类别", children: info.assignmentCategoryName }, { label: "发证机构", children: info.issuingAuthority }, { label: "发证日期", children: info.dateIssue }, { label: "复审日期", children: info.reviewDate }, diff --git a/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js b/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js index 3d472a9..d544c9f 100644 --- a/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js +++ b/src/pages/Container/Stakeholder/ProjectReview/ProjectFilingApplication/Add/index.js @@ -174,6 +174,9 @@ const StepOneComponent = (props) => { const getQualificationsTypeList = async () => { const { data } = await props["qualificationsTypeList"](); setQualificationsTypeList(data); + if (!data.find(item => item.qualificationsTypeId === props.formValues.qualificationsTypeId)) { + form.setFieldValue("qualificationsTypeId", ""); + } }; // 获取项目执行属地公司名称列表数据 const getDeptList = async (id) => {