From 0cb7d5f5e8eee0beacf5d58184cfd0eeab091136 Mon Sep 17 00:00:00 2001 From: linxi Date: Tue, 27 Aug 2024 10:37:42 +0800 Subject: [PATCH] =?UTF-8?q?Fix(=E6=88=91=E7=9A=84=E6=94=B6=E8=97=8F)?= =?UTF-8?q?=EF=BC=9A=E6=88=91=E7=9A=84=E6=94=B6=E8=97=8F--=E5=8D=83?= =?UTF-8?q?=E5=8E=BF=E5=BA=97=E9=93=BA=EF=BC=8C=E6=9C=89=E5=A4=9A=E4=B8=AA?= =?UTF-8?q?=E5=BA=97=E9=93=BA=E6=97=B6=EF=BC=8C=E9=80=89=E6=8B=A9=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=9F=90=E4=B8=AA=E5=BA=97=E9=93=BA=EF=BC=8C=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=90=8E=E4=BC=9A=E6=98=BE=E7=A4=BA=E2=80=9Cundefined?= =?UTF-8?q?=E2=80=9D=E6=88=96=E2=80=9D=E6=82=A8=E8=BF=98=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=94=B6=E8=97=8F=E2=80=9C=EF=BC=8C=E5=88=B7=E6=96=B0=E5=90=8E?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=AD=A3=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_user/views/myFavorite.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkg_user/views/myFavorite.vue b/pkg_user/views/myFavorite.vue index ba5c552..dfe2d9f 100644 --- a/pkg_user/views/myFavorite.vue +++ b/pkg_user/views/myFavorite.vue @@ -456,6 +456,7 @@ export default { const res = await removeFavorite(ids) if (res.success) { _this.isAll = false + _this.page = 1 _this.fetchData() _this.removeAfter() } @@ -463,6 +464,11 @@ export default { } }) }, + computedIsManage(arr) { + if(this.isManage && arr.length === 0) { + this.isManage = false + } + }, removeAfter() { switch (this.tabsIndex) { case 0: @@ -490,6 +496,7 @@ export default { item.state = false _this.productList.push(item) }) + _this.computedIsManage(_this.productList) _this.page++ } }, @@ -505,6 +512,7 @@ export default { item.state = false _this.storeList.push(item) }) + _this.computedIsManage(_this.storeList) _this.page++ } }, @@ -519,6 +527,7 @@ export default { item.state = false _this.videoList.push(item) }) + _this.computedIsManage(_this.videoList) _this.page++ } }, @@ -533,6 +542,7 @@ export default { item.state = false _this.countyFamousList.push(item) }) + _this.computedIsManage(_this.countyFamousList) _this.page++ } },