This commit is contained in:
shijing 2023-12-21 13:13:09 +08:00
parent 5b0ed75718
commit a629a3cf2c
2 changed files with 21 additions and 40 deletions

View File

@ -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;
});
}
}
})

View File

@ -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>