Browse Source

fix(订单表单): 将总数量字段的精度从4改为0

yz 1 month ago
parent
commit
2d5a5192d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/order-form/form-option.js

+ 1 - 1
src/components/order-form/form-option.js

@@ -148,7 +148,7 @@ export const orderFormOption = {
           prop: 'totalQuantity',
           type: 'number',
           span: 8,
-          precision: 4,
+          precision: 0,
           placeholder: '请输入订单总数量',
           rules: [{
             required: true,