客户评价
This commit is contained in:
@ -615,6 +615,19 @@
|
||||
})
|
||||
return
|
||||
}
|
||||
let arr = []
|
||||
dataBank.forEach(v => {
|
||||
if (v.defaultSign == 'Y') {
|
||||
arr.push(v)
|
||||
}
|
||||
})
|
||||
if (arr.length > 1 || !arr.length) {
|
||||
notification.warning({
|
||||
message: 'Tip',
|
||||
description: '默认银行有且仅有一个'
|
||||
})
|
||||
return
|
||||
}
|
||||
let arrCertificate = JSON.parse(JSON.stringify(dataCertificate))
|
||||
arrCertificate.forEach(v => {
|
||||
v.dateFrom = v.dateFrom ? dayjs(v.dateFrom ).format('YYYY-MM-DD HH:mm:ss') : '';
|
||||
|
||||
Reference in New Issue
Block a user