index.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <view class="app-container">
  3. <!-- <view class="swiper-container">
  4. <u-swiper
  5. indicator
  6. indicatorMode="line"
  7. circular
  8. :list="swiperList">
  9. </u-swiper>
  10. </view> -->
  11. <view class="nav-container">
  12. <view class="item" @tap="linkTo('pages/profile/shop/myScore', {})">
  13. <img src="@/static/shop/icon_1.png" alt="">
  14. <view>积分查询</view>
  15. </view>
  16. <view class="item" @tap="linkTo('pages/profile/shop/goodsList', {type: 1})">
  17. <img src="@/static/shop/icon_2.png" alt="">
  18. <view>我能兑换</view>
  19. </view>
  20. <view class="item" @tap="linkTo('pages/profile/shop/goodsList', {})">
  21. <img src="@/static/shop/icon_3.png" alt="">
  22. <view>分类查询</view>
  23. </view>
  24. <view class="item" @tap="linkTo('pages/profile/shop/orderList', {})">
  25. <img src="@/static/shop/icon_4.png" alt="">
  26. <view>兑换记录</view>
  27. </view>
  28. </view>
  29. <view class="title-container">
  30. <view class="title">积分兑好礼</view>
  31. <view class="more" @tap="linkTo('pages/profile/shop/goodsList', {})">更多<u-icon size="12" name="arrow-right" color="var(--theme-color)"></u-icon></view>
  32. </view>
  33. <view class="list-container">
  34. <view
  35. class="item"
  36. v-for="(item, index) in dataList"
  37. :key="index"
  38. @tap="linkTo('pages/profile/shop/goodsDetail', {id: item.goodsId})">
  39. <div @tap.stop>
  40. <u--image class="img" :showLoading="true" :src="$imageUrl + item.imageUrl" width="140rpx" height="140rpx"></u--image>
  41. </div>
  42. <view class="main">
  43. <view class="name ellipsis-2">{{item.goodsName}}</view>
  44. <view class="price">{{item.score}}积分</view>
  45. </view>
  46. </view>
  47. </view>
  48. <u-empty
  49. mode="data"
  50. :icon="require('@/static/common/empty_data.png')"
  51. v-if="loadStatus == 'nomore' && dataList.length < 1">
  52. </u-empty>
  53. <u-loadmore :status="loadStatus" v-else />
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. swiperList: [
  61. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  62. ],
  63. dataList: [],
  64. pageNum: 1,
  65. loadStatus: 'loadmore', // 加载前=loadmore,加载中=loading,没有数据=nomore
  66. }
  67. },
  68. onLoad() {
  69. this.getList();
  70. },
  71. // 下拉刷新
  72. onPullDownRefresh() {
  73. this.pageNum = 1;
  74. this.getList();
  75. },
  76. // 上拉加载
  77. onReachBottom() {
  78. this.getList(1);
  79. },
  80. methods: {
  81. // 获取列表
  82. getList(loadMore) {
  83. if(this.loadStatus == 'nomore' && loadMore) return;
  84. this.loadStatus = 'loadmore';
  85. if(!loadMore){
  86. this.pageNum = 1;
  87. }else{
  88. this.loadStatus = 'loading';
  89. }
  90. this.$api.post('/mall/get-goods', {
  91. pageNum: this.pageNum,
  92. pageSize: 10,
  93. categoryId: '',
  94. goodsName: '',
  95. }).then(res => {
  96. let _list = res.data.records;
  97. let pageTotal = res.data.pages;
  98. if(this.pageNum >= pageTotal){
  99. this.loadStatus = 'nomore';
  100. }
  101. if (_list.length) {
  102. this.pageNum += 1;
  103. }
  104. if (loadMore) {
  105. this.dataList = this.dataList.concat(_list);
  106. this.loadStatus = 'loadmore';
  107. } else {
  108. this.dataList = _list;
  109. }
  110. }).catch(res => {
  111. this.loadStatus = 'nomore';
  112. }).finally(res => {
  113. uni.stopPullDownRefresh();
  114. })
  115. },
  116. // 页面跳转
  117. linkTo(url, query) {
  118. let str = '';
  119. if(query) {
  120. for(let i in query) {
  121. str = '?' + str + i + '=' + query[i];
  122. }
  123. }
  124. uni.navigateTo({
  125. url: `${url}${str}`
  126. });
  127. },
  128. },
  129. }
  130. </script>
  131. <style lang="scss" scoped>
  132. .app-container {
  133. min-height: calc(100vh - 88rpx);
  134. background: #ffffff;
  135. padding-bottom: 1px;
  136. }
  137. .nav-container {
  138. display: flex;
  139. padding: 40rpx 0;
  140. .item {
  141. flex: 1;
  142. display: flex;
  143. flex-direction: column;
  144. align-items: center;
  145. img {
  146. width: 52rpx;
  147. height: 52rpx;
  148. }
  149. view {
  150. font-size: 28rpx;
  151. margin-top: 20rpx;
  152. color: #333333;
  153. }
  154. }
  155. }
  156. .title-container {
  157. display: flex;
  158. align-items: center;
  159. justify-content: space-between;
  160. padding: 0 30rpx;
  161. .title {
  162. font-size: 32rpx;
  163. color: #333333;
  164. font-weight: 600;
  165. }
  166. .more {
  167. color: var(--theme-color);
  168. display: flex;
  169. align-items: center;
  170. font-size: 28rpx;
  171. }
  172. }
  173. .list-container {
  174. padding: 10rpx 30rpx 0;
  175. .item {
  176. display: flex;
  177. align-items: center;
  178. padding: 20rpx 0;
  179. border-bottom: 1px solid $u-border-color;
  180. .main {
  181. height: 140rpx;
  182. display: flex;
  183. flex-direction: column;
  184. justify-content: space-between;
  185. margin-left: 20rpx;
  186. .name {
  187. font-size: 28rpx;
  188. color: #333333;
  189. font-weight: 500;
  190. }
  191. .price {
  192. font-size: 28rpx;
  193. color: var(--assist-color);
  194. }
  195. }
  196. }
  197. }
  198. </style>