fix玻纤未完成合批修整

This commit is contained in:
shijing 2025-11-17 16:48:35 +08:00
parent 82b6d7ced1
commit a2acf33d3f
2 changed files with 8 additions and 1 deletions

View File

@ -245,6 +245,10 @@ export default {
type: String, type: String,
default: "", default: "",
}, },
tag: {
type: String,
default: "done",
},
}, },
components: { components: {
scanDialog scanDialog
@ -444,7 +448,7 @@ export default {
let that = this; let that = this;
var req = { var req = {
page: 0, page: 0,
tag:'done', tag:that.tag,
mgroupx:that.mgroupId mgroupx:that.mgroupId
}; };
if(that.type!==50){ if(that.type!==50){

View File

@ -243,6 +243,7 @@
v-if="dialog.scrap" v-if="dialog.scrap"
ref="scrapDialog" ref="scrapDialog"
:type="type" :type="type"
:tag="tag"
:mgroupName="mgroup_name" :mgroupName="mgroup_name"
:mgroupId="mgroupId" :mgroupId="mgroupId"
@success="handleScrapSuccess" @success="handleScrapSuccess"
@ -380,6 +381,7 @@ export default {
page:0, page:0,
wm: "" wm: ""
}, },
tag:"",
wmId:"", wmId:"",
route_code:"", route_code:"",
showBatch: "", showBatch: "",
@ -501,6 +503,7 @@ export default {
}) })
} }
this.type = 10; this.type = 10;
this.tag = 'todo';
this.dialog.scrap = true; this.dialog.scrap = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.scrapDialog.open("add",handoverb,30); this.$refs.scrapDialog.open("add",handoverb,30);