123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <template>
- <view class="teachingList">
- <statusBar :item="navbarData"></statusBar>
- <!-- <teaching-case :item="teaData"></teaching-case> -->
- <!-- <view class="" style="padding-bottom: 50rpx;">
- <teaching-case :activeList="activeList" :indexId="index" :item="teaData"></teaching-case>
- </view> -->
- <scroll-view class="list" scroll-y="true">
- <view>
- <!-- 推荐课程插槽组件 -->
- <listBlock1 ref="listBlock1" :classList='classList'></listBlock1>
- </view>
- </scroll-view>
- <view class="loading">
- <view v-if="newsLoading==1">数据加载中...</view>
- <view v-if="newsLoading==2">没有更多了~~</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- navbarData: {
- title: '教研室列表',
- btn: 1
- },
- teaData: {
- btn: 1,
- btn_2: 1,
- },
- // 渲染数据
- classList: [],
- // 触底加载动画提示
- newsLoading: 0, //0默认值 1加载中 2没有更多了
- currentPage: 1,
- };
- },
- methods: {
- // 获取页面数据
- getData() {
- let data = {
- openid: uni.getStorageSync('oId'),
- ty: 3,
- page: this.currentPage, //下拉获取更多的备用字段
- lim: 15 //一次获取多少数据
- }
- this.$request('/selectActivity', "POST", data).then(res => {
- console.log('获取数据', res[0]);
- if (!res[0].length) {
- this.newsLoading = 2
- } else {
- this.newsLoading = 0
- }
- // return
- this.classList = [...this.classList, ...res[0]]
- // this.activeList = res[0]
- })
- },
- },
- // 触底加载更多
- onReachBottom() {
- console.log(111);
- if (this.newsLoading == 2) {
- return
- }
- this.newsLoading = 1
- this.currentPage++
- setTimeout(this.getData, 2000)
- },
- onShow() {
- // 一进页面就加载数据
- this.getData()
- this.$refs.listBlock1.getdata()
- this.$refs.listBlock1.getSub()
- }
- }
- </script>
- <style lang="scss">
- .teachingList {
- .loading {
- height: 50rpx;
- text-align: center;
- padding-top: 20rpx;
- padding-bottom: 100rpx;
- font-size: 26rpx;
- color: #888;
- line-height: 2em;
- }
- .list1btn {
- z-index: 5;
- border: none;
- padding: 0;
- text-align: center;
- // padding: 8px, 24px, 8px, 24px;
- background-color: rgba(48, 129, 232, 1);
- color: #fff;
- border-radius: 100rpx;
- float: right;
- width: 144rpx;
- height: 48rpx;
- line-height: 48rpx;
- letter-spacing: 1px;
- }
-
- }
- </style>
|