BUG 29681

This commit is contained in:
aixianling
2022-05-23 10:32:09 +08:00
parent 97c43de5ce
commit f6d36a132d

View File

@@ -268,7 +268,7 @@ export default {
}).catch(() => 0) }).catch(() => 0)
}, },
checkIntegral(v) { checkIntegral(v) {
return /\.\d{2,}$/.test(v) ? Math.abs(v).toFixed(1) : v return /\.\d{2,}$/.test(v) ? Math.abs(v).toFixed(1) : Math.abs(v)
} }
}, },
}; };