fix
parent
34a4eb6a93
commit
c8352af81b
|
|
@ -46,6 +46,14 @@ export const FILING_STATUS_MAP = {
|
||||||
5: { label: "暂存", color: "default" },
|
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 = {
|
export const CHANGE_STATUS_MAP = {
|
||||||
stuck: { label: "停滞中", color: "error" },
|
stuck: { label: "停滞中", color: "error" },
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import { AntdTableFuncControl } from "@cqsjjb/jjb-common-decorator/antd";
|
||||||
import { tools } from "@cqsjjb/jjb-common-lib";
|
import { tools } from "@cqsjjb/jjb-common-lib";
|
||||||
import { Connect } from "@cqsjjb/jjb-dva-runtime";
|
import { Connect } from "@cqsjjb/jjb-dva-runtime";
|
||||||
import { NS_QUAL_REVIEW } from "~/enumerate/namespace";
|
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;
|
const { router } = tools;
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@ const QualChange = (props) => {
|
||||||
},
|
},
|
||||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
{ 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: "经营范围", dataIndex: "businessScope", width: 180, ellipsis: true },
|
||||||
{
|
{
|
||||||
title: "备案状态",
|
title: "备案状态",
|
||||||
|
|
@ -86,7 +86,7 @@ const QualChange = (props) => {
|
||||||
form={form}
|
form={form}
|
||||||
loading={qualReviewLoading}
|
loading={qualReviewLoading}
|
||||||
formLine={[
|
formLine={[
|
||||||
<Form.Item key="filingNo" name="filingNo">
|
<Form.Item key="id" name="id">
|
||||||
<ControlWrapper.Input label="备案编号" placeholder="请输入" allowClear />
|
<ControlWrapper.Input label="备案编号" placeholder="请输入" allowClear />
|
||||||
</Form.Item>,
|
</Form.Item>,
|
||||||
<Form.Item key="filingStatusCode" name="filingStatusCode">
|
<Form.Item key="filingStatusCode" name="filingStatusCode">
|
||||||
|
|
@ -96,7 +96,7 @@ const QualChange = (props) => {
|
||||||
allowClear
|
allowClear
|
||||||
style={{ width: "100%" }}
|
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>
|
<Select.Option key={code} value={Number(code)}>{config.label}</Select.Option>
|
||||||
))}
|
))}
|
||||||
</ControlWrapper.Select>
|
</ControlWrapper.Select>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue