fix:7车间不合格项添加杂质
This commit is contained in:
parent
0c6b54df2f
commit
aea42e54c8
|
@ -606,6 +606,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_zz"
|
||||
controls-position="right"
|
||||
:min="0"
|
||||
:step="0.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
|
||||
|
@ -1004,6 +1019,7 @@ export default {
|
|||
count_n_dxt: 0,
|
||||
count_n_js: 0,
|
||||
count_n_qx: 0,
|
||||
count_n_zz:0,
|
||||
count_n_qt: 0,
|
||||
count_n_hs: 0,
|
||||
count_n_xzp: 0,
|
||||
|
@ -1282,6 +1298,7 @@ export default {
|
|||
this.form.count_n_qp +
|
||||
this.form.count_n_zt +
|
||||
this.form.count_n_b +
|
||||
this.form.count_n_zz +
|
||||
this.form.count_n_qt;
|
||||
} else if (this.activeType == "10车间") {
|
||||
this.form.count_notok =
|
||||
|
@ -1332,6 +1349,7 @@ export default {
|
|||
this.form.count_n_qp +
|
||||
this.form.count_n_zt +
|
||||
this.form.count_n_b +
|
||||
this.form.count_n_zz +
|
||||
this.form.count_n_qt;
|
||||
} else if (this.activeType == "10车间") {
|
||||
this.form.mtask = this.mtask;
|
||||
|
|
Loading…
Reference in New Issue