sh-activity.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="sh-activity-box">
  3. <view class="u-flex activity-box u-col-top">
  4. <view class="title">优惠</view>
  5. <view class="activity-content u-flex-1">
  6. <view class="tip-list u-flex u-flex-1 u-col-center" v-for="item in detail" :key="item.id" @tap="showActivity(item.type)">
  7. <view class="u-flex u-flex-1 u-col-center">
  8. <view class="title-tag cu-tag bg-red sm radius u-m-r-10">{{ item.title }}</view>
  9. <view class="tag-box cu-tag line-red sm radius u-m-r-10" v-if="index < 3" v-for="(tag, index) in item.tags" :key="tag">{{ tag }}</view>
  10. </view>
  11. <view class="u-iconfont uicon-arrow-right" style="color: #bfbfbf;font-size: 28rpx;"></view>
  12. </view>
  13. </view>
  14. </view>
  15. <!-- 活动弹窗 -->
  16. <u-popup v-if="showModal" v-model="showModal" @close="onClose" mode="bottom" border-radius="30" :closeable="true" close-icon-pos="top-right">
  17. <view class="activity-modal-box page_box">
  18. <view class="modal-head u-flex u-row-center u-col-center">
  19. <text class="head-title">{{ activityMap[activityType].title }}</text>
  20. </view>
  21. <view class="modal-content content_box">
  22. <view class="tip-list u-flex u-flex-1 u-col-center" @tap="toSelGoods">
  23. <view class="u-flex u-flex-1 modal-item u-row-between u-col-center">
  24. <view class="title-tag cu-tag bg-red sm radius u-m-r-10">{{ activityMap[activityType].title }}</view>
  25. <view class="u-flex u-col-center">
  26. <view class="tag-box cu-tag line-red sm radius u-m-r-10" v-for="(tag, index) in activityMap[activityType].tags" :key="tag">{{ tag }}</view>
  27. </view>
  28. </view>
  29. <view class="u-iconfont uicon-arrow-right" style="color: #bfbfbf;font-size: 28rpx;"></view>
  30. </view>
  31. <view class="all-goods-num">共有{{ activityMap[activityType].num }}件商品参加此活动</view>
  32. </view>
  33. <view class="modal-foot u-flex u-row-center u-col-center"><button class=" u-reset-button serve-btn" @tap="toSelGoods">去凑单</button></view>
  34. </view>
  35. </u-popup>
  36. </view>
  37. </template>
  38. <script>
  39. /**
  40. * 参与优惠活动卡片
  41. * @property {Array} detail - 优惠活动详情列表
  42. * @property {Boolean} showModal- 显隐
  43. */
  44. export default {
  45. components: {},
  46. data() {
  47. return {
  48. showModal: false,
  49. activityType: ''
  50. };
  51. },
  52. props: {
  53. detail: {
  54. type: Array,
  55. default: () => []
  56. }
  57. },
  58. created() {},
  59. computed: {
  60. activityMap() {
  61. let obj = {};
  62. this.detail.forEach(item => {
  63. obj[item.type] = item;
  64. obj[item.type].num = item.goods_ids.split(',').length;
  65. });
  66. return obj;
  67. }
  68. },
  69. methods: {
  70. // 显示
  71. showActivity(type) {
  72. this.activityType = type;
  73. this.showModal = true;
  74. },
  75. // 关闭
  76. onClose() {
  77. this.activityType = '';
  78. this.showModal = false;
  79. },
  80. // 去凑单
  81. toSelGoods() {
  82. this.$Router.push({
  83. path: '/pages/activity/discounts/list',
  84. query: this.activityMap[this.activityType]
  85. });
  86. this.activityType = '';
  87. this.showModal = false;
  88. }
  89. }
  90. };
  91. </script>
  92. <style lang="scss">
  93. .activity-box {
  94. background: #fff;
  95. padding: 30rpx 20rpx 0;
  96. margin: 10rpx 0;
  97. .title {
  98. font-size: 28rpx;
  99. color: #999;
  100. margin-right: 20rpx;
  101. }
  102. .activity-content {
  103. .tip-list {
  104. font-size: 28rpx;
  105. width: 100%;
  106. padding-bottom: 30rpx;
  107. }
  108. }
  109. }
  110. // 弹窗
  111. .activity-modal-box {
  112. width: 750rpx;
  113. min-height: 700rpx;
  114. border-radius: 30rpx 30rpx 0 0;
  115. background: #fff;
  116. padding: 30rpx;
  117. .serve-btn {
  118. width: 690rpx;
  119. line-height: 80rpx;
  120. background: linear-gradient(90deg, rgba(240, 199, 133, 1), rgba(246, 214, 157, 1));
  121. border-radius: 40rpx;
  122. font-size: 30rpx;
  123. color: rgba(#fff, 0.9);
  124. margin-top: 40rpx;
  125. }
  126. .modal-head {
  127. margin-bottom: 30rpx;
  128. position: relative;
  129. .head-title {
  130. font-size: 32rpx;
  131. font-weight: bold;
  132. }
  133. }
  134. .modal-content {
  135. overflow-y: auto;
  136. .tip-list {
  137. font-size: 28rpx;
  138. width: 100%;
  139. padding: 20rpx 0;
  140. border-bottom: 1rpx solid #eeeeee;
  141. }
  142. .all-goods-num {
  143. font-size: 28rpx;
  144. font-weight: 500;
  145. color: #333333;
  146. padding: 20rpx 0;
  147. }
  148. }
  149. }
  150. </style>