diff --git a/src/assets/js/utils/data-dictionary.js b/src/assets/js/utils/data-dictionary.js index 5d7dbf21d..b9208d6eb 100644 --- a/src/assets/js/utils/data-dictionary.js +++ b/src/assets/js/utils/data-dictionary.js @@ -1454,6 +1454,241 @@ export default { text: '其他' } ], + // 重新投保订单状态 + insureAgainState: [ + { + id: '01', + text: '待客户确认' + }, + { + id: '02', + text: '待客户付款' + }, + { + id: '03', + text: '待公司确认' + }, + { + id: '04', + text: '待客户上载影像' + }, + { + id: '05', + text: '逾期关闭' + }, + { + id: '06', + text: '客户撤销' + }, + { + id: '07', + text: '重新投保失败' + }, + { + id: '08', + text: '订单成交' + }, + { + id: '09', + text: '订单退保' + }, + { + id: '10', + text: '订单待签单' + }, + { + id: '11', + text: '待生成电子保单' + }, + { + id: '12', + text: '退保/领取审核中' + }, + { + id: '13', + text: '等待出单' + }, + { + id: '14', + text: '支付中' + }, + { + id: '15', + text: '支付受理中' + }, + { + id: '16', + text: '等待出单' + }, + { + id: '17', + text: '手动承保完成' + }, + { + id: '18', + text: '阿里云端数据同步中间状态' + }, + { + id: '19', + text: '支付失败' + }, + { + id: '20', + text: '待答问卷' + }, + { + id: '21', + text: 'ABS保单预约挂起中' + }, + { + id: '22', + text: 'ABS保单取消预约挂起中' + }, + { + id: '23', + text: '理赔挂起中' + }, + { + id: '24', + text: '保单终止' + }, + { + id: '25', + text: 'ABS保单受益权转让挂起中' + }, + { + id: '26', + text: '保单冻结挂起中' + }, + { + id: '27', + text: '冻结受益权转让挂起中' + }, + { + id: '28', + text: '受益权还原挂起中' + }, + { + id: '29', + text: '受益权转让挂起中' + }, + { + id: '30', + text: '受益权还原挂起中' + }, + { + id: '31', + text: '续保等待人核' + }, + { + id: '32', + text: '续保第一次健康告知异常' + }, + { + id: '33', + text: '核心人工核保中' + }, + { + id: '34', + text: '核心人工核保中' + }, + { + id: '35', + text: '投保人保存成功' + }, + { + id: '36', + text: '被保险人保存成功' + }, + { + id: '37', + text: '受益人人保存成功' + }, + { + id: '38', + text: '账户信息保存成功' + }, + { + id: '39', + text: '险种信息保存成功' + }, + { + id: '40', + text: '告知信息保存成功' + }, + { + id: '41', + text: '转线下批扣中' + }, + { + id: '42', + text: '转线下批扣中' + }, + { + id: '43', + text: '待签名' + }, + { + id: '44', + text: '计划书转投保' + }, + { + id: '45', + text: '核心扣费失败' + }, + { + id: '46', + text: '自核不通过待转人核' + }, + { + id: '47', + text: '核心系统繁忙,请稍后重试' + }, + { + id: '48', + text: '修改账户信息' + }, + { + id: '49', + text: '修改银行影像信息' + }, + { + id: '50', + text: '待人核' + }, + { + id: '51', + text: '人工核保中' + }, + { + id: '52', + text: '问题件处理中' + }, + { + id: '53', + text: '待收费' + }, + { + id: '54', + text: '延期' + }, + { + id: '55', + text: '支付失败' + }, + { + id: '56', + text: '卡单投被保人信息保存成功' + }, + { + id: '57', + text: '卡单保存账户信息成功' + }, + { + id: '58', + text: '待客户付款' + } + ], policyState: [ { id: '01', diff --git a/src/views/ebiz/insureAgain/CommitInsureDetail.vue b/src/views/ebiz/insureAgain/CommitInsureDetail.vue index 2afca1fc2..968f3e821 100644 --- a/src/views/ebiz/insureAgain/CommitInsureDetail.vue +++ b/src/views/ebiz/insureAgain/CommitInsureDetail.vue @@ -6,7 +6,7 @@ - +
{{ problem.comment }} - {{ problem.state }}
@@ -382,14 +382,14 @@ export default { } }, filters: { - orderStatusFilter(val) { - for (let status of dataDictionary.policyState) { - if (status.id === val) { - return status.text - } - } - return '' - }, + // orderStatusFilter(val) { + // for (let status of dataDictionary.policyState) { + // if (status.id === val) { + // return status.text + // } + // } + // return '' + // }, reasonFilter(val) { let reg = /'|;/g return val.replace(reg, '') diff --git a/src/views/ebiz/insureAgain/index.vue b/src/views/ebiz/insureAgain/index.vue index b0a856cb1..3779d62e7 100644 --- a/src/views/ebiz/insureAgain/index.vue +++ b/src/views/ebiz/insureAgain/index.vue @@ -18,13 +18,11 @@

重新投保单号 - {{ order.policyNo }} + {{ order.newOrderNo }}

状态 - 投保中 - 承包 - 终止 + {{order.newOrderStatus | idToText('insureAgainState')}}