main.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <template>
  2. <div
  3. class="wrapper"
  4. ref="returnWrapper">
  5. <ul>
  6. <li
  7. :class="{'static': isRefresh}"
  8. class="pulldown-wrapper">
  9. <van-loading
  10. v-show="isRefresh"
  11. size="24px"
  12. type="spinner">加载中...
  13. </van-loading>
  14. <div
  15. v-show="!isRefresh"
  16. class="van-loading">
  17. <span
  18. class="van-loading__text">下拉刷新</span>
  19. </div>
  20. </li>
  21. <li
  22. v-for="(item, index) in list"
  23. :key="index"
  24. class="list-item border-bottom-1px">
  25. <div class="wrap">
  26. <div class="left">
  27. <div class="avatar">
  28. <img src="" alt="">
  29. </div>
  30. <p class="name">刘亚楠</p>
  31. </div>
  32. <p class="status">未激活</p>
  33. </div>
  34. <p class="date">加入时间:2020-12-23 19:30</p>
  35. </li>
  36. <li class="pullup-wrapper">
  37. <van-loading
  38. v-show="!finished"
  39. size="24px"
  40. type="spinner">加载中...
  41. </van-loading>
  42. <div
  43. v-show="finished"
  44. class="van-loading">
  45. <span
  46. class="van-loading__text">没有更多了</span>
  47. </div>
  48. </li>
  49. </ul>
  50. </div>
  51. </template>
  52. <script>
  53. import BScroll from 'better-scroll'
  54. import { Toast, Loading } from 'vant'
  55. import { apiOrderList } from '../api/api'
  56. export default {
  57. components: {
  58. 'van-loading': Loading
  59. },
  60. data () {
  61. return {
  62. finished: false, // 所有数据是否加载完
  63. isRefresh: false, // 是否下拉刷新
  64. isFetchLock: false, // 接口调用加锁
  65. pagenum: 0,
  66. pagesize: 20,
  67. list: [],
  68. scroll: null
  69. }
  70. },
  71. activated () {
  72. if (!this.$route.meta.isUseCache) {
  73. this.finished = false
  74. this.isRefresh = false
  75. this.isFetchLock = false
  76. this.pagenum = 0
  77. this.pagesize = 20
  78. this.list = []
  79. this.scroll = null
  80. this.getList()
  81. } else {
  82. this.scroll && this.scroll.refresh()
  83. }
  84. this.$route.meta.isUseCache = false
  85. },
  86. methods: {
  87. goDetail (id) {},
  88. onRefresh () {
  89. this.pagenum = 0
  90. this.pagesize = 20
  91. this.finished = false
  92. this.isRefresh = true
  93. this.getList()
  94. },
  95. async getList () {
  96. if (this.finished) {
  97. return
  98. }
  99. if (this.isFetchLock) {
  100. return
  101. }
  102. this.isFetchLock = true
  103. this.pagenum++
  104. try {
  105. const { status, data, msg } = await apiOrderList({ page: this.pagenum, page_size: this.pagesize })
  106. if (status) {
  107. const { list } = data
  108. // 下拉刷新数据清空
  109. if (this.isRefresh) {
  110. this.isRefresh = false
  111. this.list = []
  112. }
  113. // 没有数据返回了
  114. if (Array.isArray(list) && !list.length) {
  115. this.finished = true
  116. }
  117. if (Array.isArray(list) && list.length) {
  118. // 总页数小于等于1页时
  119. if (list.length < this.pagesize) {
  120. this.finished = true
  121. }
  122. this.list = this.list.concat(list)
  123. this.$nextTick(() => {
  124. if (!this.scroll) {
  125. this.scroll = new BScroll(this.$refs.returnWrapper, {
  126. click: true,
  127. pullDownRefresh: {
  128. threshold: 50, // 顶部下拉的距离
  129. stop: 20 // 回弹停留的距离
  130. },
  131. pullUpLoad: {
  132. threshold: -20
  133. },
  134. scrollbar: true
  135. })
  136. this.scroll.on('pullingDown', () => {
  137. this.onRefresh()
  138. })
  139. this.scroll.on('pullingUp', () => {
  140. this.getList()
  141. })
  142. } else {
  143. this.scroll.finishPullDown()
  144. this.scroll.finishPullUp()
  145. this.scroll.refresh()
  146. }
  147. })
  148. }
  149. } else {
  150. Toast(msg)
  151. }
  152. this.isFetchLock = false
  153. } catch (err) {
  154. this.isFetchLock = false
  155. }
  156. }
  157. },
  158. beforeDestroy () {
  159. this.scroll && this.scroll.destroy()
  160. },
  161. beforeRouteLeave (to, form, next) {
  162. if (['Mine', 'OrderDetail'].findIndex(item => item === to.name) > -1) {
  163. form.meta.isUseCache = true
  164. }
  165. next()
  166. }
  167. }
  168. </script>
  169. <style lang="scss" scoped>
  170. .wrapper {
  171. width: 100%;
  172. height: calc(100% - 117px);
  173. overflow: hidden;
  174. background: #FFFFFF;
  175. ul {
  176. display: flex;
  177. flex-direction: column;
  178. align-items: center;
  179. width: 100%;
  180. padding: 15px 0 102px;
  181. }
  182. }
  183. .pulldown-wrapper {
  184. position: absolute;
  185. left: 0;
  186. top: -43px;
  187. width: 100%;
  188. text-align: center;
  189. margin-bottom: 10px;
  190. &.static {
  191. position: static;
  192. left: 0;
  193. top: 0;
  194. }
  195. }
  196. .pullup-wrapper {
  197. width: 100%;
  198. text-align: center;
  199. .van-loading {
  200. margin-top: 16px;
  201. }
  202. }
  203. .list-item {
  204. width: 340px;
  205. padding: 15px 19px 15px 14px;
  206. @include border-bottom-1px(rgba(31, 49, 74, 0.1));
  207. .wrap {
  208. display: flex;
  209. align-items: center;
  210. justify-content: space-between;
  211. }
  212. .left {
  213. display: flex;
  214. align-items: center;
  215. }
  216. .avatar {
  217. width: 40px;
  218. height: 40px;
  219. border-radius: 50%;
  220. overflow: hidden;
  221. background: pink;
  222. img {
  223. display: block;
  224. width: 100%;
  225. }
  226. }
  227. .name {
  228. margin-left: 10px;
  229. font-size: 16px;
  230. font-family: PingFangSC-Medium, PingFang SC;
  231. font-weight: 500;
  232. color: #333333;
  233. line-height: 22px;
  234. }
  235. .status {
  236. width: 44px;
  237. height: 19px;
  238. background: #FFF0BF;
  239. border-radius: 4px;
  240. font-size: 12px;
  241. color: #DD8C01;
  242. line-height: 19px;
  243. text-align: center;
  244. }
  245. .date {
  246. margin-top: 16px;
  247. font-size: 12px;
  248. color: #999999;
  249. line-height: 17px;
  250. }
  251. }
  252. </style>