sh-groupon.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <template>
  2. <!-- 活动商品 -->
  3. <view class="activity-wrap u-p-x-20 u-p-b-20 u-m-b-10 groupon-card" v-if="showActivity">
  4. <!-- 标题栏 -->
  5. <view class="title-box u-flex u-row-between u-p-y-20 groupon-title">
  6. <view class="u-flex u-col-center">
  7. <view class="title-text u-m-r-20 u-ellipsis-1">{{ detail.name }}</view>
  8. </view>
  9. <view class="more-box u-flex" @tap="$Router.push('/pages/activity/groupon/list')">
  10. <text class="more-text u-m-r-10">更多拼团</text>
  11. <text class="iconfont icon-youjiantou-tianchong more-icon"></text>
  12. </view>
  13. </view>
  14. <!-- 活动商品 -->
  15. <!-- m -->
  16. <scroll-view v-if="grouponType === 1" class="scroll-box" scroll-x scroll-anchoring>
  17. <view class="goods-box u-flex">
  18. <view class="min-goods u-m-r-14" v-for="mgoods in goodsList" :key="mgoods.id" @tap="jump('/pages/goods/detail', { id: mgoods.id })">
  19. <view class="img-box"><image class="img" :src="mgoods.image" mode=""></image></view>
  20. <view class="mgoods-card-bottom u-p-20">
  21. <view class="goods-title u-m-b-10 u-ellipsis-1">{{ mgoods.title }}</view>
  22. <view class="price u-m-b-10">{{ mgoods.groupon_price }}</view>
  23. <view class="groupon-num-box u-flex u-col-center" v-if="mgoods.buyers.length">
  24. <view class="avatar-box"><image class="avatar-img u-m-r-10" :src="mgoods.buyers[0].avatar" mode=""></image></view>
  25. <view class="groupon-num-text">{{ mgoods.sales }}人正在拼</view>
  26. </view>
  27. <view class="original-price" v-else>¥{{ mgoods.original_price }}</view>
  28. </view>
  29. </view>
  30. </view>
  31. </scroll-view>
  32. <!--b-->
  33. <view
  34. v-if="grouponType === 2"
  35. class="big-goods u-flex u-p-20 u-col-top u-m-b-16"
  36. v-for="item in goodsList"
  37. :key="item.id"
  38. @tap="jump('/pages/goods/detail', { id: item.id })"
  39. >
  40. <image class="goods-img" :src="item.image" mode="aspectFill"></image>
  41. <view class=" card-right u-m-l-20 u-flex-col u-row-between">
  42. <view class="">
  43. <view class="goods-title u-ellipsis-1 u-m-t-10 u-m-b-10">
  44. <view class=" sm cu-tag radius title-tag u-m-r-10" style="{ backgroundColor: #FF6600, color: '#fff' }">拼团</view>
  45. {{ item.title }}
  46. </view>
  47. <view v-show="item.subtitle" class="subtitle-text u-m-b-10 u-ellipsis-1">{{ item.subtitle }}</view>
  48. </view>
  49. <view class="u-flex u-m-y-20">
  50. <view class="sell-box">
  51. <text class=" hot-icon iconfont icon-icon-test"></text>
  52. <text class="sell-num">已拼{{ item.sales }}件</text>
  53. </view>
  54. <text class="group-num">{{ item.activity.rules.team_num || 0 }}人团</text>
  55. </view>
  56. <view class=" u-flex u-row-between u-col-center">
  57. <view class="u-flex u-col-bottom font-OPPOSANS">
  58. <view class="price u-m-r-10">{{ item.groupon_price }}</view>
  59. <view class="origin-price">{{ item.original_price }}</view>
  60. </view>
  61. <button class="u-reset-button buy-btn" @tap.stop="$Router.push({ path: '/pages/goods/detail', query: { id: item.id } })">马上拼</button>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. /**
  69. * 自定义之拼团样式组件
  70. * @property {Object} detail - 秒杀商品信息
  71. */
  72. export default {
  73. components: {},
  74. data() {
  75. return {
  76. timestamp: 0, //倒计时
  77. goodsList: [],
  78. showActivity: true, //是否显示活动。
  79. grouponType: this.detail.style
  80. };
  81. },
  82. props: {
  83. detail: {
  84. type: Object,
  85. default: () => {
  86. return {};
  87. }
  88. }
  89. },
  90. watch: {},
  91. computed: {},
  92. created() {
  93. this.getActivityGoodsList();
  94. },
  95. methods: {
  96. // 路由跳转
  97. jump(path, parmas) {
  98. this.$Router.push({
  99. path: path,
  100. query: parmas
  101. });
  102. },
  103. // 获取拼团商品
  104. getActivityGoodsList() {
  105. let that = this;
  106. that.$http('goods.activity', {
  107. activity_id: that.detail.id,
  108. need_buyer: 1
  109. }).then(res => {
  110. if (res.code === 1) {
  111. that.goodsList = res.data.goods.data;
  112. that.showActivity = that.goodsList.length;
  113. } else {
  114. that.showActivity = false;
  115. console.log(`%cerr:拼团活动已结束`, 'color:green;background:yellow');
  116. }
  117. });
  118. }
  119. }
  120. };
  121. </script>
  122. <style lang="scss" scoped>
  123. .groupon-card {
  124. background: linear-gradient(#faecca 20%, #ffffff 30%, #ffffff 100%);
  125. }
  126. .groupon-title {
  127. background: url($IMG_URL+'/imgs/tag/groupon_title_bg.png') no-repeat;
  128. background-position: center top;
  129. background-size: 100% auto;
  130. }
  131. .activity-wrap {
  132. background-color: #fff;
  133. min-height: 300rpx;
  134. .title-box {
  135. .title-text {
  136. font-size: 32rpx;
  137. font-weight: bold;
  138. color: #333333;
  139. }
  140. .more-box {
  141. .more-text {
  142. font-size: 22rpx;
  143. font-weight: 500;
  144. color: #333333;
  145. }
  146. .more-icon {
  147. font-size: 24rpx;
  148. color: #333333;
  149. }
  150. }
  151. }
  152. .scroll-box,
  153. .goods-box {
  154. height: 380rpx;
  155. width: 100%;
  156. }
  157. }
  158. // 小商品卡片
  159. .min-goods {
  160. width: 220rpx;
  161. height: 380rpx;
  162. background: #fffaef;
  163. box-shadow: 0px 7rpx 8rpx 1rpx rgba(162, 117, 27, 0.24);
  164. border-radius: 10rpx;
  165. .img-box {
  166. width: 220rpx;
  167. height: 220rpx;
  168. overflow: hidden;
  169. position: relative;
  170. border-radius: 10rpx 10rpx 0 0;
  171. .img {
  172. width: 220rpx;
  173. height: 220rpx;
  174. background-color: #ccc;
  175. }
  176. }
  177. .mgoods-card-bottom {
  178. height: 160rpx;
  179. background: url($IMG_URL+'/imgs/tag/groupon_goods_bg.png') no-repeat;
  180. background-position: bottom center;
  181. background-size: 100% 100%;
  182. }
  183. .goods-title {
  184. font-size: 26rpx;
  185. font-weight: 500;
  186. color: #000000;
  187. width: 180rpx;
  188. line-height: 26rpx;
  189. }
  190. .price {
  191. font-size: 30rpx;
  192. font-weight: 500;
  193. color: #ff0000;
  194. &::before {
  195. content: '¥';
  196. font-size: 24rpx;
  197. }
  198. }
  199. .original-price {
  200. font-size: 20rpx;
  201. font-weight: 500;
  202. text-decoration: line-through;
  203. color: #c4c4c4;
  204. }
  205. .groupon-num-box {
  206. .avatar-box {
  207. direction: rtl;
  208. unicode-bidi: bidi-override;
  209. height: 30rpx;
  210. .avatar-img {
  211. width: 30rpx;
  212. height: 30rpx;
  213. border-radius: 50%;
  214. background-color: #f5f5f5;
  215. }
  216. }
  217. .groupon-num-text {
  218. font-size: 18rpx;
  219. font-weight: 500;
  220. color: #e9b461;
  221. }
  222. }
  223. }
  224. // 大商品卡片
  225. .big-goods {
  226. width: 710rpx;
  227. min-height: 260rpx;
  228. background: #ffffff;
  229. box-shadow: 0px 7rpx 8rpx 1rpx #fffaef;
  230. border-radius: 20rpx;
  231. .goods-img {
  232. width: 220rpx;
  233. height: 220rpx;
  234. border-radius: 6rpx;
  235. }
  236. .card-right {
  237. width: 430rpx;
  238. height: 100%;
  239. }
  240. .goods-title {
  241. font-size: 26rpx;
  242. font-weight: 600;
  243. width: 400rpx;
  244. color: #000000;
  245. vertical-align: middle;
  246. .title-tag {
  247. transform: scale(0.9);
  248. }
  249. }
  250. .subtitle-text {
  251. font-size: 22rpx;
  252. width: 400rpx;
  253. font-weight: 500;
  254. color: #666666;
  255. }
  256. .buy-btn {
  257. width: 120rpx;
  258. line-height: 50rpx;
  259. background: linear-gradient(90deg, #ff6600 0%, #fe832a 100%);
  260. border-radius: 25rpx;
  261. font-size: 24rpx;
  262. font-weight: 500;
  263. color: #ffffff;
  264. }
  265. // 拼团
  266. .sell-box {
  267. background: rgba(#f9efd6, 0.3);
  268. border-radius: 16rpx;
  269. line-height: 32rpx;
  270. .sell-num {
  271. font-size: 20rpx;
  272. font-weight: 400;
  273. color: #ff6904;
  274. }
  275. .hot-icon {
  276. font-size: 26rpx;
  277. color: #ff6904;
  278. margin-right: 8rpx;
  279. }
  280. }
  281. .group-num {
  282. font-size: 20rpx;
  283. font-weight: 500;
  284. color: rgba(153, 153, 153, 1);
  285. margin-left: 20rpx;
  286. }
  287. // 价格
  288. .price {
  289. color: #ff0000;
  290. font-weight: 600;
  291. &::before {
  292. content: '¥';
  293. font-size: 20rpx;
  294. }
  295. }
  296. .origin-price {
  297. color: #c4c4c4;
  298. font-size: 24rpx;
  299. text-decoration: line-through;
  300. &::before {
  301. content: '¥';
  302. font-size: 20rpx;
  303. }
  304. }
  305. }
  306. </style>