From a6310d5db0b42845e2ad31cc0d84517ef1e21fad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Dchenxuelian=E2=80=9C?= <“chenxuelian@cjiedata.com”> Date: Sat, 13 May 2023 16:16:59 +0800 Subject: [PATCH] =?UTF-8?q?tag=20=20=E5=8F=8C=E5=87=BB=E5=8F=96=E6=B6=88?= =?UTF-8?q?=E9=80=89=E4=B8=AD=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../goods-category-search/category-index.vue | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/packageSearch/goods-category-search/category-index.vue b/packageSearch/goods-category-search/category-index.vue index e084dc3..e5698c3 100644 --- a/packageSearch/goods-category-search/category-index.vue +++ b/packageSearch/goods-category-search/category-index.vue @@ -178,7 +178,7 @@ goodsParam: { sortType: 0, cateId: 0, - tagIds: 0, + // tagIds: 0, pageSize: 10, pageNum: 1 }, @@ -194,7 +194,7 @@ menuHeight: 0, // 左边菜单的高度 menuItemHeight: 0, // 左边菜单item的高度 tabCurrent: 0, //分类详情 上架时间, // 左边菜单item的高度 - tagCurrent: 0, //分类详情 上架时间 + tagCurrent: null, //分类详情 上架时间 imgUrl: '', isAllData: false } @@ -252,13 +252,17 @@ }); this.selectedCategory = index this.tabCurrent = 0 - this.tagCurrent = 0 + this.tagCurrent = null this.menuCurrent = 0 this.getSeconedCategoryList() this.showMask = false }, changeSelectedTag(index) { - this.tagCurrent = index + if(this.tagCurrent === index) { + this.tagCurrent = null + } else { + this.tagCurrent = index + } this.featureMask = false this.getGoodsList(true) }, @@ -361,7 +365,7 @@ ...this.goodsParam, sortType: this.tabCurrent + 1, cateId: this.tabbar.length ? this.tabbar[this.menuCurrent].id : 0, - title: this.tagsList.length ? this.tagsList[this.tagCurrent].name : 0 + title: this.tagsList.length && (this.tagCurrent || this.tagCurrent === 0) ? this.tagsList[this.tagCurrent].name : '' // tagIds: this.tagsList.length ? this.tagsList[this.tagCurrent].id : 0 } if (firstPage) {