teachingList.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="teachingList">
  3. <statusBar :item="navbarData"></statusBar>
  4. <!-- 消息提示 -->
  5. <msgPop></msgPop>
  6. <view class="list">
  7. <scroll-view style="height: 100%;" scroll-y="true" refresher-enabled='true' :refresher-triggered="trigger"
  8. @refresherrefresh='pulling' @scrolltolower="lower">
  9. <view>
  10. <listBlock1 ref="listBlock1" :classList='classList'></listBlock1>
  11. </view>
  12. <view class="loading">
  13. <view v-if="Loading==1">数据加载中...</view>
  14. <view v-if="Loading==2">没有更多了~~</view>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. navbarData: {
  25. title: '推荐列表',
  26. btn: 1
  27. },
  28. // 控制刷新
  29. trigger: false,
  30. // 渲染数据
  31. classList: [],
  32. // 触底加载动画提示
  33. Loading: 0, //0默认值 1加载中 2没有更多了
  34. currentPage: 1,
  35. };
  36. },
  37. onUnload() {
  38. this.$store.dispatch('asyncDelAll')
  39. },
  40. methods: {
  41. // 资源库下拉刷新
  42. pulling() {
  43. this.trigger = true
  44. // this.isrepulling = true
  45. setTimeout(() => {
  46. this.trigger = false;
  47. }, 1000);
  48. // 资源库
  49. this.classList = []
  50. this.Loading = 0 //0默认值 1加载中 2没有更多了
  51. this.currentPage = 1 //页数
  52. this.getData()
  53. },
  54. // 触底
  55. lower() {
  56. console.log('没触底?');
  57. if (this.Loading == 2) return
  58. this.Loading = 1
  59. this.currentPage++
  60. setTimeout(this.getData, 1000)
  61. },
  62. // 获取页面数据
  63. getData() {
  64. let data = {
  65. openid: uni.getStorageSync('oId'),
  66. ty: 3,
  67. page: this.currentPage, //下拉获取更多的备用字段
  68. lim: 15 //一次获取多少数据
  69. }
  70. this.$request('/selectActivity', "POST", data).then(res => {
  71. console.log('获取数据', res[0]);
  72. if (!res[0].length) {
  73. this.Loading = 2
  74. } else {
  75. this.Loading = 0
  76. }
  77. // return
  78. this.classList = [...this.classList, ...res[0]]
  79. // this.trigger = false;
  80. // this.activeList = res[0]
  81. })
  82. },
  83. },
  84. // 触底加载更多
  85. // onReachBottom() {
  86. // if (this.newsLoading == 2) {
  87. // return
  88. // }
  89. // this.newsLoading = 1
  90. // this.currentPage++
  91. // setTimeout(this.getData, 2000)
  92. // },
  93. onLoad() {
  94. // this.getData()
  95. },
  96. onShow() {
  97. this.classList= []
  98. // 一进页面就加载数据
  99. this.getData()
  100. this.$refs.listBlock1.getdata()
  101. // this.$refs.listBlock1.getSub()
  102. }
  103. }
  104. </script>
  105. <style lang="scss">
  106. .teachingList {
  107. height: 100%;
  108. display: flex;
  109. flex-direction: column;
  110. .list{
  111. flex: 1;
  112. }
  113. .list1btn {
  114. z-index: 5;
  115. border: none;
  116. padding: 0;
  117. text-align: center;
  118. // padding: 8px, 24px, 8px, 24px;
  119. background-color: rgba(48, 129, 232, 1);
  120. color: #fff;
  121. border-radius: 100rpx;
  122. float: right;
  123. width: 144rpx;
  124. height: 48rpx;
  125. line-height: 48rpx;
  126. letter-spacing: 1px;
  127. }
  128. }
  129. </style>