logisticsinfo.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <!-- 物流详情 -->
  3. <view class="back">
  4. <view class="top">
  5. <view class="explain">{{i18n.Channelspecification}}</view>
  6. <view class="u-flex u-row-between" style='margin-top:32rpx'>
  7. <text class="mode">{{i18n.Billingmode}}</text>
  8. <text class='mode'>阶梯首重续费模式</text>
  9. </view>
  10. <view class="u-flex u-row-between" style='margin-top:32rpx'>
  11. <text class='mode'>{{i18n.Chargeableweight}}</text>
  12. <text class='mode'>30.00kg</text>
  13. </view>
  14. <view class="u-flex u-row-between" style='margin-top:32rpx'>
  15. <text class='mode'>{{i18n.Estimatedcost}}</text>
  16. <text class='mode'>¥2400.00</text>
  17. </view>
  18. </view>
  19. <view class="top" style="margin-top: 20rpx;">
  20. <view class="explain">{{i18n.Itemtype}}</view>
  21. <view class="" style='margin-top:32rpx'>
  22. 仅限普货,美国限重20kg(8kg以内未
  23. </view>
  24. <view style='margin-top:32rpx' class="explain">{{i18n.Channelrule}}</view>
  25. <view class="" style='margin-top:32rpx'>
  26. 仅限普货,美国限重20kg(8kg以内未
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. };
  36. },
  37. computed: {
  38. i18n() {
  39. return this.$t('index')
  40. }
  41. },
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. .back {
  46. width: 750rpx;
  47. background: #F4F4F4;
  48. padding: 20rpx 24rpx;
  49. box-sizing: border-box;
  50. .mode {
  51. font-family: SFPro, SFPro;
  52. font-weight: 400;
  53. font-size: 28rpx;
  54. color: #555555;
  55. line-height: 32rpx;
  56. text-align: center;
  57. font-style: normal;
  58. }
  59. .explain {
  60. font-family: PingFangSC, PingFang SC;
  61. font-weight: 600;
  62. font-size: 32rpx;
  63. color: #222222;
  64. line-height: 44rpx;
  65. text-align: left;
  66. font-style: normal;
  67. }
  68. .top {
  69. width: 702rpx;
  70. // height: 316rpx;
  71. background: #FFFFFF;
  72. border-radius: 16rpx;
  73. padding: 32rpx 20rpx;
  74. box-sizing: border-box;
  75. }
  76. // .bottom {
  77. // width: 702rpx;
  78. // // height: 912rpx;
  79. // background: #FFFFFF;
  80. // border-radius: 16rpx;
  81. // }
  82. }
  83. </style>