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

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

parent 8107c0a4
......@@ -89,7 +89,11 @@
return res + "[多账户]";
}
else {
return r.changeAmount;
if(r.changeAmount>0) {
return '+' + r.changeAmount
} else {
return r.changeAmount
}
}
}
},
......
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