s-goods-item.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view>
  3. <view>
  4. <slot name="top"></slot>
  5. </view>
  6. <view
  7. class="ss-order-card-warp ss-flex ss-col-stretch ss-row-between bg-white"
  8. :style="[{ borderRadius: radius + 'rpx', marginBottom: marginBottom + 'rpx' }]"
  9. >
  10. <view class="img-box ss-m-r-24">
  11. <image class="order-img" :src="sheep.$url.cdn(img)" mode="aspectFill"></image>
  12. </view>
  13. <view
  14. class="box-right ss-flex-col ss-row-between"
  15. :style="[{ width: titleWidth ? titleWidth + 'rpx' : '' }]"
  16. >
  17. <view class="title-text ss-line-2" v-if="title">{{ title }}</view>
  18. <view v-if="skuString" class="spec-text ss-m-t-8 ss-m-b-12">{{ skuString }}</view>
  19. <view class="groupon-box">
  20. <slot name="groupon"></slot>
  21. </view>
  22. <view class="ss-flex">
  23. <view class="ss-flex ss-col-center">
  24. <view
  25. class="price-text ss-flex ss-col-center"
  26. :style="[{ color: priceColor }]"
  27. v-if="price && Number(price) > 0"
  28. >
  29. ¥{{ fen2yuan(price) }}
  30. </view>
  31. <view v-if="num" class="total-text ss-flex ss-col-center">x {{ num }}</view>
  32. <slot name="priceSuffix"></slot>
  33. </view>
  34. </view>
  35. <view class="tool-box">
  36. <slot name="tool"></slot>
  37. </view>
  38. <view>
  39. <slot name="rightBottom"></slot>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script setup>
  46. import sheep from '@/sheep';
  47. import { computed } from 'vue';
  48. import { fen2yuan } from '@/sheep/hooks/useGoods';
  49. /**
  50. * 订单卡片
  51. *
  52. * @property {String} img - 图片
  53. * @property {String} title - 标题
  54. * @property {Number} titleWidth = 0 - 标题宽度,默认0,单位rpx
  55. * @property {String} skuText - 规格
  56. * @property {String | Number} price - 价格
  57. * @property {String} priceColor - 价格颜色
  58. * @property {Number | String} num - 数量
  59. *
  60. */
  61. const props = defineProps({
  62. img: {
  63. type: String,
  64. default: 'https://img1.baidu.com/it/u=1601695551,235775011&fm=26&fmt=auto',
  65. },
  66. title: {
  67. type: String,
  68. default: '',
  69. },
  70. titleWidth: {
  71. type: Number,
  72. default: 0,
  73. },
  74. skuText: {
  75. type: [String, Array],
  76. default: '',
  77. },
  78. price: {
  79. type: [String, Number],
  80. default: '',
  81. },
  82. priceColor: {
  83. type: [String],
  84. default: '',
  85. },
  86. num: {
  87. type: [String, Number],
  88. default: 0,
  89. },
  90. score: {
  91. type: [String, Number],
  92. default: '',
  93. },
  94. radius: {
  95. type: [String],
  96. default: '',
  97. },
  98. marginBottom: {
  99. type: [String],
  100. default: '',
  101. },
  102. });
  103. const skuString = computed(() => {
  104. if (!props.skuText) {
  105. return '';
  106. }
  107. if (typeof props.skuText === 'object') {
  108. return props.skuText.join(',');
  109. }
  110. return props.skuText;
  111. });
  112. </script>
  113. <style lang="scss" scoped>
  114. .score-img {
  115. width: 36rpx;
  116. height: 36rpx;
  117. margin: 0 4rpx;
  118. }
  119. .ss-order-card-warp {
  120. padding: 20rpx;
  121. .img-box {
  122. width: 164rpx;
  123. height: 164rpx;
  124. border-radius: 10rpx;
  125. overflow: hidden;
  126. .order-img {
  127. width: 164rpx;
  128. height: 164rpx;
  129. }
  130. }
  131. .box-right {
  132. flex: 1;
  133. // width: 500rpx;
  134. // height: 164rpx;
  135. position: relative;
  136. .tool-box {
  137. position: absolute;
  138. right: 0rpx;
  139. bottom: -10rpx;
  140. }
  141. }
  142. .title-text {
  143. font-size: 28rpx;
  144. font-weight: 500;
  145. line-height: 40rpx;
  146. }
  147. .spec-text {
  148. font-size: 24rpx;
  149. font-weight: 400;
  150. color: $dark-9;
  151. min-width: 0;
  152. overflow: hidden;
  153. text-overflow: ellipsis;
  154. display: -webkit-box;
  155. -webkit-line-clamp: 1;
  156. -webkit-box-orient: vertical;
  157. }
  158. .price-text {
  159. font-size: 24rpx;
  160. font-weight: 500;
  161. font-family: OPPOSANS;
  162. }
  163. .total-text {
  164. font-size: 24rpx;
  165. font-weight: 400;
  166. line-height: 24rpx;
  167. color: $dark-9;
  168. margin-left: 8rpx;
  169. }
  170. }
  171. </style>