hookehuyr

fix member_count字段改成player_count

<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-10-31 13:10:41
* @LastEditTime: 2022-10-31 15:17:17
* @FilePath: /swx/src/pages/myCreateActivity/index.vue
* @Description: 创建的活动页面
-->
......@@ -47,7 +47,7 @@
</view>
</view>
<view class="sign">
<view><text style="font-size: 1.25rem;">{{ member_count }}</text>人</view>
<view><text style="font-size: 1.25rem;">{{ player_count }}</text>人</view>
<view>
<van-icon :name="icon_sign" size="1.25rem" color="" style="vertical-align: sub;" />
<text style="font-size: 0.9rem; color: #999999;">用户总数</text>
......@@ -162,7 +162,7 @@ export default {
this.activity_list = data.activity_list;
this.activity_count = data.activity_count ? data.activity_count : 0;
this.volunteer_count = data.volunteer_count ? data.volunteer_count : 0;
this.member_count = data.member_count ? data.member_count : 0;
this.player_count = data.player_count ? data.player_count : 0;
this.server_time = this.formatDate(data.server_time);
this.page = this.page + 1;
}
......@@ -191,7 +191,7 @@ export default {
scrollStyle: { height: '1000rpx' },
status: '',
activity_count: '',
member_count: '',
player_count: '',
volunteer_count: '',
show_status_popup: false,
status_type: '',
......@@ -243,7 +243,7 @@ export default {
this.activity_list = this.activity_list.concat(data.activity_list);
this.activity_count = data.activity_count ? data.activity_count : 0;
this.volunteer_count = data.volunteer_count ? data.volunteer_count : 0;
this.member_count = data.member_count ? data.member_count : 0;
this.player_count = data.player_count ? data.player_count : 0;
this.page = this.page + 1;
this.flag = true;
} else {
......
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-10-28 15:22:02
* @LastEditTime: 2022-10-31 15:19:15
* @FilePath: /swx/src/pages/myFollowUser/index.vue
* @Description: 陪伴的用户页面
-->
......@@ -44,7 +44,7 @@
</view>
</view>
<view class="job">
<text style="font-size: 1.25rem;">{{ member_count }}</text>人
<text style="font-size: 1.25rem;">{{ player_count }}</text>人
<view>
<text style="font-size: 0.9rem; color: #999999;">用户总数</text>
</view>
......@@ -186,7 +186,7 @@ export default {
this.member_list = data.member_list;
this.new_count = data.new_count;
this.no_partner_note_count = data.no_partner_note_count;
this.member_count = data.member_count;
this.player_count = data.player_count;
this.note_count = data.note_count;
this.page = this.page + 1;
this.flag = true;
......@@ -218,7 +218,7 @@ export default {
search: '',
new_count: 0,
no_partner_note_count: 0,
member_count: 0,
player_count: 0,
note_count: 0,
show_host_popup: false,
defaultHostIndex: 0,
......@@ -253,14 +253,14 @@ export default {
this.member_list = this.member_list.concat(data.member_list);
this.new_count = data.new_count;
this.no_partner_note_count = data.no_partner_note_count;
this.member_count = data.member_count;
this.player_count = data.player_count;
this.note_count = data.note_count;
this.page = this.page + 1;
this.flag = true;
} else {
this.new_count = data.new_count;
this.no_partner_note_count = data.no_partner_note_count;
this.member_count = data.member_count;
this.player_count = data.player_count;
this.note_count = data.note_count;
Toast('没有数据')
}
......