From 099a92137375ac56dc0717567072fdde55117804 Mon Sep 17 00:00:00 2001 From: dearLin <1261008090@qq.com> Date: Tue, 10 Feb 2026 15:03:19 +0800 Subject: [PATCH] =?UTF-8?q?fixed:=E9=83=A8=E5=88=86=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E7=8A=B6=E6=80=81=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/enumerate/constant/index.js | 12 +++++----- .../Qualification/Records/List/index.js | 22 +++++++++---------- 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/src/enumerate/constant/index.js b/src/enumerate/constant/index.js index eb022d7..cced1db 100644 --- a/src/enumerate/constant/index.js +++ b/src/enumerate/constant/index.js @@ -13,12 +13,10 @@ export {}; // COMPANY_DEPARTMENT_AUDITING(200, "股份主管部门审核"), // COMPANY_SAFETY_AUDITING(300, "股份安监部门审核"); export const PROJECT_STATUS_MAP = [ - { name: "待提交", bianma: "0" }, - { name: "待主管部门审核", bianma: "1" }, - { name: "待执行属地公司审核", bianma: "2" }, - { name: "待推荐属地公司审核", bianma: "3" }, - { name: "运行中", bianma: "4" }, - { name: "已完成", bianma: "5" }, + { name: "股份主管部门审核中", bianma: "1" }, + { name: "项目属地单位确认中", bianma: "2" }, + { name: "推荐属地公司审核中", bianma: "3" }, + { name: "已完成", bianma: "4" }, { name: "已驳回", bianma: "6" }, - { name: "待集团公司审核", bianma: "7" }, + { name: "集团单位审核中", bianma: "7" }, ]; diff --git a/src/pages/Container/BranchCompany/Qualification/Records/List/index.js b/src/pages/Container/BranchCompany/Qualification/Records/List/index.js index 80804dc..82f9b21 100644 --- a/src/pages/Container/BranchCompany/Qualification/Records/List/index.js +++ b/src/pages/Container/BranchCompany/Qualification/Records/List/index.js @@ -20,7 +20,7 @@ function List(props) { const auditStatus = formData.auditStatus?.split("-") || []; return { auditProcess: auditStatus[0], - auditStatus: auditStatus[1], + auditStatus: 400, }; }, onSuccess: (data) => { @@ -40,16 +40,16 @@ function List(props) { render: (), }, { name: "stakeholderLevel", label: "资质等级", render: () }, - { - name: "auditStatus", - label: "审核状态", - render: FORM_ITEM_RENDER_ENUM.SELECT, - items: [ - { bianma: "200-200", name: "主管部门审核中" }, - { bianma: "200-300", name: "主管部门已驳回" }, - { bianma: "400", name: "已完成" }, - ], - }, + // { + // name: "auditStatus", + // label: "审核状态", + // render: FORM_ITEM_RENDER_ENUM.SELECT, + // items: [ + // { bianma: "200-200", name: "主管部门审核中" }, + // { bianma: "200-300", name: "主管部门已驳回" }, + // { bianma: "400", name: "已完成" }, + // ], + // }, ]} form={form} onFinish={getData}