Commit a2d0f03d authored by 华国豪's avatar 华国豪 🙄

修改数字转汉子

parent b1c8aab2
......@@ -114,6 +114,9 @@ var commonUtils = {
return result;
},
changeMoneyToChinese(Num) { // 数字转中文大写
if (!Num) {
return '零'
}
var isNegative = false; // 是否负数
if (Num < 0) {
Num = -Num;
......
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