goodsInformation.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <template>
  2. <view class="list">
  3. <!-- 商品相关 -->
  4. <view class="abount" style="margin-top: 20rpx">
  5. <view class="u-flex u-row-between" style="margin-bottom: 40rpx">
  6. <view class="name">{{ i18n.Commodityamount }}</view>
  7. <view class="money"> ¥{{ goodsPrice }} </view>
  8. </view>
  9. <view class="u-flex u-row-between" v-if="containname">
  10. <view class="name">{{ i18n.Grosscommodityweight }}</view>
  11. <view class="money">{{ goodsWeight * goodsValue }}kg</view>
  12. </view>
  13. <view class="back u-flex" v-if="containname">
  14. <image
  15. src="../../../static/images/warning.png"
  16. style="width: 32rpx; height: 32rpx"
  17. mode=""
  18. ></image>
  19. <text style="margin-left: 12rpx; font-size: 24rpx"
  20. >{{ i18n.buy }}{{ countGoodsInformation.max_weight }}kg{{
  21. i18n.price
  22. }}¥{{ countGoodsInformation.unit_fee }},{{
  23. i18n.morefavorable
  24. }}</text
  25. >
  26. </view>
  27. <view
  28. class="u-flex u-row-between"
  29. style="margin-bottom: 40rpx; margin-top: 20rpx"
  30. >
  31. <view class="name">{{ i18n.Costperkilogram }}</view>
  32. <view class="money">{{
  33. containname ? countGoodsInformation.unit_price : i18n.shippingmethod
  34. }}</view>
  35. </view>
  36. <view class="u-flex u-row-between">
  37. <view class="name">{{ i18n.freight }}</view>
  38. <view class="money">{{
  39. containname ? countGoodsInformation.sum : i18n.shippingmethod
  40. }}</view>
  41. </view>
  42. <view class="zong u-flex u-row-right">
  43. <view class="">
  44. <text class="small">{{ i18n.subtotal }}</text>
  45. <text class="mon">¥</text>
  46. <!-- <text class="mon" style="font-size: 40rpx">{{
  47. goodinfo.is_discount == 1
  48. ? (Number(sku_info.price * 100) * Number(goodsValue * 100)) /
  49. 10000
  50. : (Number(sku_info.discount_price * 100) *
  51. Number(goodsValue * 100)) /
  52. 10000
  53. }}</text> -->
  54. <text class="mon" style="font-size: 40rpx">{{ goodsPrice }}</text>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. props: {
  63. goodinfo: {
  64. typeof: Object,
  65. default: () => {
  66. return {};
  67. },
  68. },
  69. sku_info: {
  70. typeof: Object,
  71. default: () => {
  72. return {};
  73. },
  74. },
  75. //货柜名称,用来判断是否已经选择货柜,显示选择货柜之后的内容
  76. containname: {
  77. typeof: String,
  78. default: "",
  79. },
  80. //商品价格
  81. goodsPrice: {
  82. typeof: String,
  83. default: "",
  84. },
  85. //选完货柜之后的商品信息
  86. countGoodsInformation: {
  87. typeof: Object,
  88. default: () => {
  89. return {};
  90. },
  91. },
  92. //商品数量
  93. goodsValue: {
  94. typeof: Number,
  95. default: 0,
  96. },
  97. //商品重量
  98. goodsWeight: {
  99. typeof: Number,
  100. default: 0,
  101. },
  102. },
  103. computed: {
  104. i18n() {
  105. return this.$t("index");
  106. },
  107. },
  108. };
  109. </script>
  110. <style scoped lang="scss">
  111. .list {
  112. //商品相关
  113. .abount {
  114. padding: 28rpx 24rpx;
  115. box-sizing: border-box;
  116. background: #ffffff;
  117. border-radius: 16rpx;
  118. width: 702rpx;
  119. .zong {
  120. width: 654rpx;
  121. padding: 22rpx 0 0 0;
  122. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  123. margin-top: 32rpx;
  124. .small {
  125. font-family: PingFangTC, PingFangTC;
  126. font-weight: 400;
  127. font-size: 24rpx;
  128. color: #444444;
  129. line-height: 34rpx;
  130. text-align: left;
  131. font-style: normal;
  132. }
  133. .mon {
  134. font-family: HarmonyOS_Sans_Medium;
  135. font-size: 28rpx;
  136. color: #f83224;
  137. line-height: 38rpx;
  138. text-align: left;
  139. font-style: normal;
  140. margin-left: 12rpx;
  141. font-weight: bold;
  142. }
  143. }
  144. .back {
  145. background: rgba(244, 244, 244, 1);
  146. padding: 22rpx 16rpx;
  147. box-sizing: border-box;
  148. margin-top: 10rpx;
  149. // margin-bottom: 20rpx;
  150. }
  151. .name {
  152. font-family: PingFangSC, PingFang SC;
  153. font-weight: 400;
  154. font-size: 28rpx;
  155. color: #333333;
  156. line-height: 40rpx;
  157. text-align: left;
  158. font-style: normal;
  159. }
  160. .money {
  161. font-family: HarmonyOS_Sans_Medium;
  162. font-size: 28rpx;
  163. color: #222222;
  164. line-height: 38rpx;
  165. text-align: left;
  166. font-style: normal;
  167. font-weight: 600;
  168. }
  169. }
  170. }
  171. </style>