Commit f98cadd7 authored by Hsinli's avatar Hsinli

add

parent 55c6a028
Pipeline #14272 passed with stage
in 12 seconds
......@@ -264,9 +264,9 @@ class BlacklistService extends Service {
for (let i in overdueInfo) {
//需要对逾期的金额额外处理
let amount = '';
if (['0', 0].includes(verdueInfo[i].overdue_amount)) {
if (['0', 0].includes(overdueInfo[i].overdue_amount)) {
amount = 0;
} else if (verdueInfo[i].overdue_amount = '>1000000') {
} else if (overdueInfo[i].overdue_amount = '>1000000') {
amount = '100万以上'
} else {
let amountLen = overdueInfo[i].overdue_amount.length;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment