Newer
Older
dcms_front / src / components / CaseCommon / radioMap.js
zhangyingjie on 25 Oct 2019 3 KB first commit
const radioMap = {
  'APHS': { // 安排核实
    showComp: 'selectUser',
    passBack: null
  },
  'BLA': { // 不立案
    showComp: null,
    passBack: 'isNeedRevisit'
  },
  'BPZHB': { // 不批准缓办
    showComp: null,
    passBack: 'onedeptid'
  },
  'BPZTZ': { // 不批准调整
    showComp: null,
    passBack: 'onedeptid'
  },
  'BPZYQ': { // 不批准延期
    showComp: null,
    passBack: 'onedeptid'
  },
  'BTY': { // 不同意
    showComp: null,
    passBack: 'onedeptid'
  },
  'BYLA': { // 不予立案
    showComp: null,
    passBack: 'isNeedRevisit'
  },
  'BMSQTZ': { // 部门申请调整
    showComp: null,
    passBack: 'isNeedRevisit'
  },
  'BMSQSQ': { // 部门授权申请
    showComp: null,
    passBack: 'isNeedRevisit'
  },
  'CLSH': { // 处理审核
    showComp: null,
    passBack: null
  },
  'CLWC': { // 处理完成
    showComp: null,
    passBack: null
  },
  'CZRY': { // 处置人员
    showComp: 'selectUser',
    passBack: null
  },
  'CZRYFKCLWC': { // 处置人员反馈处理完成
    showComp: null,
    passBack: null
  },
  'DHC': { // 待核查
    showComp: 'selectUser',
    passBack: null
  },
  'DLA': { // 待立案
    showComp: null,
    passBack: null
  },
  'FHCL': { // 返回处理
    showComp: 'selectUser',
    passBack: 'processPersonId'
  },
  'GQ': { // 挂起
    showComp: null,
    passBack: null
  },
  'HCTG': { // 核查通过
    showComp: null,
    passBack: null
  },
  'HCWTG': { // 核查未通过
    showComp: null,
    passBack: null
  },
  'HS': { // 核实
    showComp: null,
    passBack: null
  },
  'HF': { // 恢复
    showComp: null,
    passBack: null
  },
  'LA': { // 立案
    showComp: 'selectCaseTime',
    passBack: null
  },
  'PF': { // 派发
    showComp: 'selectDept',
    passBack: null
  },
  'PZHB': { // 批准缓办
    showComp: null,
    passBack: 'onedeptid'
  },
  'PZYQ': { // 批准延期
    showComp: 'inputDelayTime',
    passBack: 'onedeptid'
  },
  'SQHB': { // 申请缓办
    showComp: null,
    passBack: null
  },
  'SQTZ': { // 申请调整
    showComp: null,
    passBack: null
  },
  'SQYQ': { // 申请延期
    showComp: null,
    passBack: null
  },
  'SHBTY': { // 审核不同意
    showComp: null,
    passBack: 'onedeptid'
  },
  'SHTG': { // 审核通过
    showComp: null,
    passBack: null
  },
  'SHZJA': { // 审核转结案
    showComp: null,
    passBack: null
  },
  'TYSQTZ': { // 同意申请调整
    showComp: null,
    passBack: null
  },
  'TYTZ': { // 同意调整
    showComp: null,
    passBack: null
  },
  'THHS': { // 退回核实
    showComp: 'selectUser',
    passBack: 'verifyPersonId'
  },
  'XA': { // 销案
    showComp: 'selectUser',
    passBack: null
  },
  'YLA': { // 预立案
    showComp: null,
    passBack: null
  },
  'YPF': { // 预派发
    showComp: null,
    passBack: null
  },
  'ZCJA': { // 正常结案
    showComp: 'selectFilingType',
    passBack: 'isNeedRevisit'
  },
  'CXBL': { // 重新办理
    showComp: null,
    passBack: null
  },
  'CXPQ': { // 重新派遣
    showComp: 'selectDept',
    passBack: null
  },
  'ZCZRY': { // 转处置人员
    showComp: 'selectUser',
    passBack: null
  }

}

export { radioMap }