From c85a38b262b4f81961b9b6e63efa58dfbb0c11d2 Mon Sep 17 00:00:00 2001 From: yuweiqi Date: Thu, 11 Jun 2020 19:09:44 +0800 Subject: [PATCH] =?UTF-8?q?[FIX]=E3=80=90=E4=BF=9D=E5=85=A8=E3=80=91?= =?UTF-8?q?=E9=80=80=E4=BF=9D-=E6=98=AF=E5=90=A6=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E8=BA=AB=E4=BB=BD=E8=AF=81=E4=BB=B6=E5=BD=B1?= =?UTF-8?q?=E5=83=8F=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D=EF=BC=9B=E5=8F=97?= =?UTF-8?q?=E7=9B=8A=E4=BA=BA=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/ebiz/preserve.js | 23 +- .../preserve/bc/BeneficiaryConfirmation.vue | 179 +++++---- .../ebiz/preserve/bc/BeneficiaryInfo.vue | 80 ++++- .../ebiz/preserve/bc/BeneficiaryInfoAdd.vue | 125 ++++--- src/views/ebiz/preserve/bc/ImageUpload.vue | 339 +++++------------- .../ebiz/preserve/common/HandleResult.vue | 58 +-- src/views/ebiz/preserve/common/PolicyList.vue | 3 + src/views/ebiz/preserve/ct/ImageUpload.vue | 10 +- .../preserve/ct/SurrenderConfirmation.vue | 2 +- src/views/ebiz/preserve/ct/SurrenderInfo.vue | 10 +- src/views/ebiz/preserve/ct/SurrenderTip.vue | 4 +- src/views/ebiz/preserve/js/data-dictionary.js | 12 +- .../ebiz/preserve/pc/AutopayAuthorization.vue | 4 +- src/views/ebiz/preserve/pc/ImageUpload.vue | 2 +- .../ebiz/preserve/pc/RenewalConfirmation.vue | 2 +- src/views/ebiz/preserve/pc/RenewalInfo.vue | 5 +- 16 files changed, 406 insertions(+), 452 deletions(-) diff --git a/src/router/ebiz/preserve.js b/src/router/ebiz/preserve.js index 5e819561e..25f7b8790 100644 --- a/src/router/ebiz/preserve.js +++ b/src/router/ebiz/preserve.js @@ -1,29 +1,30 @@ //保全 定义相关组件 +//common公用页面 const Search = () => import('@/views/ebiz/preserve/common/Search') const HandleResult = () => import('@/views/ebiz/preserve/common/HandleResult') const SubmitResult = () => import('@/views/ebiz/preserve/common/SubmitResult') const PolicyList = () => import('@/views/ebiz/preserve/common/PolicyList') - +//PC 续期账户变更 const RenewalInfo = () => import('@/views/ebiz/preserve/pc/RenewalInfo') const PcImageUpload = () => import('@/views/ebiz/preserve/pc/ImageUpload') const RenewalConfirmation = () => import('@/views/ebiz/preserve/pc/RenewalConfirmation') const AutopayAuthorization = () => import('@/views/ebiz/preserve/pc/AutopayAuthorization') - +//BB 联系方式变更 const contactInfo = () => import('@/views/ebiz/preserve/bb/ContactInfo') const contacAgreement = () => import('@/views/ebiz/preserve/bb/ContacAgreement') const contactConfirmation = () => import('@/views/ebiz/preserve/bb/ContactConfirmation') - +//BC 受益人变更 const BeneficiaryInfo = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfo') -const bcImageUpload = () => import('@/views/ebiz/preserve/bc/ImageUpload') -const beneficiaryInfoAdd = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfoAdd') +const BcImageUpload = () => import('@/views/ebiz/preserve/bc/ImageUpload') +const BeneficiaryInfoAdd = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfoAdd') const beneficiaryInfoDetail = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfoDetail') const beneficiaryConfirmation = () => import('@/views/ebiz/preserve/bc/BeneficiaryConfirmation') - +//退保 const SurrenderInfo = () => import('@/views/ebiz/preserve/ct/SurrenderInfo') const SurrenderConfirmation = () => import('@/views/ebiz/preserve/ct/SurrenderConfirmation') const SurrenderTip = () => import('@/views/ebiz/preserve/ct/SurrenderTip') const CtImageUpload = () => import('@/views/ebiz/preserve/ct/ImageUpload') - +//保全进度查询及详情页面 const Progress = () => import('@/views/ebiz/preserve/Progress') const Contact = () => import('@/views/ebiz/preserve/detail/Contact') const Beneficiary = () => import('@/views/ebiz/preserve/detail/Beneficiary') @@ -98,8 +99,8 @@ export default [ }, { path: '/preserve/bc/beneficiaryInfoAdd', - name: 'beneficiaryInfoAdd', - component: beneficiaryInfoAdd, + name: 'BeneficiaryInfoAdd', + component: BeneficiaryInfoAdd, meta: { title: '指定受益人信息', index: 105 @@ -125,8 +126,8 @@ export default [ }, { path: '/preserve/bc/imageUpload', - name: 'bcImageUpload', - component: bcImageUpload, + name: 'BcImageUpload', + component: BcImageUpload, meta: { title: '上传影像资料', index: 7 diff --git a/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue b/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue index 35a7b8d07..a96f2b749 100644 --- a/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue +++ b/src/views/ebiz/preserve/bc/BeneficiaryConfirmation.vue @@ -9,7 +9,7 @@
- + 法定受益人 指定受益人 @@ -38,18 +38,9 @@
- +

向此手机发送验证码确认用户身份

-

{{ '15512341234' | Mask }}

+

{{ customerInfo.customerMobile | mask }}

@@ -58,13 +49,16 @@
- 提交申请 + 提交申请
diff --git a/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue b/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue index 461026e21..9a5cabdb9 100644 --- a/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue +++ b/src/views/ebiz/preserve/bc/BeneficiaryInfo.vue @@ -32,7 +32,7 @@

是被保险人的 - {{ item.relationToInsured | idToText('relationToAppnt') }} + {{ item.relationToInsured | idToText('edorRelationToAppnt') }}

受益份额 @@ -44,12 +44,20 @@

+ 添加指定受益人
下一步 + + +
+ +

当前顺位受益比例总和不等于100%

+
+
diff --git a/src/views/ebiz/preserve/bc/BeneficiaryInfoAdd.vue b/src/views/ebiz/preserve/bc/BeneficiaryInfoAdd.vue index 9b5f7e6b3..518ad6b06 100644 --- a/src/views/ebiz/preserve/bc/BeneficiaryInfoAdd.vue +++ b/src/views/ebiz/preserve/bc/BeneficiaryInfoAdd.vue @@ -1,9 +1,9 @@