fixed:部分项目审核状态变更
parent
35cbf011e2
commit
099a921373
|
|
@ -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" },
|
||||
];
|
||||
|
|
|
|||
|
|
@ -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: (<DictionarySelect dictValue="qualificationsType" />),
|
||||
},
|
||||
{ name: "stakeholderLevel", label: "资质等级", render: (<DictionarySelect dictValue="stakeholderLevel" />) },
|
||||
{
|
||||
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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue