From 185acb9f9f73c1818b9eb2dcb783c30d2174381f Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期四, 16 十一月 2023 15:44:54 +0800 Subject: [PATCH] 优化产品选择组件 --- src/views/productManage/reorderRules/index.vue | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/src/views/productManage/reorderRules/index.vue b/src/views/productManage/reorderRules/index.vue index fad6b56..91de486 100644 --- a/src/views/productManage/reorderRules/index.vue +++ b/src/views/productManage/reorderRules/index.vue @@ -92,7 +92,6 @@ this.pagerOptions.currPage = 1 this.searchTaskMap = query.productId?.length > 0 ? [{ productId: this.queryProductId, title: query.productName }] : [] - console.log(this.searchTaskMap) } this.getData() }, @@ -123,7 +122,6 @@ pageSize: this.pagerOptions.pageSize }).then((res) => { if (res.code === 200) { - console.log(res) const list = res.data.map((item) => { let orderNum = 0 if (parseFloat(item.minInventory) - parseFloat(item.prediction) > 0) { @@ -182,7 +180,6 @@ }, // 鏂板 addProductClick() { - console.log(this.addTitle) this.isSel() if (this.isNoProduct && this.addTitle === "鏂板缓") { this.$refs.tablelistRef.getProductList() @@ -292,7 +289,7 @@ this.tableData.map((item, index) => { if (index === rowIndex) { item.isEdit = false - item.editable = false + item.editable = true item.isOrder = true } else { item.isEdit = true -- Gitblit v1.8.0