【fix】页面按照接口文档进行微调

This commit is contained in:
tian.guangyuan
2020-05-06 09:54:30 +08:00
parent d73de89000
commit 36f053a9bf

View File

@@ -45,7 +45,7 @@
<van-row class="mb15">
<van-col span="12" class="fwb fs15">保额</van-col>
<van-col span="12" class="text-right fwb" style="color: red">{{ item.amnt | amtFormat }}</van-col>
<van-col span="12" class="text-right fwb" style="color: red">{{ item.amt | amtFormat }}</van-col>
</van-row>
<div class="pt15" style="border-top:1px solid #dadada">
<div>
@@ -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)
}