mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-24 03:12:52 +08:00
Merge branch 'feature/GFRS-222【0423】续期管理-续期列表' into dev
This commit is contained in:
@@ -90,15 +90,16 @@ export default {
|
||||
mounted() {
|
||||
this.getDetail()
|
||||
},
|
||||
beforeRouteLeave(to, from, next) {
|
||||
document.body.style.backgroundColor = ''
|
||||
next()
|
||||
},
|
||||
methods: {
|
||||
async getDetail() {
|
||||
let contNo = this.$route.params.contNo
|
||||
let payToDate = this.$route.params.payToDate
|
||||
let payFlag = this.$route.params.payFlag
|
||||
this.$toast.loading({
|
||||
message: '加载中...',
|
||||
forbidClick: true,
|
||||
loadingType: 'spinner'
|
||||
})
|
||||
let result = await getDetail({ contNo, payToDate, payFlag })
|
||||
console.dir(result)
|
||||
this.renewalDTO = result
|
||||
|
||||
@@ -90,7 +90,6 @@ export default {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.$toast.loading('加载中...')
|
||||
this.getpolicyList()
|
||||
},
|
||||
|
||||
@@ -102,7 +101,11 @@ export default {
|
||||
otherNo: this.searchVal,
|
||||
payFlag: this.active
|
||||
}
|
||||
this.$toast.loading('加载中...')
|
||||
this.$toast.loading({
|
||||
message: '加载中...',
|
||||
forbidClick: true,
|
||||
loadingType: 'spinner'
|
||||
})
|
||||
let result = await getList(param)
|
||||
this.list.splice(0)
|
||||
this.list = result.list ? result.list : []
|
||||
|
||||
Reference in New Issue
Block a user