From 36f053a9bf531b99203fb7b169c168f3e2db0b80 Mon Sep 17 00:00:00 2001 From: "tian.guangyuan" Date: Wed, 6 May 2020 09:54:30 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix=E3=80=91=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E6=8C=89=E7=85=A7=E6=8E=A5=E5=8F=A3=E6=96=87=E6=A1=A3=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/preserve/PolicyList.vue | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/views/ebiz/preserve/PolicyList.vue b/src/views/ebiz/preserve/PolicyList.vue index 9c297dfb5..ea7c60822 100644 --- a/src/views/ebiz/preserve/PolicyList.vue +++ b/src/views/ebiz/preserve/PolicyList.vue @@ -45,7 +45,7 @@ 保额(元) - {{ item.amnt | amtFormat }} + {{ item.amt | amtFormat }}
@@ -85,10 +85,21 @@ export default { { contNo: '11111111', appntName: '张三', - isuredName: '李四', + insuredName: '李四', riskName: '国富人寿八桂无忧', - amnt: '130.000', + amt: '130.000', cvaliDate: '2020-01-19' + }, + { + "grpContNo": "11222111", + "contNo": "11111111", + "proposalPrtNo": "641596", + "hangUpFlag": "2", + "appntName": "张三2", + "insuredName": "李四2", + "riskName": "国富人寿八桂无忧", + "amt": "130.00", + "cvaliDate": "2020-01-19" } ] //保单列表 /* @@ -105,14 +116,15 @@ export default { mounted() { this.entry = this.$route.query.entry //await this.getPolicyList({ customerNo: this.customerInfo.customerNo }) - this.getPolicyList({ customerNo: '' }) + // this.getPolicyList({ customerNo: '' }) }, methods: { //获取保单列表 async getPolicyList(data) { policyList(data).then(res => { if (res.result == '0') { - this.policyList = res.content.policyListDTOList + // this.policyList = res.content.policyListDTOList + this.policyList = res.content.contList } else { this.$toast(res.resultMessage) }