diff --git a/src/views/wpm_bx/handover_form.vue b/src/views/wpm_bx/handover_form.vue
index 7a06c1f2..181057d6 100644
--- a/src/views/wpm_bx/handover_form.vue
+++ b/src/views/wpm_bx/handover_form.vue
@@ -556,6 +556,7 @@ export default {
let that = this;
that.materialOptions = [];
var req = {
+ tag:that.tag,
mgroupx: that.mgroupId,
page: 0
};
diff --git a/src/views/wpm_bx/inmIn.vue b/src/views/wpm_bx/inmIn.vue
index cad106ce..1731f7ab 100644
--- a/src/views/wpm_bx/inmIn.vue
+++ b/src/views/wpm_bx/inmIn.vue
@@ -4,7 +4,7 @@
领料
来料
- 报废
+ 报废
合批
@@ -512,9 +512,10 @@ export default {
}
},
//添加报废
- table_add(type) {
+ table_add(type,tag) {
this.dialog.scrap = true;
this.type = type;
+ this.tag = tag;
this.$nextTick(() => {
this.$refs.scrapDialog.open("add");
});
diff --git a/src/views/wpm_bx/inmOut.vue b/src/views/wpm_bx/inmOut.vue
index c36ca657..81270eac 100644
--- a/src/views/wpm_bx/inmOut.vue
+++ b/src/views/wpm_bx/inmOut.vue
@@ -3,7 +3,7 @@
领料
- 报废
+ 报废
合批
入库
@@ -255,6 +255,7 @@
v-if="dialog.scrap"
ref="scrapDialog"
:type="type"
+ :tag="tag"
:wmItem="wmItem"
:mgroupName="mgroup_name"
:mgroupId="mgroupId"
@@ -501,9 +502,10 @@ export default {
}
},
//添加报废
- table_add(type) {
+ table_add(type,tag) {
this.dialog.scrap = true;
this.type = type;
+ this.tag = tag;
this.$nextTick(() => {
this.$refs.scrapDialog.open("add");
});