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