From 1fc0ac9e960160af57c6bf61adfaded59bb57916 Mon Sep 17 00:00:00 2001 From: "bai.jinyan" Date: Sat, 8 May 2021 10:41:06 +0800 Subject: [PATCH] =?UTF-8?q?feature/GFRS-2401=20=E6=83=A0=E6=A1=82=E4=BF=9D?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=AF=BC=E5=85=A5=E9=9C=80=E6=B1=82-?= =?UTF-8?q?=E5=89=8D=E7=AB=AF=E4=BF=9D=E5=8D=95=E8=AF=A6=E6=83=85=E5=B1=95?= =?UTF-8?q?=E7=A4=BA-=E6=8F=90=E4=BA=A4=E4=BA=BA=EF=BC=9A=E7=99=BD?= =?UTF-8?q?=E9=87=91=E5=B2=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/hgb/Detail.vue | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/views/ebiz/hgb/Detail.vue b/src/views/ebiz/hgb/Detail.vue index 8b9e6805d..5fb7ae216 100644 --- a/src/views/ebiz/hgb/Detail.vue +++ b/src/views/ebiz/hgb/Detail.vue @@ -15,13 +15,14 @@ export default { data() { return { rowInfos: [ - { rowName: '保单号', key: 'orderNumber' }, - { rowName: '投保人姓名', key: 'applicantName' }, - { rowName: '投保人电话', key: 'applicantPhone' }, + { rowName: '凭证号/保单号', key: 'orderNumber' }, + { rowName: '缴费人姓名', key: 'applicantName' }, + { rowName: '缴费人手机号', key: 'applicantPhone' }, { rowName: '被保人姓名', key: 'insuredName' }, - { rowName: '被保人电话', key: 'insuredPhone' }, - { rowName: '被保人性别', key: 'insuredGender' }, - { rowName: '被保人出生日期', key: 'insuredBirthday' }, + { rowName: '保费', key: 'prem' }, + /*{ rowName: '被保人电话', key: 'insuredPhone' },*/ + /*{ rowName: '被保人性别', key: 'insuredGender' },*/ + /*{ rowName: '被保人出生日期', key: 'insuredBirthday' },*/ { rowName: '生效日', key: 'effectiveDate' }, { rowName: '到期日', key: 'expireDate' } ], @@ -29,6 +30,7 @@ export default { applicantName: '', applicantPhone: '', insuredName: '', + prem: '', insuredPhone: '', insuredGender: '', insuredBirthday: '', @@ -55,10 +57,12 @@ export default { this.insuredPhone = insuredDTO.mobile this.insuredGender = insuredDTO.sex === '0' ? '男' : insuredDTO.sex === '1' ? '女' : '-' this.insuredBirthday = insuredDTO.birthday + } let orderInfoDTO = res.content.data.orderInfoDTO if (orderInfoDTO) { - this.orderNumber = orderInfoDTO.prtNo + this.prem = orderInfoDTO.orderStandAmount + this.orderNumber = orderInfoDTO.contNo this.effectiveDate = orderInfoDTO.cvaliDate this.expireDate = orderInfoDTO.expiryDate }