bd-flash-sale.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="f-flash">
  3. <view class="f-con cross-center"
  4. :style="flashStyle" @click="navigator">
  5. <view class="f-sign" :style="{'background-color': theme.background}">限时抢购</view>
  6. <view class="f-title">
  7. {{flashSale.discount_type == 2 ? '减': ''}}
  8. {{flashSale.min_discount}}
  9. {{flashSale.discount_type == 2 ? '元' : '折'}}&nbsp;&nbsp;
  10. {{flashSale.time_status == 1 ? flashSale.start_at : flashSale.end_at}}
  11. {{flashSale.time_status == 1 ? '开始' : '结束'}}
  12. </view>
  13. <view class="f-text" :style="{'color': theme.color}">
  14. 去{{flashSale.time_status == 1 ? '加' : '抢'}}购
  15. </view>
  16. <image class="f-icon" src="/static/image/icon/flash-sale.gif"></image>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. name: "bd-flash-sale",
  23. props: {
  24. flashSale: {
  25. type: Object,
  26. default() {
  27. return {
  28. time_status: 1,
  29. start_at: '',
  30. end_at: '',
  31. min_discount: ''
  32. }
  33. }
  34. },
  35. theme: Object
  36. },
  37. computed:{
  38. flashStyle() {
  39. if(this.theme.theme == 'a' && this.flashSale.cover) {
  40. return "background-image: url('" + this.flashSale.cover + ')'
  41. }else {
  42. return "background:" + this.theme.background_p
  43. }
  44. }
  45. },
  46. methods: {
  47. navigator() {
  48. uni.navigateTo({
  49. url: this.flashSale.url
  50. });
  51. }
  52. }
  53. }
  54. </script>
  55. <style scoped lang="scss">
  56. .f-flash {
  57. background-color: #ffffff;
  58. }
  59. .f-con {
  60. width: 662upx;
  61. height: 88upx;
  62. position: relative;
  63. background-repeat: no-repeat;
  64. background-size: 100% 100%;
  65. border-radius: 16upx;
  66. }
  67. .f-back {
  68. width: 100%;
  69. height: 100%;
  70. position: absolute;
  71. }
  72. .f-sign {
  73. height: 34upx;
  74. width: 100upx;
  75. font-size: 20upx;
  76. color: #fff;
  77. text-align: center;
  78. line-height: 34upx;
  79. border-radius: 17upx;
  80. margin:0 20upx;
  81. }
  82. .f-title {
  83. font-size: 26upx;
  84. color: #353535;
  85. }
  86. .f-icon {
  87. width: 54upx;
  88. height: 63upx;
  89. position: absolute;
  90. right: 22upx;
  91. }
  92. .f-text {
  93. font-size: 26upx;
  94. position: absolute;
  95. right: 80upx;
  96. font-weight: bold;
  97. }
  98. </style>