commodity.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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
  10. class=""
  11. style="
  12. flex-direction: column;
  13. justify-content: space-between;
  14. height: 184rpx;
  15. display: flex;
  16. flex: 1;
  17. "
  18. >
  19. <view class="">
  20. <text class="toptitle">{{ item.goods.name_cn }}</text>
  21. <view class="weight">{{ item.sku_item.item }} </view>
  22. </view>
  23. <view class="u-flex u-row-between">
  24. <view class="">
  25. <text class="money">¥</text>
  26. <text class="money" style="font-size: 34rpx">{{
  27. item.sku_item.price
  28. }}</text>
  29. </view>
  30. <view class=""> x {{ item.goods_num }}</view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. props: {
  39. //商品列表
  40. goodsList: {
  41. typeof: Array,
  42. default: () => {
  43. return [];
  44. },
  45. },
  46. },
  47. };
  48. </script>
  49. <style scoped lang="scss">
  50. .list {
  51. margin-top: 20rpx;
  52. background-color: #fff;
  53. border-radius: 16rpx;
  54. padding: 28rpx 26rpx 36rpx 24rpx;
  55. .merchant {
  56. display: flex;
  57. justify-content: flex-start;
  58. .merchant-img {
  59. width: 38rpx;
  60. height: 38rpx;
  61. margin-right: 16rpx;
  62. }
  63. .merchant-name {
  64. font-size: 30rpx;
  65. color: #222;
  66. }
  67. }
  68. .detail {
  69. margin-top: 32rpx;
  70. display: flex;
  71. .detail-img {
  72. width: 184rpx;
  73. height: 184rpx;
  74. margin-right: 24rpx;
  75. }
  76. }
  77. }
  78. </style>