classList.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <template>
  2. <view class="content">
  3. <view class="filter-box">
  4. <u-search placeholder="请输入关键字" v-model="filterText" @search="setFilterText" @custom="setFilterText"></u-search>
  5. </view>
  6. <scroll-view scroll-y class="scroll-box" @scrolltolower="handleLoadMore" :refresher-enabled="true"
  7. :refresher-triggered="triggered" :refresher-threshold="100" refresher-background="white" @refresherrefresh="onRefresh"
  8. @refresherrestore="onRestore">
  9. <u-card :head-border-bottom="false" :foot-border-top="false" padding="0px" margin="10px" borderRadius="40" v-for="(item, index) in tableList"
  10. :key="index" class="card-box" @click="selectClass(item)">
  11. <view class="card-content" slot="head" style="padding-top: 10px;">
  12. <view class="card-name">{{item.name}}</view>
  13. </view>
  14. <view class="card-content" slot="body">
  15. <view class="card-info-text">
  16. <u-icon name="clock"></u-icon>
  17. {{item.classStartDate}}&nbsp;&nbsp;{{item.classStartHours}}
  18. </view>
  19. <view class="card-info-text">
  20. <u-icon name="map"></u-icon>
  21. {{item.address}}
  22. </view>
  23. </view>
  24. </u-card>
  25. <u-divider v-if="isOver" bg-color="transparent">没有更多了</u-divider>
  26. </scroll-view>
  27. <u-top-tips ref="uTips"></u-top-tips>
  28. </view>
  29. </template>
  30. <script>
  31. import {
  32. mapGetters
  33. } from 'vuex'
  34. const NET = require('@/utils/request')
  35. const API = require('@/config/api')
  36. export default {
  37. computed: {
  38. ...mapGetters([
  39. 'mainColor'
  40. ])
  41. },
  42. data() {
  43. return {
  44. filterText: '',
  45. triggered: false,
  46. isOver: false,
  47. pageIndex: 1,
  48. tableList: [],
  49. }
  50. },
  51. onLoad() {
  52. this.getTableList()
  53. },
  54. onReady() {},
  55. methods: {
  56. // 设置过滤字段
  57. setFilterText(value) {
  58. this.onRefresh()
  59. },
  60. // 下拉刷新
  61. onRefresh() {
  62. this.triggered = true
  63. this.isOver = false
  64. this.pageIndex = 1
  65. this.tableList = []
  66. this.getTableList()
  67. },
  68. // 重置下拉刷新状态
  69. onRestore() {
  70. this.triggered = 'restore'
  71. this.triggered = false
  72. },
  73. // 懒加载
  74. handleLoadMore() {
  75. if (!this.isOver) {
  76. this.pageIndex++
  77. this.getTableList()
  78. }
  79. },
  80. // 获取列表数据
  81. getTableList() {
  82. NET.request(API.getClassList, {
  83. name: this.filterText,
  84. page: this.pageIndex,
  85. size: 10,
  86. }, 'POST').then(res => {
  87. this.triggered = false
  88. this.tableList = this.tableList.concat(res.data.row)
  89. this.isOver = res.data.row.length != 10
  90. }).catch(error => {
  91. this.triggered = false
  92. this.$refs.uTips.show({
  93. title: error.message,
  94. type: 'warning',
  95. })
  96. })
  97. },
  98. // 跳转场馆详情
  99. selectClass(item) {
  100. uni.setStorage({
  101. key: 'defaultClass',
  102. data: {
  103. classId: item.id,
  104. className: item.name,
  105. }
  106. });
  107. uni.navigateBack()
  108. },
  109. },
  110. }
  111. </script>
  112. <style>
  113. page {
  114. width: 100%;
  115. height: 100%;
  116. background-color: #f7f7f7;
  117. }
  118. </style>
  119. <style lang="scss" scoped>
  120. @import "@/static/css/themes.scss";
  121. .content {
  122. width: 100%;
  123. float: left;
  124. .filter-box {
  125. height: 48px;
  126. padding: 10px 15px;
  127. background-color: #FFFFFF;
  128. }
  129. .scroll-box {
  130. width: 100%;
  131. height: calc(100vh - 48px);
  132. box-sizing: border-box;
  133. padding-bottom: 10px;
  134. .card-box {
  135. .card-content {
  136. padding: 5px 15px;
  137. }
  138. .card-name {
  139. height: 20px;
  140. display: inline-block;
  141. font-weight: bold;
  142. font-size: 14px;
  143. line-height: 20px;
  144. }
  145. .card-info-text {
  146. color: #999999;
  147. margin-bottom: 5px;
  148. /deep/.u-icon {
  149. margin-right: 5px;
  150. font-size: 14px;
  151. color: #000000;
  152. }
  153. }
  154. }
  155. }
  156. }
  157. </style>