From 1888b426ff2b6a529f5fdef0f0453dadef71824b Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期三, 17 四月 2024 10:17:38 +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