|
|
@@ -226,7 +226,7 @@ export default defineComponent({
|
|
|
const isLimit = () => formState.priceType === 2;
|
|
|
const getPrice = () => (isFloat() && isLimit() ? formState.price : props.selectedRow.orderprice);
|
|
|
// 四舍五入
|
|
|
- const fn = (value: number) => Math.round(value * 100) / 1000;
|
|
|
+ const fn = (value: number) => Math.round(value * 100) / 100;
|
|
|
// 金额
|
|
|
const getMoney = () => {
|
|
|
let result = 0;
|