role
This commit is contained in:
parent
5b0ed75718
commit
a629a3cf2c
|
@ -169,18 +169,21 @@
|
|||
this.isSaveing = true;
|
||||
let res;
|
||||
if(this.type==='add'){
|
||||
res = this.$API.system.role.create.req(that.addForm);
|
||||
this.$API.system.role.create.req(that.addForm).then(res=>{
|
||||
this.isSaveing = false;
|
||||
this.limitedVisible = false;
|
||||
this.$refs.table.refresh();
|
||||
}).catch(err=>{
|
||||
this.isSaveing = false;
|
||||
});
|
||||
}else{
|
||||
res = this.$API.system.role.update.req(that.addForm.id,that.addForm);
|
||||
}
|
||||
console.log(res);
|
||||
debugger;
|
||||
if(res.err_msg){
|
||||
this.$message.error(res.err_msg);
|
||||
}else{
|
||||
this.isSaveing = false;
|
||||
this.limitedVisible = false;
|
||||
this.$refs.table.refresh();
|
||||
this.$API.system.role.update.req(that.addForm.id,that.addForm).then(res=>{
|
||||
this.isSaveing = false;
|
||||
this.limitedVisible = false;
|
||||
this.$refs.table.refresh();
|
||||
}).catch(err=>{
|
||||
this.isSaveing = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1126,15 +1126,6 @@ export default {
|
|||
};
|
||||
},
|
||||
mounted() {
|
||||
console.log('brothersList')
|
||||
console.log(this.brothersList)
|
||||
this.getMaterial();
|
||||
// this.getMgroupList();
|
||||
this.getUserList();
|
||||
this.getEquipment();
|
||||
this.getShiftOptions();
|
||||
this.getRouteOptions();
|
||||
|
||||
let date = new Date();
|
||||
let year = date.getFullYear();
|
||||
let month = date.getMonth() + 1;
|
||||
|
@ -1144,6 +1135,12 @@ export default {
|
|||
this.form.mtask = this.mtask;
|
||||
this.form.mgroup = this.mgroup;
|
||||
this.form.handle_date = year + "-" + month + "-" + day;
|
||||
this.getMaterial();
|
||||
// this.getMgroupList();
|
||||
this.getUserList();
|
||||
this.getEquipment();
|
||||
this.getShiftOptions();
|
||||
this.getRouteOptions();
|
||||
this.getWorkShopMaterial();
|
||||
if (this.activeType == "10车间") {
|
||||
let mlogb = [];
|
||||
|
@ -1265,13 +1262,6 @@ export default {
|
|||
});
|
||||
}
|
||||
},
|
||||
//获取车间物料
|
||||
// getMaterial(){
|
||||
// let that = this;
|
||||
// this.$API.wpm.wmaterial.list.req({belong_dept_name:'8车间',page:0}).then(res=>{
|
||||
// that.materialOptions = res;
|
||||
// });
|
||||
// },
|
||||
getWorkShopMaterial() {
|
||||
let that = this;
|
||||
if(this.form.material_in){
|
||||
|
@ -1355,7 +1345,7 @@ export default {
|
|||
});
|
||||
this.form.count_ok = ok_number;
|
||||
} else if (this.activeType == "退火") {
|
||||
this.form.mgroup = "3428194648706011136";
|
||||
// this.form.mgroup = "3428194648706011136";
|
||||
this.form.count_notok =
|
||||
this.form.count_n_wq +
|
||||
this.form.count_n_tw +
|
||||
|
@ -1463,18 +1453,6 @@ export default {
|
|||
}
|
||||
}
|
||||
},
|
||||
//选择
|
||||
// wmaterialInChange(val) {
|
||||
// console.log(this.form)
|
||||
// console.log(this.wmaterialOptions);
|
||||
// debugger;
|
||||
// for(let i=0;i<this.wmaterialOptions.length;i++){
|
||||
// if(this.wmaterialOptions[i].id==val){
|
||||
// this.form.batch = data[0].batch;
|
||||
// }
|
||||
// }
|
||||
// console.log(this.form)
|
||||
// },
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue