Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
swx_weapp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2022-10-31 15:19:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
90d43accde0f3c326e5cc6565d3e943f48924e9f
90d43acc
1 parent
c6fa3df5
fix member_count字段改成player_count
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
src/pages/myCreateActivity/index.vue
src/pages/myFollowUser/index.vue
src/pages/myCreateActivity/index.vue
View file @
90d43ac
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-10-31 1
3:10:41
* @LastEditTime: 2022-10-31 1
5: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;">{{
memb
er_count }}</text>人</view>
<view><text style="font-size: 1.25rem;">{{
play
er_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.memb
er_count : 0;
this.
player_count = data.player_count ? data.play
er_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: '',
memb
er_count: '',
play
er_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.memb
er_count : 0;
this.
player_count = data.player_count ? data.play
er_count : 0;
this.page = this.page + 1;
this.flag = true;
} else {
...
...
src/pages/myFollowUser/index.vue
View file @
90d43ac
<!--
* @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;">{{
memb
er_count }}</text>人
<text style="font-size: 1.25rem;">{{
play
er_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.memb
er_count;
this.
player_count = data.play
er_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,
memb
er_count: 0,
play
er_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.memb
er_count;
this.
player_count = data.play
er_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.memb
er_count;
this.
player_count = data.play
er_count;
this.note_count = data.note_count;
Toast('没有数据')
}
...
...
Please
register
or
login
to post a comment