logisticsinfo.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. weight:'',
  36. monry:''
  37. };
  38. },
  39. onLoad(options) {
  40. this.weight = options.weight
  41. this.money = options.money
  42. },
  43. computed: {
  44. i18n() {
  45. return this.$t('index')
  46. }
  47. },
  48. }
  49. </script>
  50. <style lang="scss" scoped>
  51. .back {
  52. width: 750rpx;
  53. background: #F4F4F4;
  54. padding: 20rpx 24rpx;
  55. box-sizing: border-box;
  56. .mode {
  57. font-family: SFPro, SFPro;
  58. font-weight: 400;
  59. font-size: 28rpx;
  60. color: #555555;
  61. line-height: 32rpx;
  62. text-align: center;
  63. font-style: normal;
  64. }
  65. .explain {
  66. font-family: PingFangSC, PingFang SC;
  67. font-weight: 600;
  68. font-size: 32rpx;
  69. color: #222222;
  70. line-height: 44rpx;
  71. text-align: left;
  72. font-style: normal;
  73. }
  74. .top {
  75. width: 702rpx;
  76. // height: 316rpx;
  77. background: #FFFFFF;
  78. border-radius: 16rpx;
  79. padding: 32rpx 20rpx;
  80. box-sizing: border-box;
  81. }
  82. // .bottom {
  83. // width: 702rpx;
  84. // // height: 912rpx;
  85. // background: #FFFFFF;
  86. // border-radius: 16rpx;
  87. // }
  88. }
  89. </style>