commodity.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view class="list">
  3. <view class="merchant"
  4. ><image class="merchant-img" :src="goodsList.image" mode="scaleToFill" />
  5. <view class="merchant-name">{{ goodsList.merchant_name }}</view>
  6. </view>
  7. <view v-for="item in goodsList.goods" :key="item.id" class="detail">
  8. <image :src="item.sku_item.image" class="detail-img" mode=""></image>
  9. <view class="detail-right">
  10. <view class="">
  11. <text class="toptitle">{{ item.goods_name }}</text>
  12. <view class="weight">{{ item.sku_item.item }} </view>
  13. </view>
  14. <view class="u-flex u-row-between">
  15. <view class="money">
  16. <text>¥</text>
  17. <text style="font-size: 34rpx">{{ item.discount_price }}</text>
  18. </view>
  19. <view class="stepping">
  20. <text>x</text>
  21. <!-- <u-icon
  22. name="minus"
  23. size="12"
  24. @click="$emit('changeGoodsNum', 'reduce')"
  25. ></u-icon> -->
  26. <text>{{ item.goods_num }}</text>
  27. <!-- <u-icon
  28. name="plus"
  29. size="12"
  30. @click="$emit('changeGoodsNum', 'increase')"
  31. ></u-icon> -->
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. props: {
  41. //商品列表
  42. goodsList: {
  43. typeof: Array,
  44. default: () => {
  45. return [];
  46. },
  47. },
  48. goodsValue: {
  49. typeof: Number,
  50. default: 0,
  51. },
  52. },
  53. };
  54. </script>
  55. <style scoped lang="scss">
  56. .list {
  57. margin-top: 20rpx;
  58. background-color: #fff;
  59. border-radius: 16rpx;
  60. padding: 28rpx 26rpx 36rpx 24rpx;
  61. .merchant {
  62. display: flex;
  63. justify-content: flex-start;
  64. .merchant-img {
  65. width: 38rpx;
  66. height: 38rpx;
  67. margin-right: 16rpx;
  68. }
  69. .merchant-name {
  70. font-size: 30rpx;
  71. color: #222;
  72. }
  73. }
  74. .detail {
  75. margin-top: 32rpx;
  76. display: flex;
  77. .detail-img {
  78. width: 184rpx;
  79. height: 184rpx;
  80. margin-right: 24rpx;
  81. }
  82. .detail-right {
  83. flex-direction: column;
  84. justify-content: space-between;
  85. height: 184rpx;
  86. display: flex;
  87. flex: 1;
  88. .toptitle {
  89. font-family: PingFangSC, PingFang SC;
  90. font-size: 28rpx;
  91. color: #222222;
  92. width: 100%;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. -webkit-line-clamp: 1;
  96. display: -webkit-box;
  97. -webkit-box-orient: vertical;
  98. word-break: break-all;
  99. margin-bottom: 16rpx;
  100. }
  101. .weight {
  102. font-family: PingFangSC, PingFang SC;
  103. font-size: 24rpx;
  104. color: rgba(34, 34, 34, 0.6);
  105. line-height: 34rpx;
  106. }
  107. .money {
  108. font-family: HarmonyOS_Sans_Medium;
  109. font-size: 24rpx;
  110. color: #f83224;
  111. line-height: 38rpx;
  112. text-align: left;
  113. font-style: normal;
  114. // font-weight: 500;
  115. font-weight: bold;
  116. }
  117. .stepping {
  118. display: flex;
  119. width: 50rpx;
  120. height: 40rpx;
  121. justify-content: space-around;
  122. align-items: center;
  123. font-size: 30rpx;
  124. // border: 2rpx solid rgba(151, 151, 151, 0.4);
  125. border-radius: 20rpx;
  126. }
  127. }
  128. }
  129. }
  130. </style>