diff --git a/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue b/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue index ff4d2843d..2c29cdb25 100644 --- a/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue +++ b/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue @@ -28,7 +28,7 @@
是被保险人的 - {{ item.relationToInsured | idToText('relationToAppnt') }} + {{ item.relationToInsured | idToText('edorRelationToAppnt') }}
受益份额 @@ -69,9 +69,6 @@ export default { [Icon.name]: Icon, [Dialog.name]: Dialog }, - filters: { - mask: filters.mask - }, data() { // let feachData = { // surrenderDTOList: [ @@ -218,6 +215,10 @@ export default { } }) } + }, + filters: { + idToText: filters.idToText, + mask: filters.mask } } diff --git a/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue b/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue index 7041204d6..414e906dc 100644 --- a/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue +++ b/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue @@ -161,6 +161,9 @@ export default { } let beneficiaries = [...this.beneficiariesOld, ...this.beneficiariesNew] beneficiaries = businessCommon.unrepeatObj(beneficiaries, 'idNo') + beneficiaries.forEach(i => { + i.contNo = this.policy.contNo + }) let feachData = { platformType: 'app', edorType: 'BC', diff --git a/src/views/ebiz/preserve/common/HandleResult.vue b/src/views/ebiz/preserve/common/HandleResult.vue index 33f53ce6c..97e5f8968 100644 --- a/src/views/ebiz/preserve/common/HandleResult.vue +++ b/src/views/ebiz/preserve/common/HandleResult.vue @@ -123,26 +123,21 @@ export default { toFace(config) { console.log('----------', config) // eslint-disable-next-line no-undef - EWebBridge.webCallAppInJs('face_auth', config) - // 跳过人脸识别 - // new Promise(resolve => { - // console.log('--跳过人脸识别--返回识别成功') - // resolve(JSON.stringify({ state: '1' })) - // }) - .then(data => { - if (JSON.parse(data).state == '1') { - this.jumpNextPage(this.path) - } else { - // eslint-disable-next-line no-undef - EWebBridge.webCallAppInJs('webview_toast', '人脸检测失败') - } - }) + // EWebBridge.webCallAppInJs('face_auth', config) + // 跳过人脸识别 + new Promise(resolve => { + console.log('--跳过人脸识别--返回识别成功') + resolve(JSON.stringify({ state: '1' })) + }).then(data => { + if (JSON.parse(data).state == '1') { + this.jumpNextPage(this.path) + } else { + // eslint-disable-next-line no-undef + EWebBridge.webCallAppInJs('webview_toast', '人脸检测失败') + } + }) } } - // beforeRouteLeave(to, from, next) { - // // document.body.style.backgroundColor = '' - // next() - // } } diff --git a/src/views/ebiz/preserve/ct/SurrenderInfo.vue b/src/views/ebiz/preserve/ct/SurrenderInfo.vue index f094f3814..14c58979e 100644 --- a/src/views/ebiz/preserve/ct/SurrenderInfo.vue +++ b/src/views/ebiz/preserve/ct/SurrenderInfo.vue @@ -238,7 +238,6 @@ export default { } }) this.ctBonusDTO = Object.assign({}, this.ctBonusDTO, this.ctTrialDTO, this.ctAccountDTO) - this.ctTrialDTO.surrenderRate = res.content.feeRate == '0' ? res.content.feeRate : res.content.feeRate + '%' resolve() } else { reject(this.$toast(res.resultMessage))