From f45b159864ad79f326884ab3644269ef9eb7ee9d Mon Sep 17 00:00:00 2001 From: zuozhengqing <a13193816592@163.com> Date: 星期四, 04 一月 2024 11:49:16 +0800 Subject: [PATCH] 出入库bug修复,调整仓库位置字段绑定,编辑时列表绑定源位置 --- src/components/makepager/CommonFormTableView.vue | 11 +++-------- 1 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/components/makepager/CommonFormTableView.vue b/src/components/makepager/CommonFormTableView.vue index 26afa06..9437f52 100644 --- a/src/components/makepager/CommonFormTableView.vue +++ b/src/components/makepager/CommonFormTableView.vue @@ -643,19 +643,14 @@ // 璁剧疆瀛愪綅缃� async setLocationList(jointName) { await getLocationList({ - // keyword: "", jointName: jointName, page: 1, pageSize: 100 }).then((res) => { if (res.code === 200) { - const list = res.data ? res.data : [] - this.selSonLocationOptions = list - // if (this.isReorder) { - // this.locacionName = list[0]?.name - // this.locacionId = list[0]?.id - // this.$emit("selLocationClick", list[0], "locacionName") - // } + // const list = res.data ? res.data : [] + this.selSonLocationOptions = res.data + console.log(this.selSonLocationOptions,"鐪嬬湅鍙樹簡娌�") } }) }, -- Gitblit v1.8.0