shopro-mini-card.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view class="goods-box u-flex u-col-top" @tap="click">
  3. <view class="goods__tag" v-show="tag"><image class="tag-img" :src="tag" mode="widthFix"></image></view>
  4. <image class="goods_img" lazy-load fade-show :src="image" mode="aspectFill"></u-image>
  5. <view class="u-m-l-20">
  6. <view class="goods-title u-ellipsis-2 u-m-b-10">{{ title }}</view>
  7. <view v-if="subtitle" class="describe-text u-m-b-10 u-ellipsis-1">{{ subtitle }}</view>
  8. <slot name="describe"></slot>
  9. <slot name="cardBottom">
  10. <view class="u-flex u-col-bottom font-OPPOSANS">
  11. <view class="price u-m-r-10">{{ price }}</view>
  12. <view class="origin-price">{{ originPrice }}</view>
  13. </view>
  14. </slot>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. /**
  20. * 商品小卡片
  21. * @property {String} title - 标题
  22. * @property {String} subtitle - 副标题
  23. * @property {String} image - 图片地址
  24. * @property {String} describe - 描述信息
  25. * @property {String | Number} price - 价格
  26. * @property {String | Number} originPrice - 原价
  27. * @property {String} tag - 商品标签
  28. * @property {Number} number - 商品数量
  29. * @event {Function} click - 点击卡片
  30. */
  31. export default {
  32. components: {},
  33. data() {
  34. return {};
  35. },
  36. props: {
  37. image: {
  38. type: String,
  39. default: ''
  40. },
  41. title: {
  42. type: String,
  43. default: ''
  44. },
  45. subtitle: {
  46. type: String,
  47. default: ''
  48. },
  49. describe: {
  50. type: String,
  51. default: ''
  52. },
  53. price: {
  54. type: [Number, String],
  55. default: ''
  56. },
  57. originPrice: {
  58. type: [Number, String],
  59. default: ''
  60. },
  61. tag: {
  62. type: String,
  63. default: ''
  64. },
  65. number: {
  66. type: Number,
  67. default: 0
  68. }
  69. },
  70. computed: {},
  71. created() {},
  72. methods: {
  73. click() {
  74. this.$emit('click');
  75. }
  76. }
  77. };
  78. </script>
  79. <style lang="scss">
  80. .goods-box {
  81. position: relative;
  82. .goods__tag {
  83. position: absolute;
  84. top: 0;
  85. left: 0;
  86. z-index: 5;
  87. .tag-img {
  88. width: 60rpx;
  89. }
  90. }
  91. .goods_img{
  92. width: 180rpx;
  93. height: 180rpx;
  94. border-radius: 6rpx;
  95. }
  96. .goods-title {
  97. font-size: 28rpx;
  98. font-weight: 500;
  99. color: rgba(51, 51, 51, 1);
  100. width: 450rpx;
  101. line-height: 40rpx;
  102. }
  103. .describe-text {
  104. font-size: 24rpx;
  105. width: 450rpx;
  106. color: #a8700d;
  107. }
  108. .price {
  109. color: $u-type-error;
  110. font-weight: 600;
  111. &::before {
  112. content: '¥';
  113. font-size: 20rpx;
  114. }
  115. }
  116. .origin-price {
  117. color: $u-type-info-disabled;
  118. font-size: 24rpx;
  119. text-decoration: line-through;
  120. &::before {
  121. content: '¥';
  122. font-size: 20rpx;
  123. }
  124. }
  125. }
  126. </style>