qfw
This commit is contained in:
parent
1475322d91
commit
c9fd3d4baf
@ -119,7 +119,6 @@ const _sfc_main = defineComponent({
|
||||
}
|
||||
}
|
||||
let z = (noNegative ? "" : "-") + t.split("").reverse().join("");
|
||||
z = isNaN(z) ? 0 : z;
|
||||
if (r) {
|
||||
return z + "." + r;
|
||||
} else {
|
||||
|
@ -11215,7 +11215,6 @@ const _sfc_main$1v = defineComponent({
|
||||
}
|
||||
}
|
||||
let z = (noNegative ? "" : "-") + t.split("").reverse().join("");
|
||||
z = isNaN(z) ? 0 : z;
|
||||
if (r) {
|
||||
return z + "." + r;
|
||||
} else {
|
||||
|
@ -81,8 +81,8 @@ const formatMoney = function (s: string) {
|
||||
t += l[i] + ""; //加上空格
|
||||
}
|
||||
}
|
||||
let z:any = (noNegative ? "" : "-") + t.split("").reverse().join("")
|
||||
z = isNaN(z) ? 0 : z
|
||||
let z:any = (noNegative ? "" : "-") + t.split("").reverse().join("");
|
||||
// z = isNaN(z) ? 0 : z;
|
||||
if(r){
|
||||
return z+ "." + r;
|
||||
|
||||
|
44
umd/index.js
44
umd/index.js
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user