From a7cba2f05df12ab546ef1c20b63aad10ec0e7a5c Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Fri, 30 Aug 2024 16:45:54 +0800 Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh --- gz-customerSystem/src/utils/selectOption.js | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/gz-customerSystem/src/utils/selectOption.js b/gz-customerSystem/src/utils/selectOption.js index 207d9f1..5fb7fd1 100644 --- a/gz-customerSystem/src/utils/selectOption.js +++ b/gz-customerSystem/src/utils/selectOption.js @@ -516,6 +516,35 @@ label: '不同意' }, ]; +// 企业类型 +const enterpriseType = [ + { + value: '24_00008-1', + label: '餐饮服务', + }, +]; +// 机构类型 +const orgaType = [ + { + value: '24_00009-1', + label: '志愿者服务', + }, +]; +//事项等级 +const caseLevelList = [ + { + value: 1, + label: '一级' + }, + { + value: 2, + label: '二级' + }, + { + value: 3, + label: '三级' + }, +] // VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV 暂时用不到,防止以后会用的,先保留 VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV @@ -767,6 +796,17 @@ { value: '22_00036-10', label: '其他部门委托移送', + }, +]; +// 委托关系 +const agentRelate = [ + { + value: '24_00007-1', + label: '亲属', + }, + { + value: '24_00007-2', + label: '监护人', }, ]; @@ -1057,6 +1097,8 @@ }, ]; + + const obj = { caseCanal, visitWay, @@ -1074,6 +1116,10 @@ meetWay, dispType, auditResult, + agentRelate, + enterpriseType, + orgaType, + caseLevelList, // VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV 暂时用不到,防止以后会用的,先保留 VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV -- Gitblit v1.8.0