Merge branch 'feature/GFRS-222【0423】续期管理-续期列表' into dev

This commit is contained in:
na.guo
2020-09-02 11:57:38 +08:00
2 changed files with 10 additions and 6 deletions

View File

@@ -24,7 +24,7 @@
<span>保单号:</span><span class="ml10">{{ item.contNo }}</span>
</div>
<div>
<span>金额:</span><span class="green">{{ item.money }}</span>
<span>金额:</span><span class="green">{{ item.money }}</span>
</div>
</div>
<div class="dataLine grayText">
@@ -157,10 +157,14 @@ export default {
this.list.splice(0)
this.finishedText = ''
let result = await getList(param)
this.finishedText = '没有更多了...'
if (result.result === '0') {
if (result.content) {
this.list = result.content.list ? result.content.list : []
if (result.content.list) {
this.list = result.content.list
this.finishedText = '没有更多了...'
} else {
this.list = []
}
}
this.$toast.clear()
} else {
@@ -179,7 +183,6 @@ export default {
})
this.invalidFinishedText = ''
let result = await getInvalidOrderList(data)
this.invalidFinishedText = '没有更多了...'
this.$toast.clear()
if (result.result === '0') {
if (result.policyListDTOList) {
@@ -189,6 +192,7 @@ export default {
this.invalidList.push(item)
}
}
this.invalidFinishedText = '没有更多了...'
}
} else {
this.invalidFinishedText = ''

View File

@@ -19,7 +19,7 @@
<van-cell title="性别" :value="appntDTO.sexText" />
<van-cell title="证件类型" :value="appntDTO.idTypeText" />
<van-cell title="证件号码" :value="appntDTO.idNo" />
<van-cell title="联系电话" :value="appntDTO.mobile" />
<van-cell title="联系电话" :value="appntDTO.mobileStar" />
</van-cell-group>
</van-collapse-item>
@@ -85,7 +85,7 @@
<van-cell title="转账银行" :value="renewalManage.bankName" />
<van-cell title="转账账号" :value="renewalManage.bankAccNo" />
<van-cell title="下次扣款日" :value="renewalManage.paytoDate" />
<van-cell title="下期扣款金额(元)" :value="renewalManage.xqprem" />
<van-cell title="下期扣款金额(元)" :value="renewalManage.xqprem | moneyFormat" />
</van-cell-group>
</van-collapse-item>
</van-collapse>