Showing
1 changed file
with
6 additions
and
0 deletions
| ... | @@ -97,6 +97,9 @@ export default { | ... | @@ -97,6 +97,9 @@ export default { |
| 97 | this.sign_count = data.sign_count ? data.sign_count : 0; | 97 | this.sign_count = data.sign_count ? data.sign_count : 0; |
| 98 | this.volunteer_count = data.volunteer_count ? data.volunteer_count : 0; | 98 | this.volunteer_count = data.volunteer_count ? data.volunteer_count : 0; |
| 99 | this.page = this.page + 1; | 99 | this.page = this.page + 1; |
| 100 | + this.activity_list.forEach(item => { | ||
| 101 | + item.server_time = data.server_time | ||
| 102 | + }); | ||
| 100 | } | 103 | } |
| 101 | }, | 104 | }, |
| 102 | onHide () { // 离开当前页面 | 105 | onHide () { // 离开当前页面 |
| ... | @@ -166,6 +169,9 @@ export default { | ... | @@ -166,6 +169,9 @@ export default { |
| 166 | this.volunteer_count = data.volunteer_count; | 169 | this.volunteer_count = data.volunteer_count; |
| 167 | this.page = this.page + 1; | 170 | this.page = this.page + 1; |
| 168 | this.flag = true; | 171 | this.flag = true; |
| 172 | + this.activity_list.forEach(item => { | ||
| 173 | + item.server_time = data.server_time | ||
| 174 | + }); | ||
| 169 | } else { | 175 | } else { |
| 170 | Toast('没有数据') | 176 | Toast('没有数据') |
| 171 | } | 177 | } | ... | ... |
-
Please register or login to post a comment