箱中破(count_n_xzp)与碎料(count_break)分开

This commit is contained in:
shijing 2024-03-05 10:15:32 +08:00
parent b230202990
commit 855e6c3198
1 changed files with 5 additions and 4 deletions

View File

@ -217,7 +217,7 @@
</el-col> </el-col>
<el-col :md="12" :sm="24"> <el-col :md="12" :sm="24">
<el-form-item label="箱中破"> <el-form-item label="箱中破">
<el-input-number v-model="form.count_break" controls-position="right" style="width: 100%" placeholder="箱中破" <el-input-number v-model="form.count_n_xzp" controls-position="right" style="width: 100%" placeholder="箱中破"
@change="countNotOkSun"> @change="countNotOkSun">
</el-input-number> </el-input-number>
</el-form-item> </el-form-item>
@ -615,7 +615,9 @@ export default {
count_n_js: 0, count_n_js: 0,
count_n_qx: 0, count_n_qx: 0,
count_n_qt: 0, count_n_qt: 0,
count_n_xzp:0,
count_break: 0, count_break: 0,
count_notok: 0,
mlogb: [], mlogb: [],
}, },
mlogb: [], mlogb: [],
@ -847,7 +849,7 @@ export default {
this.form.count_n_dxt + this.form.count_n_dxt +
this.form.count_n_js + this.form.count_n_js +
this.form.count_n_qx + this.form.count_n_qx +
this.form.count_break; this.form.count_n_xzp;
this.form.count_real = this.form.count_ok + this.form.count_notok; this.form.count_real = this.form.count_ok + this.form.count_notok;
this.form.count_use = this.form.count_real; this.form.count_use = this.form.count_real;
} }
@ -904,7 +906,7 @@ export default {
this.form.count_n_dxt + this.form.count_n_dxt +
this.form.count_n_js + this.form.count_n_js +
this.form.count_n_qx + this.form.count_n_qx +
this.form.count_break; this.form.count_n_xzp;
this.form.count_real = this.form.count_ok + this.form.count_notok; this.form.count_real = this.form.count_ok + this.form.count_notok;
this.form.count_use = this.form.count_real; this.form.count_use = this.form.count_real;
} }
@ -954,7 +956,6 @@ export default {
}); });
} }
} }
} }
}); });
}, },