From b226e777f7068a3549eb8c3384fbe3b7cabe07df Mon Sep 17 00:00:00 2001 From: guoyue Date: Sat, 22 Oct 2022 14:29:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A5=BF=E6=B5=B7=E5=B2=B8=EF=BC=9A=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=88=91=E7=9A=84=E5=8F=91=E5=B8=83=E4=BE=A7=E8=BE=B9?= =?UTF-8?q?=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/personalCenter/components/asideMenu.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/front/src/views/personalCenter/components/asideMenu.vue b/front/src/views/personalCenter/components/asideMenu.vue index d6a6a822..9d05d2cf 100644 --- a/front/src/views/personalCenter/components/asideMenu.vue +++ b/front/src/views/personalCenter/components/asideMenu.vue @@ -33,15 +33,16 @@ export default defineComponent({ imgActive: require('@/assets/personalCenter/applyactive.png'), key: 'apply', } + const push = { + title: '我的发布', + img: require('@/assets/personalCenter/push.png'), + imgActive: require('@/assets/personalCenter/pushactive.png'), + key: 'push', + } let menuList = [ car, - { - title: '我的发布', - img: require('@/assets/personalCenter/push.png'), - imgActive: require('@/assets/personalCenter/pushactive.png'), - key: 'push', - }, apply, + push, { title: '我的收藏', img: require('@/assets/personalCenter/collect.png'), @@ -69,7 +70,7 @@ export default defineComponent({ ] // 西海岸 if (itShowXiHaiAn) { - menuList = [car, apply] + menuList = [car, apply, push] } const selectedKeys = ref(['apply'])