From f159b06864c3597bc06cc77ca5dd0b1f76dcec80 Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Thu, 05 Sep 2024 20:33:49 +0800 Subject: [PATCH] 新增附件类型 --- gz-customerSystem/src/utils/selectOption.js | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/gz-customerSystem/src/utils/selectOption.js b/gz-customerSystem/src/utils/selectOption.js index dc90dc7..2bd12c6 100644 --- a/gz-customerSystem/src/utils/selectOption.js +++ b/gz-customerSystem/src/utils/selectOption.js @@ -64,6 +64,25 @@ label: '非法人组织', }, ]; +//上传材料大类 +const fileOwnerCat = [ + { + value: '22_00014-1', + label: '申请材料', + }, + { + value: '22_00014-2', + label: '证据材料', + }, + { + value: '22_00014-7', + label: '办理材料', + }, + { + value: '22_00014-5', + label: '结案材料', + }, +]; //上传材料类型 const fileOwnerType = [ { @@ -514,6 +533,31 @@ { value: '24_00004-2', label: '不同意' + }, +]; +// 委托关系 +const agentRelate = [ + { + value: '24_00007-1', + label: '亲属', + }, + { + value: '24_00007-2', + label: '监护人', + }, +]; +// 企业类型 +const enterpriseType = [ + { + value: '24_00008-1', + label: '餐饮服务', + }, +]; +// 机构类型 +const orgaType = [ + { + value: '24_00009-1', + label: '志愿者服务', }, ]; //事项等级 @@ -1079,6 +1123,7 @@ visitWay, personType, personClass, + fileOwnerCat, fileOwnerType, sex, cardType, @@ -1091,6 +1136,9 @@ meetWay, dispType, auditResult, + agentRelate, + enterpriseType, + orgaType, caseLevelList, // VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV 暂时用不到,防止以后会用的,先保留 VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV -- Gitblit v1.8.0