orderinfo.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="back">
  3. <u-navbar :title="i18n.Vieworder" @leftClick="leftClick" :autoBack='false' :placeholder='true'>
  4. </u-navbar>
  5. <view class="top u-flex u-row-between">
  6. <text class="success">{{i18n.successful}}</text>
  7. <text class="sun">{{i18n.pickpackage}}</text>
  8. </view>
  9. <view class="address">
  10. <view class="" style="margin-top: 44rpx;">
  11. <view class="u-flex">
  12. <image src="/static/express/ji.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  13. <text class="name" style="margin-left: 28rpx;">{{orderinfo.from_name}}</text>
  14. <text class="name" style="margin-left: 12rpx;">{{orderinfo.from_mobile}}</text>
  15. </view>
  16. <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
  17. {{orderinfo.from_full_address}}
  18. </view>
  19. </view>
  20. <view class="" style="margin: 44rpx 0;">
  21. <view class="u-flex">
  22. <image src="/static/express/shou.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  23. <text class="name" style="margin-left: 28rpx;">{{orderinfo.transit_name}}</text>
  24. <text class="name" style="margin-left: 12rpx;">{{orderinfo.transit_mobile}}</text>
  25. </view>
  26. <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
  27. {{orderinfo.transit_full_address}}
  28. </view>
  29. </view>
  30. </view>
  31. <view class="orderinfo">
  32. <view class="num">
  33. <text class='num'>{{i18n.OrderNumber}}:</text>
  34. <text class='num'>{{orderinfo.order_no}}</text>
  35. </view>
  36. <view class="num" style="margin-top: 50rpx;">
  37. <text class='num'>{{i18n.Ordertime}}:</text>
  38. <text class='num'>{{orderinfo.created_at}}</text>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. orderinfo: {}
  48. };
  49. },
  50. onLoad(options) {
  51. this.orderinfo = JSON.parse(decodeURIComponent(options.orderinfo));
  52. console.log(this.orderinfo);
  53. this.$u.toast(this.i18n.successful + this.i18n.myPackage + '-' + this.i18n.Vieworder)
  54. },
  55. computed: {
  56. i18n() {
  57. return this.$t('index')
  58. }
  59. },
  60. methods: {
  61. leftClick() {
  62. uni.switchTab({
  63. url: '/pages/express/express'
  64. })
  65. }
  66. }
  67. }
  68. </script>
  69. <style lang="scss" scoped>
  70. .orderinfo {
  71. width: 702rpx;
  72. height: 184rpx;
  73. background: #FFFFFF;
  74. border-radius: 16rpx;
  75. margin-top: 20rpx;
  76. padding: 36rpx 28rpx 0;
  77. box-sizing: border-box;
  78. .num {
  79. font-family: SFPro, SFPro;
  80. font-weight: 400;
  81. font-size: 26rpx;
  82. color: #555555;
  83. line-height: 30rpx;
  84. text-align: left;
  85. font-style: normal;
  86. }
  87. }
  88. .back {
  89. padding: 20rpx 24rpx;
  90. box-sizing: border-box;
  91. .top {
  92. width: 702rpx;
  93. height: 100rpx;
  94. background: linear-gradient(291deg, #FFF4F4 0%, #FBDFDF 100%, #FBDFDF 100%);
  95. border-radius: 16rpx 16rpx 0 0;
  96. border: 1rpx solid;
  97. border-image: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
  98. padding: 0 24rpx;
  99. box-sizing: border-box;
  100. .success {
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 500;
  103. font-size: 32rpx;
  104. color: #222222;
  105. line-height: 44rpx;
  106. text-align: left;
  107. font-style: normal;
  108. }
  109. .sun {
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 400;
  112. font-size: 24rpx;
  113. color: #F83224;
  114. line-height: 34rpx;
  115. text-align: left;
  116. font-style: normal;
  117. }
  118. }
  119. .address {
  120. width: 702rpx;
  121. // height: 396rpx;
  122. background: #FFFFFF;
  123. border-radius: 16rpx;
  124. padding: 1rpx 32rpx;
  125. box-sizing: border-box;
  126. .name {
  127. font-family: PingFangSC, PingFang SC;
  128. font-weight: 500;
  129. font-size: 32rpx;
  130. color: #222222;
  131. line-height: 44rpx;
  132. text-align: left;
  133. font-style: normal;
  134. }
  135. .info {
  136. font-family: PingFangSC, PingFang SC;
  137. font-weight: 400;
  138. font-size: 26rpx;
  139. color: #777777;
  140. line-height: 36rpx;
  141. text-align: left;
  142. font-style: normal;
  143. margin-top: 18rpx;
  144. }
  145. }
  146. }
  147. </style>