From 5e5291e7c7978e4905b1249b7e562d689d89586d Mon Sep 17 00:00:00 2001 From: zuozhengqing <a13193816592@163.com> Date: 星期二, 02 一月 2024 11:29:47 +0800 Subject: [PATCH] 出入库产品列表添加从..出库,到..位置 --- src/components/makepager/CommonFormTableView.vue | 28 ++++++++++++++++++++++++++-- 1 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/components/makepager/CommonFormTableView.vue b/src/components/makepager/CommonFormTableView.vue index fae8e86..26afa06 100644 --- a/src/components/makepager/CommonFormTableView.vue +++ b/src/components/makepager/CommonFormTableView.vue @@ -285,6 +285,25 @@ </template> </div> </el-form-item> + <!-- 浠� --> + <el-form-item v-else-if="item.formLocation" label=" " :prop="'tableData.' + scope.$index + '.' + item.prop"> + <div class="custom-name"> + <span v-if="scope.row.isEdit || scope.row.editable">{{ scope.row.formLocation }}</span> + <el-autocomplete + v-else + style="width: 100%" + v-model="scope.row.productCategory" + @focus="productTypeFocus" + :fetch-suggestions=" + (queryString, callback) => { + querySearchAsync(queryString, callback, 'formLocation') + } + " + value-key="name" + @select="handleSelectClient('formLocation', $event)" + ></el-autocomplete> + </div> + </el-form-item> <!-- 浜у搧绫诲埆 --> <el-form-item v-else-if="item.productType" @@ -369,7 +388,7 @@ <slot name="tableButton" /> </el-table> </el-form> - <div v-if="!detailEnter && !isinventory && !islistingrules && !isReorder" style="margin: 10px"> + <div v-if="!detailEnter && !isinventory && !isReorder" style="margin: 10px"> <el-button size="small" type="primary" @click="add">娣诲姞鏄庣粏琛�</el-button> <!-- <el-button size="small" type="primary" @click="empty">娓呯┖</el-button> --> </div> @@ -458,7 +477,8 @@ locacionId: 0, productName: "", productId: "", - initialPosition: "" + initialPosition: "", + formLocationList:[], } }, created() { @@ -497,6 +517,7 @@ } }) }, + // 涓嬫媺鎼滅储 async handleSelectClient(value, item) { this.$emit("selProductClick", value, item) if (value === "product") { @@ -527,6 +548,8 @@ restaurants = this.productNameOptions } else if (value === "productType") { restaurants = this.productTypeNameOptions + }else if(value==="formLocation"){ + restaurants = this.selLocationOptions } var results = queryString ? restaurants.filter(this.createStateFilter(queryString, value)) : restaurants cb(results) @@ -573,6 +596,7 @@ } }) }, + // 浣嶇疆 async getLocationList() { this.locacionName = "" -- Gitblit v1.8.0