fix:日志不合格项加其他

This commit is contained in:
shijing 2025-04-29 14:49:28 +08:00
parent a714875f8f
commit 799437765e
2 changed files with 33 additions and 1 deletions

View File

@ -482,6 +482,21 @@
</el-input-number> </el-input-number>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :md="12" :sm="24">
<el-form-item label="其他">
<el-input-number
v-model="form.count_n_qt"
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-col :md="12" :sm="24">
<el-form-item label="合计"> <el-form-item label="合计">
<el-input-number <el-input-number
@ -549,6 +564,7 @@ export default {
count_n_d: 0, // count_n_d: 0, //
count_n_zw: 0, // count_n_zw: 0, //
count_n_tydd: 0, // 8 count_n_tydd: 0, // 8
count_n_qt:0, //
// //
count_n_dl: 0, // count_n_dl: 0, //
count_n_qp: 0, // count_n_qp: 0, //
@ -565,7 +581,7 @@ export default {
count_n_sw: 0, // count_n_sw: 0, //
count_n_bhpcd: 0, // count_n_bhpcd: 0, //
count_n_wq: 0, // 5 count_n_wq: 0, // 5
handle_user: "", handle_user: "",
}, },
mlogb: [], mlogb: [],
@ -692,6 +708,7 @@ export default {
Number(this.form.count_n_sw) + Number(this.form.count_n_sw) +
Number(this.form.count_n_bhpcd) + Number(this.form.count_n_bhpcd) +
Number(this.form.count_n_wq) + Number(this.form.count_n_wq) +
Number(this.form.count_n_qt) +
Number(this.form.count_n_zw); Number(this.form.count_n_zw);
}, },
// //

View File

@ -945,6 +945,21 @@
</el-input-number> </el-input-number>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :md="12" :sm="24">
<el-form-item label="其他">
<el-input-number
v-model="form.count_n_qt"
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-col :md="12" :sm="24">
<el-form-item label="合计"> <el-form-item label="合计">
<el-input-number <el-input-number