fix:mlogb变动更新改动

This commit is contained in:
shijing 2025-01-10 15:50:57 +08:00
parent 49c3fdaae3
commit c1a4150080
2 changed files with 12 additions and 2 deletions

View File

@ -348,7 +348,7 @@
ref="checkDialog" ref="checkDialog"
:material="materialOut" :material="materialOut"
@success="handleCheckSuccess" @success="handleCheckSuccess"
@closed="dialog.check = false" @closed="checkDialogClose"
> >
</check-dialog> </check-dialog>
<scheck-dialog <scheck-dialog
@ -360,7 +360,7 @@
:handle_user="handle_user" :handle_user="handle_user"
:handle_date="handle_date" :handle_date="handle_date"
@success="handlesCheckSuccess" @success="handlesCheckSuccess"
@closed="dialog.check_single = false" @closed="scheckClose"
> >
</scheck-dialog> </scheck-dialog>
<edit-dialog <edit-dialog
@ -651,6 +651,14 @@ export default {
this.selectionFilters = filters; this.selectionFilters = filters;
this.setFiltersVisible = true; this.setFiltersVisible = true;
}, },
scheckClose(){
this.dialog.check_single = false;
this.$refs.tableOut.refresh();
},
checkDialogClose(){
this.dialog.check = false;
this.$refs.tableOut.refresh();
},
handlePrint(){ handlePrint(){
let that = this; let that = this;
that.printVisible = true; that.printVisible = true;

View File

@ -155,6 +155,7 @@ export default {
that.mlogbInOptions = res.filter((item)=>{ that.mlogbInOptions = res.filter((item)=>{
return item.parent==null; return item.parent==null;
}) })
that.form.parent = that.mlogbInOptions[0].id;
} }
}) })
}, },
@ -208,6 +209,7 @@ export default {
that.form.batch = ''; that.form.batch = '';
that.form.parent = ''; that.form.parent = '';
that.form.count_use = 0; that.form.count_use = 0;
that.getParentList();
}).catch((err) => {}); }).catch((err) => {});
}, },
// //