my-groupon.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <!-- 我的拼团 -->
  2. <template>
  3. <view class="page_box">
  4. <!-- tab -->
  5. <view class="head_box">
  6. <view class="order-nav u-flex">
  7. <view class="nav-item u-flex-col u-flex-1 u-row-center u-col-center" v-for="nav in groupState" :key="nav.id" @tap="onNav(nav.id)">
  8. <view class="item-title">{{ nav.title }}</view>
  9. <text class="nav-line" :class="{ 'line-active': stateId === nav.id }"></text>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="content_box">
  14. <scroll-view scroll-y="true" enable-back-to-top @scrolltolower="loadMore" refresher-background="#f5f5f5" class="scroll-box">
  15. <block v-for="groupon in myGrouponList" :key="groupon.id">
  16. <view class="group-card">
  17. <image v-if="stateId !== 'ing'" class="group-state" :src="grouponStatus[groupon.groupon.status]" mode=""></image>
  18. <view class="goods-content">
  19. <shopro-mini-card
  20. :title="groupon.goods.title"
  21. :image="groupon.goods.image"
  22. :subtitle="groupon.goods.subtitle"
  23. :price="groupon.goods.price"
  24. :originPrice="groupon.goods.original_price"
  25. @click="jump('/pages/goods/detail', { id: groupon.goods.id })"
  26. >
  27. <template #describe>
  28. <view class="u-flex u-m-b-20">
  29. <view class="sell-box">
  30. <text class="iconfont icon-fire"></text>
  31. <text class="sell-num">已拼{{ groupon.goods.sales }}件</text>
  32. </view>
  33. <text class="group-num">{{ groupon.groupon.num || 0 }}人团</text>
  34. </view>
  35. </template>
  36. </shopro-mini-card>
  37. </view>
  38. <view class="btn-box u-flex">
  39. <button class="u-reset-button invite-btn" @tap="jump('/pages/activity/groupon/detail', { id: groupon.groupon_id })">拼团详情</button>
  40. </view>
  41. </view>
  42. </block>
  43. <!-- 空白页 -->
  44. <shopro-empty
  45. v-if="isEmpty"
  46. :image="$IMG_URL + '/imgs/empty/empty_groupon.png'"
  47. tipText="暂无拼团商品,更多拼团好货等着你噢~"
  48. btnText="去首页逛逛"
  49. @click="$Router.pushTab('/pages/index/index')"
  50. ></shopro-empty>
  51. <!-- 加载更多 -->
  52. <u-loadmore v-if="myGrouponList.length" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  53. </scroll-view>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. components: {},
  60. data() {
  61. return {
  62. isEmpty: false,
  63. loadStatus: 'loadmore', //loadmore:加载前的状态,loading:加载中的状态,nomore-没有更多的状态
  64. lastPage: 1,
  65. currentPage: 1,
  66. stateId: 'all',
  67. grouponStatus: {
  68. finish: this.$IMG_URL + '/imgs/group/group_state_succeed.png',
  69. 'finish-fictitious': this.$IMG_URL + '/imgs/group/group_state_succeed.png',
  70. invalid: this.$IMG_URL + '/imgs/group/group_state_failed.png'
  71. },
  72. myGrouponList: [], //我的拼团列表。
  73. groupState: [
  74. {
  75. id: 'all', //0
  76. title: '全部'
  77. },
  78. {
  79. id: 'ing', //1
  80. title: '进行中'
  81. },
  82. {
  83. id: 'finish', //2
  84. title: '成功'
  85. },
  86. {
  87. id: 'invalid', //3
  88. title: '失败'
  89. }
  90. ]
  91. };
  92. },
  93. computed: {},
  94. onLoad() {
  95. this.getMyGroupon();
  96. },
  97. onPullDownRefresh() {
  98. this.lastPage = 1;
  99. this.currentPage = 1;
  100. this.myGrouponList = [];
  101. this.getMyGroupon();
  102. },
  103. methods: {
  104. onNav(id) {
  105. if (this.stateId !== id) {
  106. this.stateId = id;
  107. this.myGrouponList = [];
  108. this.currentPage = 1;
  109. this.getMyGroupon();
  110. }
  111. },
  112. jump(path, parmas) {
  113. this.$Router.push({
  114. path: path,
  115. query: parmas
  116. });
  117. },
  118. // 加载更多
  119. loadMore() {
  120. if (this.currentPage < this.lastPage) {
  121. this.currentPage += 1;
  122. this.getMyGroupon();
  123. }
  124. },
  125. // 我的拼团
  126. getMyGroupon() {
  127. let that = this;
  128. that.loadStatus = 'loading';
  129. that.$http(
  130. 'goods.myGroupon',
  131. {
  132. type: that.stateId,
  133. page: that.currentPage
  134. },
  135. '加载中'
  136. ).then(res => {
  137. uni.stopPullDownRefresh();
  138. if (res.code === 1) {
  139. that.myGrouponList = [...that.myGrouponList, ...res.data.data];
  140. that.isEmpty = !that.myGrouponList.length;
  141. that.lastPage = res.data.last_page;
  142. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  143. }
  144. });
  145. }
  146. }
  147. };
  148. </script>
  149. <style lang="scss">
  150. // tab
  151. .order-nav {
  152. background: #fff;
  153. height: 80rpx;
  154. .nav-item {
  155. flex: 1;
  156. .item-title {
  157. font-size: 30rpx;
  158. font-weight: 400;
  159. color: rgba(51, 51, 51, 1);
  160. line-height: 76rpx;
  161. }
  162. .nav-line {
  163. width: 120rpx;
  164. height: 4rpx;
  165. background: #fff;
  166. }
  167. .line-active {
  168. background: rgba(230, 184, 115, 1);
  169. }
  170. }
  171. }
  172. // 拼团卡片
  173. .group-card {
  174. background: #fff;
  175. margin-top: 20rpx;
  176. position: relative;
  177. overflow: hidden;
  178. .group-state {
  179. position: absolute;
  180. z-index: 2;
  181. top: -20rpx;
  182. right: -20rpx;
  183. width: 126rpx;
  184. height: 126rpx;
  185. }
  186. .goods-content {
  187. padding: 20rpx;
  188. position: relative;
  189. .group-num {
  190. font-size: 24rpx;
  191. font-weight: 400;
  192. color: rgba(153, 153, 153, 1);
  193. margin-left: 30rpx;
  194. }
  195. .sell-box {
  196. line-height: 32rpx;
  197. background: rgba(255, 224, 226, 0.3);
  198. border-radius: 16rpx;
  199. padding: 0 10rpx;
  200. .icon-fire {
  201. color: #e1212b;
  202. font-size: 26rpx;
  203. margin-right: 10rpx;
  204. }
  205. .sell-num {
  206. font-size: 20rpx;
  207. color: #f7979c;
  208. }
  209. }
  210. }
  211. .btn-box {
  212. height: 95rpx;
  213. border-top: 1px solid rgba(223, 223, 223, 0.5);
  214. justify-content: flex-end;
  215. .invite-btn {
  216. width: 210rpx;
  217. line-height: 65rpx;
  218. border: 1rpx solid #a8700d;
  219. border-radius: 33rpx;
  220. font-size: 26rpx;
  221. color: #a8700d;
  222. padding: 0;
  223. margin-right: 20rpx;
  224. background: #fff;
  225. }
  226. }
  227. }
  228. </style>