fix:mlogb变动更新改动
This commit is contained in:
parent
49c3fdaae3
commit
c1a4150080
|
@ -348,7 +348,7 @@
|
|||
ref="checkDialog"
|
||||
:material="materialOut"
|
||||
@success="handleCheckSuccess"
|
||||
@closed="dialog.check = false"
|
||||
@closed="checkDialogClose"
|
||||
>
|
||||
</check-dialog>
|
||||
<scheck-dialog
|
||||
|
@ -360,7 +360,7 @@
|
|||
:handle_user="handle_user"
|
||||
:handle_date="handle_date"
|
||||
@success="handlesCheckSuccess"
|
||||
@closed="dialog.check_single = false"
|
||||
@closed="scheckClose"
|
||||
>
|
||||
</scheck-dialog>
|
||||
<edit-dialog
|
||||
|
@ -651,6 +651,14 @@ export default {
|
|||
this.selectionFilters = filters;
|
||||
this.setFiltersVisible = true;
|
||||
},
|
||||
scheckClose(){
|
||||
this.dialog.check_single = false;
|
||||
this.$refs.tableOut.refresh();
|
||||
},
|
||||
checkDialogClose(){
|
||||
this.dialog.check = false;
|
||||
this.$refs.tableOut.refresh();
|
||||
},
|
||||
handlePrint(){
|
||||
let that = this;
|
||||
that.printVisible = true;
|
||||
|
|
|
@ -155,6 +155,7 @@ export default {
|
|||
that.mlogbInOptions = res.filter((item)=>{
|
||||
return item.parent==null;
|
||||
})
|
||||
that.form.parent = that.mlogbInOptions[0].id;
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -208,6 +209,7 @@ export default {
|
|||
that.form.batch = '';
|
||||
that.form.parent = '';
|
||||
that.form.count_use = 0;
|
||||
that.getParentList();
|
||||
}).catch((err) => {});
|
||||
},
|
||||
//设置过滤项
|
||||
|
|
Loading…
Reference in New Issue