fix:mlogb变动更新改动
This commit is contained in:
parent
49c3fdaae3
commit
c1a4150080
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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) => {});
|
||||||
},
|
},
|
||||||
//设置过滤项
|
//设置过滤项
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue