From c8352af81b6b8efa12229fa85e6052b400cc5ee3 Mon Sep 17 00:00:00 2001 From: tangjie <122778500@qq.com> Date: Wed, 8 Jul 2026 20:09:49 +0800 Subject: [PATCH] fix --- src/enumerate/constant/index.js | 8 ++++++++ .../Container/QualificationReview/QualChange/index.js | 8 ++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/enumerate/constant/index.js b/src/enumerate/constant/index.js index b6906d7..2383cbd 100644 --- a/src/enumerate/constant/index.js +++ b/src/enumerate/constant/index.js @@ -46,6 +46,14 @@ export const FILING_STATUS_MAP = { 5: { label: "暂存", color: "default" }, }; +export const FILING_STATUS_MAP_CHANGE = { + 1: { label: "已备案", color: "success" }, + + 3: { label: "已打回", color: "error" }, + 4: { label: "变更审核中", color: "processing" }, + +}; + /** 变更状态 */ export const CHANGE_STATUS_MAP = { stuck: { label: "停滞中", color: "error" }, diff --git a/src/pages/Container/QualificationReview/QualChange/index.js b/src/pages/Container/QualificationReview/QualChange/index.js index 99d2ab4..c3266c7 100644 --- a/src/pages/Container/QualificationReview/QualChange/index.js +++ b/src/pages/Container/QualificationReview/QualChange/index.js @@ -8,7 +8,7 @@ import { AntdTableFuncControl } from "@cqsjjb/jjb-common-decorator/antd"; import { tools } from "@cqsjjb/jjb-common-lib"; import { Connect } from "@cqsjjb/jjb-dva-runtime"; import { NS_QUAL_REVIEW } from "~/enumerate/namespace"; -import { FILING_STATUS_MAP } from "~/enumerate/constant"; +import { FILING_STATUS_MAP, FILING_STATUS_MAP_CHANGE } from "~/enumerate/constant"; const { router } = tools; @@ -49,7 +49,7 @@ const QualChange = (props) => { }, { title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true }, { title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 }, - { title: "备案编号", dataIndex: "filingNo", width: 140, ellipsis: true }, + { title: "备案编号", dataIndex: "id", width: 140, ellipsis: true }, { title: "经营范围", dataIndex: "businessScope", width: 180, ellipsis: true }, { title: "备案状态", @@ -86,7 +86,7 @@ const QualChange = (props) => { form={form} loading={qualReviewLoading} formLine={[ - + , @@ -96,7 +96,7 @@ const QualChange = (props) => { allowClear style={{ width: "100%" }} > - {Object.entries(FILING_STATUS_MAP).map(([code, config]) => ( + {Object.entries(FILING_STATUS_MAP_CHANGE).map(([code, config]) => ( {config.label} ))}