fix:解决部分遗漏问题
This commit is contained in:
parent
ef9e153b46
commit
29a63f2a6d
@ -87,7 +87,7 @@
|
||||
<el-row >
|
||||
<el-col :span="12">
|
||||
<el-form-item label="顺序编号" prop="orderNum">
|
||||
<el-input-number :min="1" v-model="form.orderNum" placeholder="请输入顺序编号" />
|
||||
<el-input-number :min="1" :max="999999" v-model="form.orderNum" placeholder="请输入顺序编号" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
|
@ -98,7 +98,7 @@
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="序号" prop="orderNum">
|
||||
<el-input-number :min="1" v-model="form.orderNum" placeholder="请输入序号" />
|
||||
<el-input-number :min="1" :max="999999" v-model="form.orderNum" placeholder="请输入序号" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
|
@ -244,7 +244,7 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="检测数量" prop="quantityCheck">
|
||||
<el-input v-model="form.quantityCheck" placeholder="请输入检测数量" />
|
||||
<el-input-number v-model="form.quantityCheck" :max="99999999" placeholder="请输入检测数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
@ -302,29 +302,29 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="不合格数" prop="quantityUnqualified">
|
||||
<el-input-number v-model="form.quantityUnqualified" max="99999999" placeholder="请输入不合格数" />
|
||||
<el-input-number v-model="form.quantityUnqualified" :max="99999999" placeholder="请输入不合格数" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="合格品数量" prop="quantityQualified">
|
||||
<el-input-number v-model="form.quantityQualified" max="99999999" placeholder="请输入合格品数量" />
|
||||
<el-input-number v-model="form.quantityQualified" :max="99999999" placeholder="请输入合格品数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="致命缺陷数量" prop="crQuantity">
|
||||
<el-input-number v-model="form.crQuantity" max="99999999" placeholder="请输入致命缺陷数量" />
|
||||
<el-input-number v-model="form.crQuantity" :max="99999999" placeholder="请输入致命缺陷数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="严重缺陷数量" prop="majQuantity">
|
||||
<el-input-number v-model="form.majQuantity" max="99999999" placeholder="请输入严重缺陷数量" />
|
||||
<el-input-number v-model="form.majQuantity" :max="99999999" placeholder="请输入严重缺陷数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="轻微缺陷数量" prop="minQuantity">
|
||||
<el-input-number v-model="form.minQuantity" max="99999999" placeholder="请输入轻微缺陷数量" />
|
||||
<el-input-number v-model="form.minQuantity" :max="99999999" placeholder="请输入轻微缺陷数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
@ -117,29 +117,29 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="不合格数" prop="quantityUnqualified">
|
||||
<el-input-number v-model="form.quantityUnqualified" max="99999999" placeholder="请输入不合格数" />
|
||||
<el-input-number v-model="form.quantityUnqualified" :max="99999999" placeholder="请输入不合格数" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="合格品数量" prop="quantityQualified">
|
||||
<el-input-number v-model="form.quantityQualified" max="99999999" placeholder="请输入合格品数量" />
|
||||
<el-input-number v-model="form.quantityQualified" :max="99999999" placeholder="请输入合格品数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="致命缺陷数量" prop="crQuantity">
|
||||
<el-input-number v-model="form.crQuantity" max="99999999" placeholder="请输入致命缺陷数量" />
|
||||
<el-input-number v-model="form.crQuantity" :max="99999999" placeholder="请输入致命缺陷数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="严重缺陷数量" prop="majQuantity">
|
||||
<el-input-number v-model="form.majQuantity" max="99999999" placeholder="请输入严重缺陷数量" />
|
||||
<el-input-number v-model="form.majQuantity" :max="99999999" placeholder="请输入严重缺陷数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="轻微缺陷数量" prop="minQuantity">
|
||||
<el-input-number v-model="form.minQuantity" max="99999999" placeholder="请输入轻微缺陷数量" />
|
||||
<el-input-number v-model="form.minQuantity" :max="99999999" placeholder="请输入轻微缺陷数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
@ -106,7 +106,7 @@
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="标准值" prop="standerVal">
|
||||
<el-input-number v-model="form.standerVal" max="99999999" placeholder="请输入标准值" />
|
||||
<el-input-number v-model="form.standerVal" :max="99999999" placeholder="请输入标准值" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
|
@ -110,7 +110,7 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="到货数量" prop="quantityArrival">
|
||||
<el-input-number v-model="form.quantityArrival" max="99999999" placeholder="请输入到货数量" />
|
||||
<el-input-number v-model="form.quantityArrival" :max="99999999" placeholder="请输入到货数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
@ -92,7 +92,7 @@
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="入库数量" prop="quantityRecived">
|
||||
<el-input-number :min="0.01" v-model="form.quantityRecived" placeholder="请输入入库数量" />
|
||||
<el-input-number :min="0.01" :max="99999999" v-model="form.quantityRecived" placeholder="请输入入库数量" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
|
@ -201,7 +201,7 @@
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="箱长度" prop="packageLength">
|
||||
<el-input v-model="form.packageLength" max="999999999" placeholder="请输入箱长度" class="input-with-select">
|
||||
<el-input v-model="form.packageLength" :max="999999999" placeholder="请输入箱长度" class="input-with-select">
|
||||
<el-select slot="append" class="width" v-model="form.sizeUnit">
|
||||
<el-option
|
||||
v-for="item in measureOptions"
|
||||
|
@ -520,6 +520,7 @@ export default {
|
||||
}
|
||||
},
|
||||
handleSelectClient(){
|
||||
this.$refs["form"].clearValidate()
|
||||
this.$refs.clientSelect.handleOpen(this.form.clientId)
|
||||
},
|
||||
//客户选择弹出框
|
||||
|
Loading…
Reference in New Issue
Block a user