udpate 混料批次编辑

This commit is contained in:
lb
2023-03-15 14:57:54 +08:00
parent 977dbb7c41
commit a94d5c2715
6 changed files with 30 additions and 26 deletions

View File

@@ -451,10 +451,11 @@ export default {
if (this.attachListQueryExtra && this.listQueryExtra.length) {
this.listQueryExtra.forEach((item) => {
let found = item[this.attachListQueryExtra];
if (found !== null && found !== undefined) extraParams = found;
if (found !== null && found !== undefined) extraParams = item;
});
}
this.$nextTick(() => {
console.log(`[edit-dialog] extraParams: ${extraParams}`)
this.$refs["edit-dialog"].init(/** some args... */ row_id, detail_mode, tag_info, extraParams);
});
},