bd-flash-sale.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="f-flash">
  3. <view class="f-con cross-center" :class="theme.theme !== 'a' ? theme.backP : ''"
  4. :style="{backgroundImage: theme.theme === 'a' ? `url(${flashSale.cover})` : ''}" @click="navigator">
  5. <view class="f-sign" :class="theme.back">限时抢购</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" :class="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. methods: {
  38. navigator() {
  39. uni.navigateTo({
  40. url: this.flashSale.url
  41. });
  42. }
  43. }
  44. }
  45. </script>
  46. <style scoped lang="scss">
  47. .f-flash {
  48. background-color: #ffffff;
  49. }
  50. .f-con {
  51. width: 662upx;
  52. height: 88upx;
  53. position: relative;
  54. background-repeat: no-repeat;
  55. background-size: 100% 100%;
  56. border-radius: 16upx;
  57. }
  58. .f-back {
  59. width: 100%;
  60. height: 100%;
  61. position: absolute;
  62. }
  63. .f-sign {
  64. height: 34upx;
  65. width: 100upx;
  66. font-size: 20upx;
  67. color: #fff;
  68. text-align: center;
  69. line-height: 34upx;
  70. border-radius: 17upx;
  71. margin:0 20upx;
  72. }
  73. .f-title {
  74. font-size: 26upx;
  75. color: #353535;
  76. }
  77. .f-icon {
  78. width: 54upx;
  79. height: 63upx;
  80. position: absolute;
  81. right: 22upx;
  82. }
  83. .f-text {
  84. font-size: 26upx;
  85. position: absolute;
  86. right: 80upx;
  87. font-weight: bold;
  88. }
  89. </style>