fix:禅道81

This commit is contained in:
shijing 2025-08-26 14:32:24 +08:00
parent c54942ea58
commit a4c15ba6d7
1 changed files with 5 additions and 6 deletions

View File

@ -22,12 +22,9 @@
<el-descriptions-item label="工段名称">{{
mlogItem.mgroup_name
}}</el-descriptions-item>
<el-descriptions-item label="生产设备">{{
<el-descriptions-item label="生产设备" v-if="mlogItem.equipment_name!==null">{{
mlogItem.equipment_name
}}</el-descriptions-item>
<el-descriptions-item label="预计工时">{{
mlogItem.hour_work
}}</el-descriptions-item>
<el-descriptions-item label="部门/车间">{{
mlogItem.belong_dept_name
}}</el-descriptions-item>
@ -598,9 +595,12 @@ export default {
that.$API.wpm.mlog.item.req(that.mlogId).then((res) => {
that.mlogItem = res;
that.checkTableShow = true;
that.isSubmit = res.submit_time==null?false:true;
if(that.processType=='10'&&that.mlogItem.material_out_&&that.mlogItem.material_out_.tracking==20){
that.getMlogbw();
that.getdefects(that.mlogItem.qct);
if(that.mlogItem.qct!==null){
that.getdefects(that.mlogItem.qct);
}
}
if(res.route!==null){
that.hasRoute = true;
@ -916,7 +916,6 @@ export default {
let that = this;
that.mlogb = row.id;
that.wm = row.wm_in;
that.isSubmit = that.mlogItem.submit_time == null ? false : true;
that.batchNumber = row.batch;
that.material_in = row.material_in;
that.material_out = row.material_out;