promotionList.vue 5.3 KB

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