mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 23:46:44 +08:00
【fix】页面按照接口文档进行微调
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
<van-row class="mb15">
|
<van-row class="mb15">
|
||||||
<van-col span="12" class="fwb fs15">保额(元)</van-col>
|
<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>
|
</van-row>
|
||||||
<div class="pt15" style="border-top:1px solid #dadada">
|
<div class="pt15" style="border-top:1px solid #dadada">
|
||||||
<div>
|
<div>
|
||||||
@@ -85,10 +85,21 @@ export default {
|
|||||||
{
|
{
|
||||||
contNo: '11111111',
|
contNo: '11111111',
|
||||||
appntName: '张三',
|
appntName: '张三',
|
||||||
isuredName: '李四',
|
insuredName: '李四',
|
||||||
riskName: '国富人寿八桂无忧',
|
riskName: '国富人寿八桂无忧',
|
||||||
amnt: '130.000',
|
amt: '130.000',
|
||||||
cvaliDate: '2020-01-19'
|
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() {
|
mounted() {
|
||||||
this.entry = this.$route.query.entry
|
this.entry = this.$route.query.entry
|
||||||
//await this.getPolicyList({ customerNo: this.customerInfo.customerNo })
|
//await this.getPolicyList({ customerNo: this.customerInfo.customerNo })
|
||||||
this.getPolicyList({ customerNo: '' })
|
// this.getPolicyList({ customerNo: '' })
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//获取保单列表
|
//获取保单列表
|
||||||
async getPolicyList(data) {
|
async getPolicyList(data) {
|
||||||
policyList(data).then(res => {
|
policyList(data).then(res => {
|
||||||
if (res.result == '0') {
|
if (res.result == '0') {
|
||||||
this.policyList = res.content.policyListDTOList
|
// this.policyList = res.content.policyListDTOList
|
||||||
|
this.policyList = res.content.contList
|
||||||
} else {
|
} else {
|
||||||
this.$toast(res.resultMessage)
|
this.$toast(res.resultMessage)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user