logisticsinfo.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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'>{{i18n.Ladder}}</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'>{{weight}}kg</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'>¥{{money}}</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. <view class="" v-if="language=='zh-CN'">
  23. <u-parse :content="contenttop.content_cn"></u-parse>
  24. </view>
  25. <view class="" v-if="language=='en-US'">
  26. <u-parse :content="contenttop.content_en"></u-parse>
  27. </view>
  28. <view class="" v-if="language=='es-ES'">
  29. <u-parse :content="contenttop.content_es"></u-parse>
  30. </view>
  31. <view class="" v-if="language=='it-IT'">
  32. <u-parse :content="contenttop.content_ita"></u-parse>
  33. </view>
  34. </view>
  35. <view style='margin-top:32rpx' class="explain">{{i18n.Channelrule}}</view>
  36. <view class="" style='margin-top:32rpx'>
  37. <view class="" v-if="language=='zh-CN'">
  38. <u-parse :content="content.content_cn"></u-parse>
  39. </view>
  40. <view class="" v-if="language=='en-US'">
  41. <u-parse :content="content.content_en"></u-parse>
  42. </view>
  43. <view class="" v-if="language=='es-ES'">
  44. <u-parse :content="content.content_es"></u-parse>
  45. </view>
  46. <view class="" v-if="language=='it-IT'">
  47. <u-parse :content="content.content_ita"></u-parse>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. data() {
  56. return {
  57. weight: '',
  58. money: '',
  59. language: 'zh-CN',
  60. content:'',
  61. contenttop:''
  62. };
  63. },
  64. onLoad(options) {
  65. this.weight = options.weight
  66. this.money = options.money
  67. },
  68. onShow() {
  69. this.agreementtop()
  70. this.agreement()
  71. if (uni.getStorageSync('language') != '') {
  72. this.language = uni.getStorageSync('language')
  73. }
  74. },
  75. computed: {
  76. i18n() {
  77. return this.$t('index')
  78. }
  79. },
  80. methods: {
  81. agreement() {
  82. uni.$u.http
  83. .get("/api/agreement?code=channel_rule")
  84. .then((res) => {
  85. this.content = res
  86. })
  87. .catch(() => {});
  88. },
  89. agreementtop() {
  90. uni.$u.http
  91. .get("/api/agreement?code=goods_type")
  92. .then((res) => {
  93. this.contenttop = res
  94. })
  95. .catch(() => {});
  96. }
  97. }
  98. }
  99. </script>
  100. <style lang="scss" scoped>
  101. .back {
  102. width: 750rpx;
  103. background: #F4F4F4;
  104. padding: 20rpx 24rpx;
  105. box-sizing: border-box;
  106. .mode {
  107. font-family: SFPro, SFPro;
  108. font-weight: 400;
  109. font-size: 28rpx;
  110. color: #555555;
  111. line-height: 32rpx;
  112. text-align: center;
  113. font-style: normal;
  114. }
  115. .explain {
  116. font-family: PingFangSC, PingFang SC;
  117. font-weight: 600;
  118. font-size: 32rpx;
  119. color: #222222;
  120. line-height: 44rpx;
  121. text-align: left;
  122. font-style: normal;
  123. }
  124. .top {
  125. width: 702rpx;
  126. // height: 316rpx;
  127. background: #FFFFFF;
  128. border-radius: 16rpx;
  129. padding: 32rpx 20rpx;
  130. box-sizing: border-box;
  131. }
  132. // .bottom {
  133. // width: 702rpx;
  134. // // height: 912rpx;
  135. // background: #FFFFFF;
  136. // border-radius: 16rpx;
  137. // }
  138. }
  139. </style>