activityList_2.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <view class="activeList">
  3. <statusBar :item="navbarData"></statusBar>
  4. <!-- <teaching-case :item="teaData"></teaching-case> -->
  5. <!-- <view class="" style="padding-bottom: 50rpx;">
  6. <teaching-case :activeList="activeList" :indexId="index" :item="teaData"></teaching-case>
  7. </view> -->
  8. <scroll-view class="list" scroll-y="true">
  9. <view>
  10. <teaching-case :activeList="activeList" :indexId="index" :item="teaData"></teaching-case>
  11. </view>
  12. </scroll-view>
  13. <view class="loading">
  14. <view v-if="newsLoading==1">数据加载中...</view>
  15. <view v-if="newsLoading==2">没有更多了~~</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. navbarData: {
  24. title: '精选活动列表',
  25. btn: 1
  26. },
  27. teaData: {
  28. btn: 1,
  29. btn_2: 1,
  30. },
  31. // 渲染数据
  32. activeList: [],
  33. // 触底加载动画提示
  34. newsLoading: 1, //0默认值 1加载中 2没有更多了
  35. currentPage: 1,
  36. };
  37. },
  38. methods: {
  39. // 获取页面数据
  40. getData() {
  41. let data = {
  42. openid: uni.getStorageSync('oId'),
  43. ty: 2,
  44. page: this.currentPage, //下拉获取更多的备用字段
  45. lim: 15 //一次获取多少数据
  46. }
  47. this.$request('/selectActivity', "POST", data).then(res => {
  48. console.log(res[0]);
  49. if (!res[0].length) {
  50. this.newsLoading = 2
  51. } else {
  52. this.newsLoading = 0
  53. }
  54. this.activeList=[...this.activeList,...res[0]]
  55. // this.activeList = res[0]
  56. })
  57. },
  58. },
  59. // 触底加载更多
  60. onReachBottom() {
  61. console.log(111);
  62. if (this.newsLoading == 2) {
  63. return
  64. }
  65. this.newsLoading = 1
  66. this.currentPage++
  67. setTimeout(this.getData,2000)
  68. },
  69. onLoad() {
  70. // 一进页面就加载数据
  71. this.getData()
  72. }
  73. }
  74. </script>
  75. <style lang="scss">
  76. .activeList {
  77. .loading{
  78. height: 50rpx;
  79. text-align: center;
  80. padding-top: 20rpx;
  81. padding-bottom: 100rpx;
  82. font-size: 26rpx;
  83. color:#888;
  84. line-height: 2em;
  85. }
  86. }
  87. </style>