forked from gzzfw/frontEnd/gzDyh

liuwh
2024-09-13 6a2c0e50aabe2c2fda7671d75d7550f12d72e411
gz-customerSystem/src/utils/selectOption.js
@@ -7,59 +7,47 @@
 * @Version: 1.0.0
 * @Description: 公共下拉框数据
 */
// 申请渠道 -去掉【其他渠道】是为了在【纠纷登记页面】的纠纷来源没有此选择
const caseCanal = [
  {
// 事项来源
const caseCanal = [{
    value: '22_00001-1',
    label: '机构登记',
    label: '大厅来访',
  },
  {
    value: '22_00001-2',
    label: '小程序',
    label: '线上来访',
  }
  // ,
  // {
  //   value: '22_00001-3',
  //   label: '其他渠道',
  // },
];
// 调解类型
const mediateType = [
  {
    value: '22_00002-1',
    label: '人民调解',
// 来访形式
const visitWay = [{
    value: '24_00002-1',
    label: '来访',
  },
  {
     value: '22_00002-2',
     label: '司法调解',
  },
  {
     value: '22_00002-3',
     label: '诉讼调解',
  },
  {
     value: '22_00002-4',
     label: '行政调解',
  },
    value: '24_00002-2',
    label: '线上',
  }
];
// 当事人地位
const personType = [
  {
const personType = [{
    value: '15_020008-1',
    label: '申请人',
    label: '申请方当事人',
  },
  {
    value: '15_020008-2',
    label: '被申请人',
    label: '被申请方当事人',
  },
  {
    value: '15_020008-3',
    label: '第三人',
    value: '24_00006-1',
    label: '申请方代理人',
  },
  {
    value: '24_00006-2',
    label: '被申请方代理人',
  },
];
// 当事人类型
const personClass = [
  {
const personClass = [{
    value: '09_01001-1',
    label: '自然人',
  },
@@ -72,21 +60,106 @@
    label: '非法人组织',
  },
];
//上传材料类型
const sourceType = [
  {
    value: '09_01010-1',
//上传材料大类
const fileOwnerCat = [{
    value: '22_00014-1',
    label: '申请材料',
  },
  {
    value: '09_01010-2',
    value: '22_00014-2',
    label: '证据材料',
  },
  {
    value: '22_00014-7',
    label: '办理材料',
  },
  {
    value: '22_00014-5',
    label: '结案材料',
  },
];
//上传材料类型
const fileOwnerType = [{
    value: '22_00018-101',
    label: '申请材料',
  },
  {
    value: '22_00018-102',
    label: '证据材料',
  },
  {
    value: '22_00018-202',
    label: '身份证明材料',
  },
  {
    value: '22_00018-207',
    label: '代理人授权委托书',
  },
  {
    value: '22_00018-203',
    label: '企业(机构)登记材料',
  },
  {
    value: '22_00018-204',
    label: '法定(机构)代表人身份证明材料',
  },
  {
    value: '22_00018-501',
    label: '办理附件',
  },
  {
    value: '22_00018-506',
    label: '督办附件',
  },
  {
    value: '22_00018-507',
    label: '督办回复附件',
  },
  {
    value: '22_00018-508',
    label: '联合处置申请附件',
  },
  {
    value: '22_00018-509',
    label: '联合处置申请审核附件',
  },
  {
    value: '22_00018-520',
    label: '回退申请附件',
  },
  {
    value: '22_00018-511',
    label: '回退审核附件',
  },
  {
    value: '22_00018-512',
    label: '上报申请附件',
  },
  {
    value: '22_00018-513',
    label: '上报审核附件',
  },
  {
    value: '22_00018-302',
    label: '协议文书',
  },
  {
    value: '22_00018-514',
    label: '结案审核附件',
  },
];
// 附件上传人类型
const uploaderType = [{
    value: 1,
    label: '工作人员',
  },
  {
    value: 2,
    label: '当事人',
  },
];
// 性别
const sex = [
  {
const sex = [{
    value: '09_00003-1',
    label: '男',
  },
@@ -95,40 +168,8 @@
    label: '女',
  },
];
// 代理人类型
const agentClass = [
  {
    value: '09_01010-1',
    label: '律师',
  },
  {
    value: '09_01010-3',
    label: '监护人',
  },
  {
    value: '09_01010-4',
    label: '亲友',
  },
  {
    value: '09_01010-5',
    label: '社会团体推荐的公民',
  },
  {
    value: '09_01010-6',
    label: '所在单位推荐的人',
  },
  {
    value: '09_01010-8',
    label: '法律工作者',
  },
  {
    value: '09_01010-9',
    label: '所在社区推荐的公民',
  },
];
// 证件类型
const cardType = [
  {
const cardType = [{
    value: '09_00015-1',
    label: '身份证',
  },
@@ -161,118 +202,8 @@
    label: '当事人未提供证件信息',
  },
];
// 调解不予受理原因
const mediateError = [
  {
    value: '22_00005-1',
    label: '人民法院已经受理或正在受理的',
  },
  {
    value: '22_00005-2',
    label: '一方当事人不同意调解的',
  },
  {
    value: '22_00005-3',
    label: '已构成犯罪或构成违反治安管理处罚行为的',
  },
  {
    value: '22_00005-4',
    label: '已通过其他渠道受理或处理',
  },
  {
    value: '22_00005-5',
    label: '其他',
  },
];
// 拒绝签收原因
const refuseSign = [
  {
    value: '22_00009-1',
    label: '人民法院已经受理或正在受理的',
  },
  {
    value: '22_00009-2',
    label: '一方当事人不同意调解的',
  },
  {
    value: '22_00009-3',
    label: '已构成犯罪或构成违反治安管理处罚行为的',
  },
  {
    value: '22_00009-4',
    label: '已通过其他渠道受理或处理',
  },
  {
    value: '22_00009-5',
    label: '材料不全或不合格',
  },
  {
    value: '22_00009-6',
    label: '不属于管辖受理范围',
  },
  {
    value: '22_00009-9',
    label: '其他(自行填写)',
  },
];
// 职业
const job = [
  {
    value: '22_00003-1',
    label: '专业人士(教师/医生/律师等)',
  },
  {
    value: '22_00003-2',
    label: '服务业人员(餐饮服务员/司机/售货员等)',
  },
  {
    value: '22_00003-3',
    label: '自由职业者(作家/艺术家/摄影师/导游等)',
  },
  {
    value: '22_00003-4',
    label: '工人(工厂工人/建筑工人/城市环卫工人等)',
  },
  {
    value: '22_00003-5',
    label: '公司职员',
  },
  {
    value: '22_00003-6',
    label: '商人/雇主',
  },
  {
    value: '22_00003-7',
    label: '小商贩/个体户',
  },
  {
    value: '22_00003-8',
    label: '事业单位/公务员/政府工作人员',
  },
  {
    value: '22_00003-9',
    label: '学生',
  },
  {
    value: '22_00003-10',
    label: '家庭主妇',
  },
  {
    value: '22_00003-11',
    label: '农民/牧民/渔夫',
  },
  {
    value: '22_00003-12',
    label: '无业/失业',
  },
  {
    value: '22_00003-255',
    label: '其他',
  },
];
// 民族
const nation = [
  {
const nation = [{
    value: '09_00005-1',
    label: '汉族',
  },
@@ -518,8 +449,7 @@
  },
];
// 委托类型
const agentType = [
  {
const agentType = [{
    value: '22_00004-1',
    label: '一般授权代理',
  },
@@ -536,130 +466,70 @@
    label: '转委托代理',
  },
];
// 纠纷状态
const caseStatus = [
  {
    value: '22_00008-1',
    label: '受理调解',
// 事项状态
const caseStatus = [{
    value: 1,
    label: '待签收',
  },
  {
    value: '22_00008-2',
    label: '退回',
  },
  {
    value: '22_00008-3',
    label: '已补材',
  },
  {
    value: '22_00008-4',
    label: '不予受理',
  },
];
// 签收意见
const signResult = [
  {
    value: '22_00010-1',
    label: '同意签收',
  },
  {
    value: '22_00010-2',
    label: '拒绝签收',
  },
];
// 调度来源
const dispSource = [
  {
    value: '22_00011-1',
    label: '纠纷调度',
  },
  {
    value: '22_00011-2',
    label: '申请协助',
  },
  {
    value: '22_00011-3',
    label: '拒签退回',
  },
  {
    value: '22_00011-4',
    label: '超时未签收',
  },
  {
    value: '22_00011-5',
    label: '异常重新调度',
  },
];
// 调度类型
const dispType = [
  {
    value: '22_00012-1',
    label: '人工派单',
  },
  {
    value: '22_00012-2',
    label: '加入抢单池',
  },
];
// 调度处理
const dispHandle = [
  {
    value: '22_00013-1',
    label: '正常调度',
  },
  {
    value: '22_00013-2',
    label: '重新调度',
  },
  {
    value: '22_00013-3',
    label: '退回申请人',
  },
  {
    value: '22_00013-4',
    label: '不予受理',
  },
];
// 调解进度
const process = [
  {
    value: '22_00006-1',
    value: 2,
    label: '待受理',
  },
  {
    value: '22_00006-2',
    label: '待调解',
    value: 3,
    label: '办理中',
  },
  {
    value: '22_00006-3',
    label: '调解中',
    value: 4,
    label: '结案审核',
  },
  {
    value: '22_00006-4',
    label: '调解结束',
    value: 5,
    label: '待评价',
  },
  {
    value: '22_00006-5',
    label: '退回申请人',
    value: 6,
    label: '已归档',
  },
];
// 事项进度
const process = [{
    value: 1,
    label: '来访登记',
  },
  {
    value: '22_00006-6',
    label: '不予受理',
    value: 2,
    label: '事件流转',
  },
  {
    value: 3,
    label: '办理反馈',
  },
  {
    value: 4,
    label: '结案审核',
  },
  {
    value: 5,
    label: '当事人评价',
  },
  {
    value: 6,
    label: '结案归档',
  },
];
// 调解结果
const mediResult = [
  {
const mediResult = [{
    value: '22_00025-1',
    label: '调解成功',
    label: '化解成功',
  },
  {
    value: '22_00025-2',
    label: '调解不成功',
    label: '化解不成功',
  },
];
// 会议类型
const meetType = [
  {
const meetType = [{
    value: '22_00020-1',
    label: '纠纷调解会议',
  },
@@ -669,8 +539,7 @@
  },
];
// 会议方式
const meetWay = [
  {
const meetWay = [{
    value: '22_00021-3',
    label: '线上 + 线下',
  },
@@ -683,44 +552,167 @@
    label: '线下',
  },
];
// 调解参与人类型
const joinUserType = [
  {
    value: '22_00022-1',
    label: '调解员',
// 调度类型
const dispType = [{
    value: '22_00012-1',
    label: '归口分流',
  },
  {
    value: '22_00022-2',
    label: '法官',
    value: '22_00012-2',
    label: '加入抢单池',
  },
];
// 通用审核结果
const auditResult = [{
    value: '24_00004-1',
    label: '同意'
  },
  {
    value: '22_00022-3',
    label: '专家',
    value: '24_00004-2',
    label: '不同意'
  },
];
// 委托关系
const agentRelate = [{
    value: '24_00007-1',
    label: '亲属',
  },
  {
    value: '22_00022-9',
    value: '24_00007-2',
    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
// 调解类型
const mediateType = [{
    value: '22_00002-1',
    label: '人民调解',
  },
  {
    value: '22_00002-2',
    label: '司法调解',
  },
  {
    value: '22_00002-3',
    label: '诉讼调解',
  },
  {
    value: '22_00002-4',
    label: '行政调解',
  },
];
// 代理人类型
const agentClass = [{
    value: '09_01010-1',
    label: '律师',
  },
  {
    value: '09_01010-3',
    label: '监护人',
  },
  {
    value: '09_01010-4',
    label: '亲友',
  },
  {
    value: '09_01010-5',
    label: '社会团体推荐的公民',
  },
  {
    value: '09_01010-6',
    label: '所在单位推荐的人',
  },
  {
    value: '09_01010-8',
    label: '法律工作者',
  },
  {
    value: '09_01010-9',
    label: '所在社区推荐的公民',
  },
];
// 职业
const job = [{
    value: '22_00003-1',
    label: '专业人士(教师/医生/律师等)',
  },
  {
    value: '22_00003-2',
    label: '服务业人员(餐饮服务员/司机/售货员等)',
  },
  {
    value: '22_00003-3',
    label: '自由职业者(作家/艺术家/摄影师/导游等)',
  },
  {
    value: '22_00003-4',
    label: '工人(工厂工人/建筑工人/城市环卫工人等)',
  },
  {
    value: '22_00003-5',
    label: '公司职员',
  },
  {
    value: '22_00003-6',
    label: '商人/雇主',
  },
  {
    value: '22_00003-7',
    label: '小商贩/个体户',
  },
  {
    value: '22_00003-8',
    label: '事业单位/公务员/政府工作人员',
  },
  {
    value: '22_00003-9',
    label: '学生',
  },
  {
    value: '22_00003-10',
    label: '家庭主妇',
  },
  {
    value: '22_00003-11',
    label: '农民/牧民/渔夫',
  },
  {
    value: '22_00003-12',
    label: '无业/失业',
  },
  {
    value: '22_00003-255',
    label: '其他',
  },
  {
    value: '22_00022-10',
    label: '代理人',
  },
  {
    value: '22_00022-11',
    label: '申请人',
  },
  {
    value: '22_00022-12',
    label: '被申请人',
  },
  {
    value: '22_00022-15',
    label: '第三人',
  },
];
// 通知方式
const noticeWay = [
  {
const noticeWay = [{
    value: '22_00023-1',
    label: '微信通知',
  },
@@ -730,155 +722,45 @@
  },
];
// 归档状态
const fileStatus = [
  {
    value: '1',
const fileStatus = [{
    value: 0,
    label: '未归档',
  },
  {
    value: '2',
    value: 1,
    label: '已归档',
  },
];
// 任务节点执行者类型
const operType = [
  {
    value: '22_00026-1',
    label: '指定人员',
const taskCandeType = [{
    value: 1,
    label: '所有人',
  },
  {
    value: '22_00026-2',
    label: '指定角色',
    value: 2,
    label: '上一步骤选择',
  },
  {
    value: '22_00026-3',
    label: '前序节点执行者',
    value: 3,
    label: '上一步骤执行者',
  },
  {
    value: '22_00026-4',
    label: '前序节点指定',
    value: 4,
    label: '自定义指定(单位部门角色人组合)',
  },
];
// 实名认证状态
const realStatus = [
  {
    value: '1',
    label: '通过',
  },
  {
    value: '99',
    label: '未通过',
  },
];
// 人脸认证状态
const faceStatus = [
  {
    value: '1',
    label: '已认证',
  },
  {
    value: '99',
const realStatus = [{
    value: 0,
    label: '未认证',
  },
];
// 司法确认进度
const judicProcess = [
  {
    value: '22_00029-1',
    label: '待审查',
  },
  {
    value: '22_00029-2',
    label: '未开始',
  },
  {
    value: '22_00029-3',
    label: '进行中',
  },
  {
    value: '22_00029-4',
    label: '已结束',
  },
  {
    value: '22_00029-5',
    label: '退回补料',
  },
  {
    value: '22_00029-6',
    label: '不予受理',
  },
];
// 司法确认状态
const judicStatus = [
  {
    value: '22_00029-1',
    label: '受理确认',
  },
  {
    value: '22_00029-2',
    label: '退回',
  },
  {
    value: '22_00029-3',
    label: '已补材',
  },
  {
    value: '22_00029-4',
    label: '已结束',
  },
  {
    value: '22_00029-5',
    label: '不予受理',
  },
  {
    value: '22_00029-6',
    label: '异常终止',
  },
];
// 司法确认结果
const judicResult = [
  {
    value: '22_00028-1',
    label: '已达成',
  },
  {
    value: '22_00028-2',
    label: '未达成',
  },
];
// 司法确认不予受理原因
const judicError = [
  {
    value: '22_00031-1',
    label: '不属于人民法院受理民事案件的范围',
  },
  {
    value: '22_00031-2',
    label: '调解协议生效之日起30日后申请',
  },
  {
    value: '22_00031-3',
    label: '纠纷类型不符合司法确认要求',
  },
  {
    value: '22_00031-4',
    label: '不在受理管辖范围',
  },
  {
    value: '22_00031-5',
    label: '其他不宜由人民法院受理的情形',
  },
];
// 司法确认退回原因
const judicReturn = [
  {
    value: '22_00032-1',
    label: '其他',
    value: 1,
    label: '已认证',
  },
];
// 会议视频录制状态:1:录制转码中,2:已上传
const recordStatus = [
  {
const recordStatus = [{
    value: '1',
    label: '录制转码中',
  },
@@ -888,8 +770,7 @@
  },
];
// 涉及人群
const crowd = [
  {
const crowd = [{
    value: '22_00035-1',
    label: '未成年人',
  },
@@ -927,8 +808,7 @@
  },
];
// 纠纷来源
const caseSource = [
  {
const caseSource = [{
    value: '22_00036-2',
    label: '依申请调解',
  },
@@ -969,20 +849,272 @@
    label: '其他部门委托移送',
  },
];
// VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV旧系统下拉框,临时保留VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
// 调解不予受理原因
const mediateError = [{
    value: '22_00005-1',
    label: '人民法院已经受理或正在受理的',
  },
  {
    value: '22_00005-2',
    label: '一方当事人不同意调解的',
  },
  {
    value: '22_00005-3',
    label: '已构成犯罪或构成违反治安管理处罚行为的',
  },
  {
    value: '22_00005-4',
    label: '已通过其他渠道受理或处理',
  },
  {
    value: '22_00005-5',
    label: '其他',
  },
];
// 拒绝签收原因
const refuseSign = [{
    value: '22_00009-1',
    label: '人民法院已经受理或正在受理的',
  },
  {
    value: '22_00009-2',
    label: '一方当事人不同意调解的',
  },
  {
    value: '22_00009-3',
    label: '已构成犯罪或构成违反治安管理处罚行为的',
  },
  {
    value: '22_00009-4',
    label: '已通过其他渠道受理或处理',
  },
  {
    value: '22_00009-5',
    label: '材料不全或不合格',
  },
  {
    value: '22_00009-6',
    label: '不属于管辖受理范围',
  },
  {
    value: '22_00009-9',
    label: '其他(自行填写)',
  },
];
// 签收意见
const signResult = [{
    value: '22_00010-1',
    label: '同意签收',
  },
  {
    value: '22_00010-2',
    label: '拒绝签收',
  },
];
// 调度来源
const dispSource = [{
    value: '22_00011-1',
    label: '纠纷调度',
  },
  {
    value: '22_00011-2',
    label: '申请协助',
  },
  {
    value: '22_00011-3',
    label: '拒签退回',
  },
  {
    value: '22_00011-4',
    label: '超时未签收',
  },
  {
    value: '22_00011-5',
    label: '异常重新调度',
  },
];
// 调度处理
const dispHandle = [{
    value: '22_00013-1',
    label: '正常调度',
  },
  {
    value: '22_00013-2',
    label: '重新调度',
  },
  {
    value: '22_00013-3',
    label: '退回申请人',
  },
  {
    value: '22_00013-4',
    label: '不予受理',
  },
];
// 调解参与人类型
const joinUserType = [{
    value: '22_00022-1',
    label: '调解员',
  },
  {
    value: '22_00022-2',
    label: '法官',
  },
  {
    value: '22_00022-3',
    label: '专家',
  },
  {
    value: '22_00022-9',
    label: '其他',
  },
  {
    value: '22_00022-10',
    label: '代理人',
  },
  {
    value: '22_00022-11',
    label: '申请人',
  },
  {
    value: '22_00022-12',
    label: '被申请人',
  },
  {
    value: '22_00022-15',
    label: '第三人',
  },
];
// 人脸认证状态
const faceStatus = [{
    value: '1',
    label: '已认证',
  },
  {
    value: '99',
    label: '未认证',
  },
];
// 司法确认进度
const judicProcess = [{
    value: '22_00029-1',
    label: '待审查',
  },
  {
    value: '22_00029-2',
    label: '未开始',
  },
  {
    value: '22_00029-3',
    label: '进行中',
  },
  {
    value: '22_00029-4',
    label: '已结束',
  },
  {
    value: '22_00029-5',
    label: '退回补料',
  },
  {
    value: '22_00029-6',
    label: '不予受理',
  },
];
// 司法确认状态
const judicStatus = [{
    value: '22_00029-1',
    label: '受理确认',
  },
  {
    value: '22_00029-2',
    label: '退回',
  },
  {
    value: '22_00029-3',
    label: '已补材',
  },
  {
    value: '22_00029-4',
    label: '已结束',
  },
  {
    value: '22_00029-5',
    label: '不予受理',
  },
  {
    value: '22_00029-6',
    label: '异常终止',
  },
];
// 司法确认结果
const judicResult = [{
    value: '22_00028-1',
    label: '已达成',
  },
  {
    value: '22_00028-2',
    label: '未达成',
  },
];
// 司法确认不予受理原因
const judicError = [{
    value: '22_00031-1',
    label: '不属于人民法院受理民事案件的范围',
  },
  {
    value: '22_00031-2',
    label: '调解协议生效之日起30日后申请',
  },
  {
    value: '22_00031-3',
    label: '纠纷类型不符合司法确认要求',
  },
  {
    value: '22_00031-4',
    label: '不在受理管辖范围',
  },
  {
    value: '22_00031-5',
    label: '其他不宜由人民法院受理的情形',
  },
];
// 司法确认退回原因
const judicReturn = [{
  value: '22_00032-1',
  label: '其他',
}, ];
// 系列案区别
const selectdata = [
  { value: '1', label: '非系列案' },
  { value: '2', label: '系列案' },
const selectdata = [{
    value: '1',
    label: '非系列案'
  },
  {
    value: '2',
    label: '系列案'
  },
];
// 履行情况
const fulfilSitu = [
  { value: '22_00008-1', label: '未履行' },
  { value: '22_00008-2', label: '当场履行' },
  { value: '22_00008-3', label: '分期履行' },
const fulfilSitu = [{
    value: '22_00008-1',
    label: '未履行'
  },
  {
    value: '22_00008-2',
    label: '当场履行'
  },
  {
    value: '22_00008-3',
    label: '分期履行'
  },
];
//调解不成功原因
const mediFalseCause = [
  {
const mediFalseCause = [{
    value: '22_00019-1',
    label: '当事人未能就调解协议达成一致',
  },
@@ -1003,54 +1135,63 @@
    label: '其他(自行填写)',
  },
];
// 审查结果
const auditResult = [
  { value: '22_00032-0', label: '审查中' },
  { value: '22_00032-1', label: '审查同意' },
  { value: '22_00032-2', label: '审查拒绝' },
];
const obj = {
  caseCanal,
  mediateType,
  visitWay,
  personType,
  personClass,
  sourceType,
  fileOwnerCat,
  fileOwnerType,
  uploaderType,
  sex,
  agentClass,
  cardType,
  mediateError,
  refuseSign,
  job,
  nation,
  agentType,
  caseStatus,
  signResult,
  dispSource,
  dispType,
  dispHandle,
  process,
  mediResult,
  meetType,
  meetWay,
  joinUserType,
  dispType,
  auditResult,
  agentRelate,
  enterpriseType,
  orgaType,
  caseLevelList,
  // VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV 暂时用不到,防止以后会用的,先保留 VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
  mediateType,
  agentClass,
  job,
  noticeWay,
  fileStatus,
  operType,
  taskCandeType,
  realStatus,
  recordStatus,
  crowd,
  caseSource,
  // VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV旧系统下拉框,临时保留VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
  mediateError,
  refuseSign,
  signResult,
  dispSource,
  dispHandle,
  joinUserType,
  faceStatus,
  judicProcess,
  judicStatus,
  judicResult,
  judicError,
  judicReturn,
  recordStatus,
  crowd,
  caseSource,
  selectdata,
  fulfilSitu,
  mediFalseCause,
  auditResult,
};
export default obj;
export default obj;