From efad411cf95545c5a6e7f9879e7d9c05ae458a5d Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Tue, 14 Jun 2022 12:03:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=88=91=E7=9A=84=E6=94=B6?= =?UTF-8?q?=E8=97=8F=E6=98=BE=E7=A4=BABUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/src/views/personalCenter/components/Collection.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/front/src/views/personalCenter/components/Collection.vue b/front/src/views/personalCenter/components/Collection.vue index b2cccccc..b8f89db6 100644 --- a/front/src/views/personalCenter/components/Collection.vue +++ b/front/src/views/personalCenter/components/Collection.vue @@ -170,7 +170,10 @@ getTopCategory().then((res) => { console.log('编目一级=============>', res.data) res.data.data.forEach((val) => { - tabList.value.push(val.name) + // tabList.value.push(val.name) + if (val.name == '应用资源' || val.name == '组件服务') { + tabList.value.push(val.name) + } }) }) }