Commit abdf93a7 authored by 季圣华's avatar 季圣华
Browse files

优化账户流水界面,给正数的金额前加+符号

parent da866820
......@@ -80,12 +80,15 @@
if (r.aList && r.amList) {
let aListArr = r.aList.toString().split(",");
let amListArr = r.amList.toString().split(",");
let res = "";
let res = 0;
for (let i = 0; i < aListArr.length; i++) {
if (aListArr[i] == r.accountId) {
res = amListArr[i];
}
}
if(res>0) {
res = '+' + res
}
return res + "[多账户]";
}
else {
......
Supports Markdown
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