shop-goods.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view class="goods">
  3. <image class="goods-logo" :src="goodsDetail.img" mode="widthFix"></image>
  4. <view class="goods-info">
  5. <view class="title">
  6. {{goodsDetail.name}}
  7. </view>
  8. <!-- <view class="sales" v-show="goodsDetail.sales_volume > 0">
  9. 月销:{{goodsDetail.sales_volume}}
  10. </view> -->
  11. <view class="price">
  12. <view class="hot-large">
  13. <rich-text :nodes="$mUtil.priceBigSmall(goodsDetail.price)"></rich-text>
  14. </view>
  15. <view class="small">¥ {{ goodsDetail.original_price }}</view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. name: 'shop-goods',
  23. props: {
  24. goodsDetail: {
  25. type: Object,
  26. default: () => {}
  27. }
  28. },
  29. data() {
  30. return {
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. .goods {
  39. width: 100%;
  40. display: flex;
  41. padding-bottom: 20rpx;
  42. margin-bottom: 25rpx;
  43. border-bottom: 1rpx solid #e6e6e6;
  44. .goods-logo {
  45. width: 132rpx;
  46. height: 132rpx !important;
  47. flex-shrink: 0;
  48. margin-right: 27rpx;
  49. border-radius: 10rpx;
  50. }
  51. .goods-info {
  52. flex: 1;
  53. width: 0;
  54. padding-top: 5rpx;
  55. .title {
  56. width: 100%;
  57. margin-bottom: 16rpx;
  58. font-size: 28rpx;
  59. font-family: PingFang SC, PingFang SC-Regular;
  60. font-weight: 400;
  61. color: #181818;
  62. display: -webkit-box;
  63. text-overflow: ellipsis;
  64. overflow: hidden;
  65. -webkit-box-orient: vertical;
  66. -webkit-line-clamp: 2;
  67. }
  68. .sales {
  69. margin-bottom: 5rpx;
  70. }
  71. .price {
  72. display: flex;
  73. align-items: center;
  74. .hot-large {
  75. color: #FF6600;
  76. font-size: 36rpx;
  77. font-weight: Bold;
  78. line-height: 24rpx;
  79. text {
  80. font-size: 36rpx;
  81. margin-left: 10rpx;
  82. }
  83. }
  84. .small {
  85. margin-left: 20rpx;
  86. font-size: 22rpx;
  87. font-family: PingFang SC, PingFang SC-Medium;
  88. font-weight: 500;
  89. text-decoration: line-through;
  90. color: #cccccc;
  91. }
  92. }
  93. }
  94. }
  95. </style>