promotionList.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <template>
  2. <view class="index-product-wrapper" :class="iSshowH?'on':''" :style="'padding-top:'+mbConfig+'rpx;'">
  3. <view class="nav-bd">
  4. <view class="item" v-for="(item,index) in explosiveMoney" :index="index" :class="{active:index == ProductNavindex}"
  5. @click="ProductNavTab(item.link.activeVal,index)">
  6. <view class="txt">{{item.chiild[0].val}}</view>
  7. <view class="label">{{item.chiild[1].val}}</view>
  8. </view>
  9. </view>
  10. <!-- 首发新品 -->
  11. <view class="list-box animated" :class='tempArr.length > 0?"fadeIn on":""'>
  12. <view class="item" v-for="(item,index) in tempArr" :key="index" @click="goDetail(item)">
  13. <view class="pictrue">
  14. <span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '1'">秒杀</span>
  15. <span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '2'">砍价</span>
  16. <span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '3'">拼团</span>
  17. <image :src="item.image" mode=""></image>
  18. </view>
  19. <view class="text-info">
  20. <view class="title line1">{{item.store_name}}</view>
  21. <view class="old-price"><text>¥</text>{{item.ot_price}}</view>
  22. <view class="price" :style="'color:'+themeColor+';'">
  23. <text></text>{{item.price}}
  24. <view class="txt" :style="'border-color:'+themeColor+';'" v-if="item.checkCoupon"></view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. // +----------------------------------------------------------------------
  33. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  34. // +----------------------------------------------------------------------
  35. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  36. // +----------------------------------------------------------------------
  37. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  38. // +----------------------------------------------------------------------
  39. // | Author: CRMEB Team <admin@crmeb.com>
  40. // +----------------------------------------------------------------------
  41. export default {
  42. name: 'promotionList',
  43. props: {
  44. dataConfig: {
  45. type: Object,
  46. default: () => {}
  47. },
  48. tempArr: {
  49. type: Array,
  50. default: []
  51. },
  52. iSshowH: {
  53. type: Boolean,
  54. default: false
  55. }
  56. },
  57. data() {
  58. return {
  59. ProductNavindex: 0,
  60. explosiveMoney: this.dataConfig.tabConfig.list,
  61. numConfig: this.dataConfig.numConfig.val,
  62. // imgStyle: this.dataConfig.imgStyle.type,
  63. mbConfig: this.dataConfig.mbConfig.val * 2,
  64. themeColor: this.dataConfig.themeColor.color[0].item
  65. };
  66. },
  67. created() {},
  68. methods: {
  69. // 首发新品切换
  70. ProductNavTab(type, index) {
  71. this.ProductNavindex = index;
  72. this.$emit('changeTab', type);
  73. },
  74. goDetail(item){
  75. this.$emit('detail',item);
  76. }
  77. }
  78. }
  79. </script>
  80. <style lang="scss">
  81. .index-product-wrapper {
  82. margin: 30rpx 20rpx 0 20rpx;
  83. &.on {
  84. min-height: 1500rpx;
  85. }
  86. .nav-bd {
  87. display: flex;
  88. align-items: center;
  89. justify-content: space-around;
  90. .item {
  91. display: flex;
  92. flex-direction: column;
  93. align-items: center;
  94. justify-content: center;
  95. &.on{
  96. border-radius: 0;
  97. }
  98. .txt {
  99. font-size: 32rpx;
  100. color: #282828;
  101. }
  102. .label {
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. width: 124rpx;
  107. height: 32rpx;
  108. margin-top: 5rpx;
  109. font-size: 24rpx;
  110. color: #999;
  111. }
  112. &.active {
  113. color: $theme-color;
  114. .label {
  115. background: linear-gradient(90deg, $bg-star 0%, $bg-end 100%);
  116. border-radius: 16rpx;
  117. color: #fff;
  118. }
  119. }
  120. }
  121. }
  122. .list-box {
  123. display: flex;
  124. flex-wrap: wrap;
  125. justify-content: space-between;
  126. margin-top: 30rpx;
  127. .item {
  128. width: 345rpx;
  129. margin-bottom: 20rpx;
  130. background-color: #fff;
  131. border-radius: 20rpx;
  132. overflow: hidden;
  133. position: relative;
  134. .pictrue_log {
  135. width: 92rpx;
  136. height: 44rpx;
  137. font-size: 26rpx;
  138. line-height: 44rpx;
  139. }
  140. image {
  141. width: 100%;
  142. height: 346rpx;
  143. display: block;
  144. }
  145. .text-info {
  146. padding: 10rpx 20rpx 15rpx;
  147. .title {
  148. color: #222222;
  149. }
  150. .old-price {
  151. margin-top: 4rpx;
  152. font-size: 26rpx;
  153. color: #AAAAAA;
  154. text-decoration: line-through;
  155. text {
  156. margin-right: 2px;
  157. font-size: 20rpx;
  158. }
  159. }
  160. .price {
  161. display: flex;
  162. align-items: flex-end;
  163. color: $theme-color;
  164. font-size: 36rpx;
  165. font-weight: 550;
  166. text {
  167. padding-bottom: 4rpx;
  168. font-size: 26rpx;
  169. font-weight: normal;
  170. }
  171. .txt {
  172. display: flex;
  173. align-items: center;
  174. justify-content: center;
  175. width: 28rpx;
  176. height: 28rpx;
  177. margin-left: 15rpx;
  178. margin-bottom: 10rpx;
  179. border: 1px solid $theme-color;
  180. border-radius: 4rpx;
  181. font-size: 20rpx;
  182. font-weight: normal;
  183. }
  184. }
  185. }
  186. }
  187. &.on {
  188. display: flex;
  189. }
  190. }
  191. }
  192. </style>