hookehuyr

fix

......@@ -97,6 +97,9 @@ export default {
this.sign_count = data.sign_count ? data.sign_count : 0;
this.volunteer_count = data.volunteer_count ? data.volunteer_count : 0;
this.page = this.page + 1;
this.activity_list.forEach(item => {
item.server_time = data.server_time
});
}
},
onHide () { // 离开当前页面
......@@ -166,6 +169,9 @@ export default {
this.volunteer_count = data.volunteer_count;
this.page = this.page + 1;
this.flag = true;
this.activity_list.forEach(item => {
item.server_time = data.server_time
});
} else {
Toast('没有数据')
}
......