123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <template>
- <view class="activityList">
- <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>
- <teaching-case :activeList="activeList" :indexId="index" :item="teaData"></teaching-case>
- </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: 2
- },
- // 数据
- activeList: [],
- // 触底加载动画提示
- newsLoading: 1, //0默认值 1加载中 2没有更多了
- currentPage: 1,
- };
- },
- methods: {
- // 获取教研活动
- getData() {
- let data = {
- openid: uni.getStorageSync('oId'),
- ty: 0,
- 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
- }
- this.activeList = [...this.activeList, ...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()
- // }
- onLoad() {
- this.getData()
- }
- }
- </script>
- <style lang="scss">
- .activityList {
- .list {
- // height: 100vh;
- // background-color: rebeccapurple;
- }
- .bottom {
- margin: 30rpx auto;
- text-align: center;
- }
-
- .loading{
- height: 50rpx;
- text-align: center;
- padding-top: 20rpx;
- padding-bottom: 100rpx;
- font-size: 26rpx;
- color:#888;
- line-height: 2em;
- }
- }
- </style>
|