orderinfo.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. this.config()
  55. },
  56. computed: {
  57. i18n() {
  58. return this.$t('index')
  59. }
  60. },
  61. methods: {
  62. leftClick() {
  63. uni.switchTab({
  64. url: '/pages/index/index'
  65. })
  66. },
  67. config(){
  68. //获取配置信息
  69. uni.$u.http
  70. .get(`/api/config?module=express`)
  71. .then((res) => {
  72. this.$u.toast(res.prompt)
  73. });
  74. }
  75. }
  76. }
  77. </script>
  78. <style lang="scss" scoped>
  79. .orderinfo {
  80. width: 702rpx;
  81. height: 184rpx;
  82. background: #FFFFFF;
  83. border-radius: 16rpx;
  84. margin-top: 20rpx;
  85. padding: 36rpx 28rpx 0;
  86. box-sizing: border-box;
  87. .num {
  88. font-family: SFPro, SFPro;
  89. font-weight: 400;
  90. font-size: 26rpx;
  91. color: #555555;
  92. line-height: 30rpx;
  93. text-align: left;
  94. font-style: normal;
  95. }
  96. }
  97. .back {
  98. padding: 20rpx 24rpx;
  99. box-sizing: border-box;
  100. .top {
  101. width: 702rpx;
  102. height: 100rpx;
  103. background: linear-gradient(291deg, #FFF4F4 0%, #FBDFDF 100%, #FBDFDF 100%);
  104. border-radius: 16rpx 16rpx 0 0;
  105. border: 1rpx solid;
  106. border-image: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
  107. padding: 0 24rpx;
  108. box-sizing: border-box;
  109. .success {
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 500;
  112. font-size: 32rpx;
  113. color: #222222;
  114. line-height: 44rpx;
  115. text-align: left;
  116. font-style: normal;
  117. }
  118. .sun {
  119. font-family: PingFangSC, PingFang SC;
  120. font-weight: 400;
  121. font-size: 24rpx;
  122. color: #F83224;
  123. line-height: 34rpx;
  124. text-align: left;
  125. font-style: normal;
  126. }
  127. }
  128. .address {
  129. width: 702rpx;
  130. // height: 396rpx;
  131. background: #FFFFFF;
  132. border-radius: 16rpx;
  133. padding: 1rpx 32rpx;
  134. box-sizing: border-box;
  135. .name {
  136. font-family: PingFangSC, PingFang SC;
  137. font-weight: 500;
  138. font-size: 32rpx;
  139. color: #222222;
  140. line-height: 44rpx;
  141. text-align: left;
  142. font-style: normal;
  143. }
  144. .info {
  145. font-family: PingFangSC, PingFang SC;
  146. font-weight: 400;
  147. font-size: 26rpx;
  148. color: #777777;
  149. line-height: 36rpx;
  150. text-align: left;
  151. font-style: normal;
  152. margin-top: 18rpx;
  153. }
  154. }
  155. }
  156. </style>