hookehuyr

fix 修复我的点击问题

<!--
* @Date: 2022-09-26 16:10:35
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-11-03 16:19:26
* @LastEditTime: 2022-11-03 16:43:56
* @FilePath: /swx/src/components/activity-bar.vue
* @Description: 活动详情页底部导航栏
-->
......@@ -40,6 +40,7 @@
<view class="list" @tap="goTo('list')">报名列表</view>
</view>
<view v-if="userType === 'player'" class="staff-join">
<view class="button" @tap="goTo('volunteer')">义工报名</view>
<view class="button" @tap="goTo('join')">活动报名</view>
</view>
<view v-if="userType === 'volunteer_only'" class="staff-not-join">
......
<!--
* @Date: 2022-09-21 11:59:20
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-11-02 17:01:48
* @LastEditTime: 2022-11-03 17:05:28
* @FilePath: /swx/src/components/navbar.vue
* @Description: 底部导航栏
-->
......@@ -47,7 +47,7 @@ const goTo = (page) => {
})
}
} else { // 我的页面调用
if (page === 'me') {
if (page === 'my') {
return;
} else {
wx.redirectTo({
......