123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <template>
- <view class="content">
- <u-subsection mode="subsection" :active-color="mainColor" :list="tabList" :current="current" @change="tabsChange"></u-subsection>
- <swiper :current="swiperCurrent" @animationfinish="animationfinish" class="swiper-box">
- <swiper-item class="swiper-item" v-for="(item, index1) in tabList" :key="index1">
- <scroll-view scroll-y class="scroll-box" @scrolltolower="handleLoadMore" :refresher-enabled="true"
- :refresher-triggered="triggered" :refresher-threshold="100" refresher-background="white" @refresherrefresh="onRefresh"
- @refresherrestore="onRestore">
- <u-card :head-border-bottom="false" :foot-border-top="false" padding="0px" margin="0" borderRadius="0" v-for="(site, index2) in item.tableList"
- :key="index2" class="card-box" @click="goToStudent(site)">
- <view class="card-content" slot="body">
- <view class="info-img">
- <u-avatar :src="site.url" size="100"></u-avatar>
- </view>
- <view class="info-text">
- {{site.studentName}}
- <text>{{index1 == 1 ? '到期余课:' + site.residue : ''}}</text>
- </view>
- <u-icon name="arrow-right" color="#aaaaaa" size="36"></u-icon>
- </view>
- </u-card>
- <u-divider v-if="item.isOver" bg-color="transparent" style="padding-top: 10px;">没有更多了</u-divider>
- </scroll-view>
- </swiper-item>
- </swiper>
- <u-top-tips ref="uTips"></u-top-tips>
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex'
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- computed: {
- ...mapGetters([
- 'mainColor',
- 'handleCustomStyle',
- 'handleDefaultCustomStyle',
- ])
- },
- data() {
- return {
- triggered: false,
- tabList: [{
- name: '到期提醒',
- isOver: false,
- pageIndex: 1,
- tableList: [],
- }, {
- name: '到期余课',
- isOver: false,
- pageIndex: 1,
- tableList: [],
- }],
- current: 0,
- swiperCurrent: 0,
- }
- },
- onLoad() {
- this.getTableList(0)
- this.getTableList(1)
- },
- onReady() {},
- methods: {
- // tab页面切换
- tabsChange(index) {
- this.swiperCurrent = index;
- },
- // swiper滑动结束,分别设置tabs和swiper的状态
- animationfinish(e) {
- let current = e.detail.current;
- this.swiperCurrent = current;
- this.current = current;
- },
- // 下拉刷新
- onRefresh() {
- if (!this.triggered) {
- this.triggered = true
- this.tabList[this.current].isOver = false
- this.tabList[this.current].pageIndex = 1
- this.tabList[this.current].tableList = []
- this.getTableList(this.current, 'refresh')
- }
- },
- // 重置下拉刷新状态
- onRestore() {
- this.triggered = 'restore'
- this.triggered = false
- },
- // 懒加载
- handleLoadMore() {
- if (!this.tabList[this.current].isOver) {
- this.tabList[this.current].pageIndex++
- this.getTableList(this.current)
- }
- },
- // 获取列表数据
- getTableList(index, refresh) {
- NET.request(API.getRenewList, {
- type: index,
- page: this.tabList[index].pageIndex,
- size: 10,
- }, 'POST').then(res => {
- this.triggered = false
- this.tabList[index].tableList = this.tabList[index].tableList.concat(res.data.row)
- this.tabList[index].isOver = res.data.row.length != 10
- }).catch(error => {
- this.triggered = false
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- // 跳转学生详情
- goToStudent(site) {
- uni.navigateTo({
- url: '/pagesMain/studentInfo?id=' + site.id
- });
- }
- },
- }
- </script>
- <style>
- page {
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- }
- </style>
- <style lang="scss" scoped>
- @import "@/static/css/themes.scss";
- .content {
- width: 100%;
- float: left;
- .swiper-box {
- height: calc(100vh - 34px);
- .swiper-item {
- height: calc(100vh - 34px);
- .scroll-box {
- width: 100%;
- height: calc(100vh - 34px);
- .card-box {
- border-bottom: 1px solid #cccccc;
- .card-content {
- padding: 5px 15px;
- display: flex;
- align-items: center;
- .info-img {
- width: 50px;
- height: 50px;
- margin-right: 5px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .info-text {
- line-height: 20px;
- font-size: 14px;
- flex: 1;
- text {
- margin-left: 10px;
- font-size: 12px;
- }
- }
- }
- }
- .card-box:last-child {
- border-bottom: none;
- }
- }
- }
- }
- }
- </style>
|