Browse Source

完善还款计划表

master
yunuo970428 12 months ago
parent
commit
86fc58170f
  1. 9
      anrui-riskcenter-ui/src/views/repaymentschedule/repaymentschedule.vue

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

@ -209,7 +209,10 @@ export default {
this.multipleSelection = row
row.forEach(element => {
aa.push(element.salesOrderSid)
bb.push(element.builded)
bb.push({
builded: element.builded,
bankContractNo: element.bankContractNo
})
})
this.sids = aa
this.state_list = bb
@ -274,8 +277,8 @@ export default {
// }
if (this.state_list.length > 0) {
for (var i = 0; i < this.state_list.length; i++) {
if (this.state_list[i] === '是') {
this.$message({ showClose: true, type: 'error', message: '请选择是否已生成还款计划表状态为否的记录进行操作' })
if (this.state_list[i].bankContractNo === '' || this.state_list[i].builded === '是') {
this.$message({ showClose: true, type: 'error', message: '请选择是否已生成还款计划表状态为否且资方合同编号不为空的记录进行操作' })
return
}
}

Loading…
Cancel
Save