activityList.vue 1.7 KB

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