teachingList.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <view class="teachingList">
  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. <!-- 推荐课程插槽组件 -->
  11. <listBlock1 ref="listBlock1" :classList='classList'></listBlock1>
  12. </view>
  13. </scroll-view>
  14. <view class="loading">
  15. <view v-if="newsLoading==1">数据加载中...</view>
  16. <view v-if="newsLoading==2">没有更多了~~</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. teaData: {
  29. btn: 1,
  30. btn_2: 1,
  31. },
  32. // 渲染数据
  33. classList: [],
  34. // 触底加载动画提示
  35. newsLoading: 0, //0默认值 1加载中 2没有更多了
  36. currentPage: 1,
  37. };
  38. },
  39. methods: {
  40. // 获取页面数据
  41. getData() {
  42. let data = {
  43. openid: uni.getStorageSync('oId'),
  44. ty: 3,
  45. page: this.currentPage, //下拉获取更多的备用字段
  46. lim: 15 //一次获取多少数据
  47. }
  48. this.$request('/selectActivity', "POST", data).then(res => {
  49. console.log('获取数据', res[0]);
  50. if (!res[0].length) {
  51. this.newsLoading = 2
  52. } else {
  53. this.newsLoading = 0
  54. }
  55. // return
  56. this.classList = [...this.classList, ...res[0]]
  57. // this.activeList = res[0]
  58. })
  59. },
  60. },
  61. // 触底加载更多
  62. onReachBottom() {
  63. console.log(111);
  64. if (this.newsLoading == 2) {
  65. return
  66. }
  67. this.newsLoading = 1
  68. this.currentPage++
  69. setTimeout(this.getData, 2000)
  70. },
  71. onShow() {
  72. // 一进页面就加载数据
  73. this.getData()
  74. this.$refs.listBlock1.getdata()
  75. this.$refs.listBlock1.getSub()
  76. }
  77. }
  78. </script>
  79. <style lang="scss">
  80. .teachingList {
  81. .loading {
  82. height: 50rpx;
  83. text-align: center;
  84. padding-top: 20rpx;
  85. padding-bottom: 100rpx;
  86. font-size: 26rpx;
  87. color: #888;
  88. line-height: 2em;
  89. }
  90. .list1btn {
  91. z-index: 5;
  92. border: none;
  93. padding: 0;
  94. text-align: center;
  95. // padding: 8px, 24px, 8px, 24px;
  96. background-color: rgba(48, 129, 232, 1);
  97. color: #fff;
  98. border-radius: 100rpx;
  99. float: right;
  100. width: 144rpx;
  101. height: 48rpx;
  102. line-height: 48rpx;
  103. letter-spacing: 1px;
  104. }
  105. }
  106. </style>