commodity.vue 3.1 KB

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