liveActivityList.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view class="activityList">
  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: 2
  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: 0,
  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. // onShow() {
  70. // this.getData()
  71. // }
  72. onLoad() {
  73. this.getData()
  74. }
  75. }
  76. </script>
  77. <style lang="scss">
  78. .activityList {
  79. .list {
  80. // height: 100vh;
  81. // background-color: rebeccapurple;
  82. }
  83. .bottom {
  84. margin: 30rpx auto;
  85. text-align: center;
  86. }
  87. .loading{
  88. height: 50rpx;
  89. text-align: center;
  90. padding-top: 20rpx;
  91. padding-bottom: 100rpx;
  92. font-size: 26rpx;
  93. color:#888;
  94. line-height: 2em;
  95. }
  96. }
  97. </style>