Browse Source

2026-01-13

过站采集页面的机台工作台的【材料上机】【换料】对话框在【确定】后要打开【过程检验】对话框
master
fengyuan_yang 4 days ago
parent
commit
5745a20647
  1. 2
      src/views/modules/yieldReport/com_produce_material.vue
  2. 6
      src/views/modules/yieldReport/com_produce_report_normal.vue
  3. 4
      src/views/modules/yieldReport/com_replace_material.vue

2
src/views/modules/yieldReport/com_produce_material.vue

@ -418,6 +418,8 @@ export default {
this.pageData.bomItemNo = -1; this.pageData.bomItemNo = -1;
this.bomList = []; this.bomList = [];
this.timeArray = []; this.timeArray = [];
//
this.$emit('openProcessInspection');
} }
}); });
}, },

6
src/views/modules/yieldReport/com_produce_report_normal.vue

@ -683,7 +683,8 @@
<!-- 生产过程的材料组件 --> <!-- 生产过程的材料组件 -->
<comProduceMaterial ref="comProduceMaterial" :close-on-click-modal="false" <comProduceMaterial ref="comProduceMaterial" :close-on-click-modal="false"
:visible.sync="showMaterialFlag" @refreshPageData="refreshPageData">
:visible.sync="showMaterialFlag" @refreshPageData="refreshPageData"
@openProcessInspection="openProcessInspectionModal">
</comProduceMaterial> </comProduceMaterial>
<comProduceKeyMaterial ref="comProduceKeyMaterial" :close-on-click-modal="false" <comProduceKeyMaterial ref="comProduceKeyMaterial" :close-on-click-modal="false"
@ -692,7 +693,8 @@
<!-- 换料组件 --> <!-- 换料组件 -->
<comReplaceMaterial ref="comReplaceMaterial" :close-on-click-modal="false" <comReplaceMaterial ref="comReplaceMaterial" :close-on-click-modal="false"
:visible.sync="showReplaceMaterialFlag" @refreshPageData="refreshPageData">
:visible.sync="showReplaceMaterialFlag" @refreshPageData="refreshPageData"
@openProcessInspection="openProcessInspectionModal">
</comReplaceMaterial> </comReplaceMaterial>

4
src/views/modules/yieldReport/com_replace_material.vue

@ -464,8 +464,10 @@ export default {
}else{ }else{
// //
this.$message.success(data.msg); this.$message.success(data.msg);
//
//
this.closeDialog(); this.closeDialog();
//
this.$emit('openProcessInspection');
} }
}); });
}, },

Loading…
Cancel
Save