tangjie 2026-07-08 20:09:49 +08:00
parent 34a4eb6a93
commit c8352af81b
2 changed files with 12 additions and 4 deletions

View File

@ -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" },

View File

@ -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={[
<Form.Item key="filingNo" name="filingNo">
<Form.Item key="id" name="id">
<ControlWrapper.Input label="备案编号" placeholder="请输入" allowClear />
</Form.Item>,
<Form.Item key="filingStatusCode" name="filingStatusCode">
@ -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]) => (
<Select.Option key={code} value={Number(code)}>{config.label}</Select.Option>
))}
</ControlWrapper.Select>