|
@@ -423,7 +423,7 @@ module.exports = {
|
|
const reg = /^[0-9]*$/;
|
|
const reg = /^[0-9]*$/;
|
|
if (reg.test(codePath[0])) {
|
|
if (reg.test(codePath[0])) {
|
|
const num = parseInt(codePath[0]);
|
|
const num = parseInt(codePath[0]);
|
|
- return this.mul(this.div(num, 100, 0), 100);
|
|
|
|
|
|
+ return this.mul(this.div(num, 100, 0), 100) + '';
|
|
} else {
|
|
} else {
|
|
return '';
|
|
return '';
|
|
}
|
|
}
|