hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-11-03 15:43:21 4 + * @LastEditTime: 2022-11-03 18:08:41
5 * @FilePath: /swx/src/pages/myFollowUser/index.vue 5 * @FilePath: /swx/src/pages/myFollowUser/index.vue
6 * @Description: 陪伴的用户页面 6 * @Description: 陪伴的用户页面
7 --> 7 -->
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
61 <view class="list-wrapper" style="margin: 1rem;"> 61 <view class="list-wrapper" style="margin: 1rem;">
62 <view id="navbar-page" style="background-color: white; border-radius: 0.65rem; padding: 1rem;overflow: auto; margin-bottom: 1px;"> 62 <view id="navbar-page" style="background-color: white; border-radius: 0.65rem; padding: 1rem;overflow: auto; margin-bottom: 1px;">
63 <view style="display: inline-block; margin-right: 1rem; line-height: 60rpx;"> 63 <view style="display: inline-block; margin-right: 1rem; line-height: 60rpx;">
64 - <view @tap="toggleColum('activity')" :class="[activated === 1 ? 'bg-gradient' : 'inactivate']" style="font-size: 1rem;">全部义工</view> 64 + <view @tap="toggleColum('activity')" :class="[activated === 1 ? 'bg-gradient' : 'inactivate']" style="font-size: 1rem;">全部用户</view>
65 </view> 65 </view>
66 <view style="display: inline-block; line-height: 60rpx; position: relative;"> 66 <view style="display: inline-block; line-height: 60rpx; position: relative;">
67 <view @tap="toggleColum('join')" :class="[activated === 2 ? 'bg-gradient' : 'inactivate']">待陪伴</view> 67 <view @tap="toggleColum('join')" :class="[activated === 2 ? 'bg-gradient' : 'inactivate']">待陪伴</view>
...@@ -279,7 +279,7 @@ export default { ...@@ -279,7 +279,7 @@ export default {
279 this.show_host_popup = false; 279 this.show_host_popup = false;
280 }, 280 },
281 toggleColum (type) { 281 toggleColum (type) {
282 - if (type === 'activity') { // 全部义工 282 + if (type === 'activity') { // 全部用户
283 this.activated = 1; 283 this.activated = 1;
284 } else { // 待陪伴 284 } else { // 待陪伴
285 this.activated = 2; 285 this.activated = 2;
......