fix:coding#594
This commit is contained in:
parent
96820cbb4f
commit
ffc95890fa
|
@ -547,6 +547,21 @@
|
|||
</el-input-number>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :md="12" :sm="24">
|
||||
<el-form-item label="炸头">
|
||||
<el-input-number
|
||||
v-model="form.count_n_zt"
|
||||
controls-position="right"
|
||||
:min="0"
|
||||
:step="1"
|
||||
:step-strictly="true"
|
||||
style="width: 100%"
|
||||
placeholder="炸头"
|
||||
@change="countNotOkSun"
|
||||
>
|
||||
</el-input-number>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :md="12" :sm="24">
|
||||
<el-form-item label="条纹">
|
||||
<el-input-number
|
||||
|
@ -578,15 +593,15 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :md="12" :sm="24">
|
||||
<el-form-item label="弯曲">
|
||||
<el-form-item label="扁">
|
||||
<el-input-number
|
||||
v-model="form.count_n_wq"
|
||||
v-model="form.count_n_b"
|
||||
controls-position="right"
|
||||
:min="0"
|
||||
:step="1"
|
||||
:step-strictly="true"
|
||||
style="width: 100%"
|
||||
placeholder="弯曲"
|
||||
placeholder="扁"
|
||||
@change="countNotOkSun"
|
||||
>
|
||||
</el-input-number>
|
||||
|
@ -981,7 +996,9 @@ export default {
|
|||
count_n_zw: 0,
|
||||
count_n_tw: 0,
|
||||
count_n_qp: 0,
|
||||
count_n_wq: 0,
|
||||
count_n_wq:0,
|
||||
count_n_zt: 0,
|
||||
count_n_b: 0,
|
||||
count_n_dl: 0,
|
||||
count_n_pb: 0,
|
||||
count_n_dxt: 0,
|
||||
|
@ -1263,7 +1280,8 @@ export default {
|
|||
this.form.count_n_zw +
|
||||
this.form.count_n_tw +
|
||||
this.form.count_n_qp +
|
||||
this.form.count_n_wq +
|
||||
this.form.count_n_zt +
|
||||
this.form.count_n_b +
|
||||
this.form.count_n_qt;
|
||||
} else if (this.activeType == "10车间") {
|
||||
this.form.count_notok =
|
||||
|
@ -1312,7 +1330,8 @@ export default {
|
|||
this.form.count_n_zw +
|
||||
this.form.count_n_tw +
|
||||
this.form.count_n_qp +
|
||||
this.form.count_n_wq +
|
||||
this.form.count_n_zt +
|
||||
this.form.count_n_b +
|
||||
this.form.count_n_qt;
|
||||
} else if (this.activeType == "10车间") {
|
||||
this.form.mtask = this.mtask;
|
||||
|
|
Loading…
Reference in New Issue