123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <view class="content">
- <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 :foot-border-top="false" padding="0" margin="10px" borderRadius="40" v-for="(item, index) in tableList" :key="index"
- class="card-container" @click="goToVenueDetail(item)">
- <view class="card-content" slot="body">
- <u-image :src="item.url" mode="aspectFill" height="30vw" border-radius="10px 10px 0 0 "></u-image>
- <view class="card-info-text">{{item.name}}</view>
- </view>
- </u-card>
- <u-divider v-if="isOver" bg-color="transparent">没有更多了</u-divider>
- </scroll-view>
- <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'
- ])
- },
- data() {
- return {
- triggered: false,
- isOver: false,
- pageIndex: 1,
- tableList: [],
- }
- },
- onLoad() {
- this.getTableList()
- },
- onReady() {},
- methods: {
- // 下拉刷新
- onRefresh() {
- this.triggered = true
- this.isOver = false
- this.pageIndex = 1
- this.tableList = []
- this.getTableList()
- },
- // 重置下拉刷新状态
- onRestore() {
- this.triggered = 'restore'
- this.triggered = false
- },
- // 懒加载
- handleLoadMore() {
- if (!this.isOver) {
- this.pageIndex++
- this.getTableList()
- }
- },
- // 获取列表数据
- getTableList() {
- NET.request(API.getAllVenueList, {
- ...uni.getStorageSync('locationData'),
- page: this.pageIndex,
- size: 10,
- }, 'POST').then(res => {
- this.triggered = false
- this.tableList = this.tableList.concat(res.data.row)
- this.isOver = res.data.row.length != 10
- }).catch(error => {
- this.triggered = false
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- // 跳转场馆详情
- goToVenueDetail(item) {
- uni.navigateTo({
- url: '/pagesEnroll/venueDetail?id=' + item.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;
- .scroll-box {
- width: 100%;
- height: 100vh;
- box-sizing: border-box;
- padding-bottom: 10px;
- .card-container {
- width: 50%;
- float: left;
- .card-info-text {
- width: 100%;
- text-align: center;
- line-height: 18px;
- font-size: 12px;
- margin: 5px 0 10px 0;
- }
- }
- }
- }
- </style>
|