sh-groupon.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <template>
  2. <view class="group-people">
  3. <block v-if="grouponTeamList.length">
  4. <view class="into-title u-flex u-row-between">
  5. <text>已有{{ grouponData.sales }}人参与活动</text>
  6. <view class="u-iconfont uicon-arrow-right" style="color: #bfbfbf;font-size: 28rpx;" @tap="onMoreGrouponTeam"></view>
  7. </view>
  8. <view class="into-item u-flex u-row-between" v-for="(g, index) in grouponTeamList" :key="g.id" v-if="index < 2">
  9. <view class="u-flex">
  10. <image class="into-img" :src="g.leader.user_avatar" mode="aspectFill"></image>
  11. <text class="into-name">{{ g.leader.user_nickname }}</text>
  12. </view>
  13. <view class="u-flex">
  14. <view class="">
  15. <view class="num">
  16. 还差
  17. <text class="num-color">{{ g.num - g.current_num }}人</text>
  18. 成团
  19. </view>
  20. <view class="time" v-if="g.expiretime && g.time">剩余时间{{ g.time.h }}:{{ g.time.m }}:{{ g.time.s }}</view>
  21. </view>
  22. <button class="u-reset-button join-btn" @tap="jump('/pages/activity/groupon/detail', { id: g.id })">去参团</button>
  23. </view>
  24. </view>
  25. </block>
  26. <!-- 弹窗 -->
  27. <u-popup v-model="showModal" mode="bottom" :closeable="true" close-icon-pos="top-right">
  28. <view class="modal-box page_box">
  29. <view class="modal-head u-flex u-row-center">
  30. <text class="head-title">正在拼团</text>
  31. </view>
  32. <view class="modal-content content_box y-f">
  33. <view class="into-item u-flex u-row-between" v-for="g in grouponTeamList" :key="g.id">
  34. <view class="u-flex">
  35. <image class="into-img" :src="g.leader.user_avatar" mode="aspectFill"></image>
  36. <text class="into-name">{{ g.leader.user_nickname }}</text>
  37. </view>
  38. <view class="u-flex">
  39. <view class="y-end">
  40. <view class="num">
  41. 还差
  42. <text class="num-color">{{ g.num - g.current_num }}人</text>
  43. 成团
  44. </view>
  45. <view class="time" v-if="g.expiretime && g.time">剩余时间{{ g.time.h }}:{{ g.time.m }}:{{ g.time.s }}</view>
  46. </view>
  47. <button class="u-reset-button join-btn" @tap="joinTeam('/pages/activity/groupon/detail', { id: g.id })">去参团</button>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="modal-foot u-flex u-row-center u-col-center">仅显示10个正在拼团的人</view>
  52. </view>
  53. </u-popup>
  54. </view>
  55. </template>
  56. <script>
  57. /**
  58. * 商品已拼团卡片
  59. * @property {Object} grouponData - 商品已拼团信息
  60. */
  61. let timer;
  62. export default {
  63. components: {},
  64. data() {
  65. return {
  66. grouponTeamList: [], //原数组
  67. showModal: false
  68. };
  69. },
  70. props: {
  71. grouponData: {}
  72. },
  73. computed: {},
  74. beforeDestroy() {
  75. clearInterval(timer);
  76. timer=null
  77. },
  78. created() {
  79. this.getGrouponItem();
  80. let that = this;
  81. timer = setInterval(() => {
  82. that.grouponTeamList.forEach((item, index) => {
  83. let nowTime = new Date().getTime();
  84. let endTime = item.expiretime * 1000;
  85. let t = (endTime - nowTime) / 1000;
  86. let time = that.$tools.format(t);
  87. that.$set(that.grouponTeamList[index], 'time', time);
  88. });
  89. }, 1000);
  90. },
  91. methods: {
  92. hideModal() {
  93. this.showModal = false;
  94. },
  95. jump(path, parmas) {
  96. this.$Router.push({
  97. path: path,
  98. query: parmas
  99. });
  100. },
  101. joinTeam(path, parmas) {
  102. this.showModal = false;
  103. this.$Router.push({
  104. path: path,
  105. query: parmas
  106. });
  107. },
  108. onMoreGrouponTeam() {
  109. this.showModal = true;
  110. },
  111. // 拼购人
  112. getGrouponItem() {
  113. let that = this;
  114. that.$http('goods.grouponItem', {
  115. goods_id: that.grouponData.id,
  116. activity_id: that.grouponData.activity.id
  117. }).then(res => {
  118. if (res.code === 1) {
  119. that.grouponTeamList = res.data;
  120. }
  121. });
  122. }
  123. }
  124. };
  125. </script>
  126. <style lang="scss">
  127. // 弹窗
  128. .modal-box {
  129. width: 750rpx;
  130. height: 800rpx;
  131. border-radius: 30rpx 30rpx 0 0;
  132. background: #fff;
  133. .modal-head {
  134. height: 92rpx;
  135. border-bottom: 1px solid rgba(223, 223, 223, 0.5);
  136. padding: 0 30rpx;
  137. .head-title {
  138. font-size: 32rpx;
  139. font-weight: bold;
  140. }
  141. }
  142. .modal-content {
  143. padding: 0 30rpx;
  144. }
  145. .modal-foot {
  146. font-size: 24rpx;
  147. font-weight: 500;
  148. color: rgba(153, 153, 153, 1);
  149. height: 80rpx;
  150. border-top: 1px solid rgba(223, 223, 223, 0.5);
  151. }
  152. }
  153. // 拼团人数
  154. .group-people {
  155. background-color: #fff;
  156. padding: 0 20rpx;
  157. margin-top: 10rpx;
  158. .into-title {
  159. height: 80rpx;
  160. font-size: 26rpx;
  161. font-weight: bold;
  162. }
  163. }
  164. .into-item {
  165. height: 120rpx;
  166. width: 100%;
  167. border-bottom: 1rpx solid #eee;
  168. .into-img {
  169. width: 60rpx;
  170. height: 60rpx;
  171. border-radius: 50%;
  172. margin-right: 23rpx;
  173. background-color: #ccc;
  174. }
  175. .into-name {
  176. font-size: 28rpx;
  177. font-weight: 500;
  178. color: rgba(102, 102, 102, 1);
  179. }
  180. .num {
  181. font-size: 26rpx;
  182. color: #666;
  183. .num-color {
  184. font-size: 24rpx;
  185. color: #a8700d;
  186. }
  187. }
  188. .time {
  189. font-size: 22rpx;
  190. margin-top: 10rpx;
  191. color: #999;
  192. }
  193. .join-btn {
  194. width: 140rpx;
  195. line-height: 60rpx;
  196. background: linear-gradient(90deg, rgba(254, 131, 42, 1), rgba(255, 102, 0, 1));
  197. box-shadow: 0px 7rpx 6rpx 0px rgba(255, 104, 4, 0.22);
  198. border-radius: 30rpx;
  199. padding: 0;
  200. font-size: 26rpx;
  201. font-weight: 500;
  202. color: rgba(255, 255, 255, 1);
  203. margin-left: 40rpx;
  204. }
  205. }
  206. </style>