Browse Source

完善资方还款划扣明细

master
yunuo970428 1 year ago
parent
commit
4e022f5eb0
  1. 9
      anrui-riskcenter-ui/src/views/monthlypayment/monthlypayment.vue

9
anrui-riskcenter-ui/src/views/monthlypayment/monthlypayment.vue

@ -451,18 +451,19 @@ export default {
//
toDeduct() {
if (this.list.length > 0) {
const click = true
let aa = '0'
this.list.forEach((e) => {
if (e.updateTime === '') {
this.click = false
aa = '1'
return
}
})
if (click) {
// click10
if (aa === '0') {
this.viewState = 3
this.$refs['divDeduct'].showAdd()
} else {
this.$message({ showClose: true, type: 'error', message: '资方划扣还款明细列表存在未更新的数据,请先点击更新' })
this.$message({ showClose: true, type: 'error', message: '资方划扣还款明细列表存在未更新的数据,请先点击更新后再进行划扣操作' })
}
} else {
this.$message({ showClose: true, type: 'error', message: '资方划扣还款明细列表数据为空,无需执行划扣操作' })

Loading…
Cancel
Save