logisticsinfo.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <!-- 物流详情 -->
  3. <view class="back">
  4. <view class="top">
  5. <view class="explain">渠道说明</view>
  6. <view class="u-flex u-row-between" style='margin-top:32rpx'>
  7. <text class="mode">计费模式</text>
  8. <text class='mode'>阶梯首重续费模式</text>
  9. </view>
  10. <view class="u-flex u-row-between" style='margin-top:32rpx'>
  11. <text class='mode'>计费重量</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'>预估费用</text>
  16. <text class='mode'>¥2400.00</text>
  17. </view>
  18. </view>
  19. <view class="top" style="margin-top: 20rpx;">
  20. <view class="explain">物品类型</view>
  21. <view class="" style='margin-top:32rpx'>
  22. 仅限普货,美国限重20kg(8kg以内未
  23. </view>
  24. <view style='margin-top:32rpx' class="explain">渠道规则</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. }
  38. </script>
  39. <style lang="scss" scoped>
  40. .back {
  41. width: 750rpx;
  42. background: #F4F4F4;
  43. padding: 20rpx 24rpx;
  44. box-sizing: border-box;
  45. .mode {
  46. font-family: SFPro, SFPro;
  47. font-weight: 400;
  48. font-size: 28rpx;
  49. color: #555555;
  50. line-height: 32rpx;
  51. text-align: center;
  52. font-style: normal;
  53. }
  54. .explain {
  55. font-family: PingFangSC, PingFang SC;
  56. font-weight: 600;
  57. font-size: 32rpx;
  58. color: #222222;
  59. line-height: 44rpx;
  60. text-align: left;
  61. font-style: normal;
  62. }
  63. .top {
  64. width: 702rpx;
  65. // height: 316rpx;
  66. background: #FFFFFF;
  67. border-radius: 16rpx;
  68. padding: 32rpx 20rpx;
  69. box-sizing: border-box;
  70. }
  71. // .bottom {
  72. // width: 702rpx;
  73. // // height: 912rpx;
  74. // background: #FFFFFF;
  75. // border-radius: 16rpx;
  76. // }
  77. }
  78. </style>