|
@@ -280,8 +280,11 @@ export function transDecimalPlace(str,{pn,nt}) {
|
|
|
//是否是原数字后设置百分比的
|
|
|
let transPercent = (nt==='percent'&&!str.endsWith('%')) ? true : false;
|
|
|
|
|
|
+ //原百分比设置为数字的
|
|
|
+ let transDecimal = (nt==='number'&&str.endsWith('%')) ? true : false
|
|
|
+
|
|
|
//后缀 百分号
|
|
|
- let suffix = (str.endsWith('%')||transPercent) ? '%' : '';
|
|
|
+ let suffix = ((str.endsWith('%')&&nt!=='number')||transPercent) ? '%' : '';
|
|
|
|
|
|
let num = parseFloat(s);
|
|
|
|
|
@@ -292,28 +295,35 @@ export function transDecimalPlace(str,{pn,nt}) {
|
|
|
: `${multiply(num,100)}${suffix}`;
|
|
|
}
|
|
|
|
|
|
+ if(transDecimal) {
|
|
|
+ return decimalNum > 0
|
|
|
+ ? `${divide(num,100)}${'0'.repeat(decimalNum)}`
|
|
|
+ : `${divide(num,100)}`;
|
|
|
+ }
|
|
|
+
|
|
|
// 补零
|
|
|
return decimalNum > 0
|
|
|
? `${s}.${'0'.repeat(decimalNum)}${suffix}`
|
|
|
: `${s}${suffix}`;
|
|
|
}
|
|
|
|
|
|
- // let integerStr = str.split('.')[0],
|
|
|
- // decimalStr = str.split('.')[1];
|
|
|
-
|
|
|
if(decimalNum > 0) {
|
|
|
let addPointStr = `${s}${'0'.repeat(decimalNum)}`;
|
|
|
|
|
|
return transPercent
|
|
|
? `${parseFloat(multiply(num,100)).toFixed(decimalPlaces+decimalNum-2)}${suffix}`
|
|
|
- : `${addPointStr}${suffix}`
|
|
|
+ : transDecimal
|
|
|
+ ? `${parseFloat(divide(num,100)).toFixed(decimalPlaces+decimalNum+2)}`
|
|
|
+ : `${addPointStr}${suffix}`
|
|
|
}else {
|
|
|
let maxDecimal = Math.max(0,decimalNum+decimalPlaces);
|
|
|
let maxDecimalPercent = Math.max(0,maxDecimal-2);
|
|
|
|
|
|
return transPercent
|
|
|
- ? `${parseFloat(multiply(num,100)).toFixed(maxDecimalPercent)}${suffix}`
|
|
|
- : `${parseFloat(num.toFixed(maxDecimal))}${suffix}`
|
|
|
+ ? `${parseFloat(multiply(num,100)).toFixed(maxDecimalPercent)}${suffix}`
|
|
|
+ : transDecimal
|
|
|
+ ? `${parseFloat(divide(num,100)).toFixed(maxDecimal+2)}`
|
|
|
+ : `${parseFloat(num.toFixed(maxDecimal))}${suffix}`
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -353,6 +363,6 @@ export function transNumPercentType(str,type) {
|
|
|
const percenStr = parseFloat(multiply(num,100)) + '%';
|
|
|
return percenStr;
|
|
|
}else {
|
|
|
- return parseFloat(num/100);
|
|
|
+ return parseFloat(divide(num,100));
|
|
|
}
|
|
|
}
|