Merge branch 'feature/GFRS-222【0423】续期管理-续期列表' of http://112.124.100.131/GFRS/ebiz-h5 into feature/GFRS-222【0423】续期管理-续期列表

This commit is contained in:
na.guo
2020-09-02 11:56:46 +08:00

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 = ''