orderinfo.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <view class="back">
  3. <u-navbar :title="i18n.Vieworder" @leftClick="leftClick" :autoBack='false'>
  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. <text v-if="orderinfo.status=='imperfect'" class="order" style="color:rgba(248, 50, 36, 1) ;">待完善</text>
  9. <text v-if="orderinfo.status=='domestic_undelivered'" class="order"
  10. style="color:rgba(248, 50, 36, 1) ;">国内未发货</text>
  11. <text v-if="orderinfo.status=='domestic_delivered'" class="order"
  12. style="color:rgba(248, 50, 36, 1) ;">国内已发货</text>
  13. <text v-if="orderinfo.status=='domestic_received'" class="order"
  14. style="color:rgba(248, 50, 36, 1) ;">国内已收货</text>
  15. <text v-if="orderinfo.status=='unpaid'" class="order" style="color:rgba(248, 50, 36, 1) ;">待付款</text>
  16. <text v-if="orderinfo.status=='overseas_undelivered'" class="order"
  17. style="color:rgba(248, 50, 36, 1) ;">国际未发货</text>
  18. <text v-if="orderinfo.status=='overseas_delivered'" class="order"
  19. style="color:rgba(248, 50, 36, 1) ;">国际已发货</text>
  20. <text v-if="orderinfo.status=='overseas_received'" class="order"
  21. style="color:rgba(248, 50, 36, 1) ;">国际已收货</text>
  22. <text v-if="orderinfo.status=='finished'" class="order" style="color:rgba(248, 50, 36, 1) ;">已完成</text>
  23. <text v-if="orderinfo.status=='closed'" class="order" style="color:rgba(248, 50, 36, 1) ;">已关闭</text>
  24. <text v-if="orderinfo.status=='refunding'" class="order" style="color:rgba(248, 50, 36, 1) ;">退款中</text>
  25. <text v-if="orderinfo.status=='refunded'" class="order" style="color:rgba(248, 50, 36, 1) ;">已退款</text>
  26. </view>
  27. <view class="address">
  28. <view class="" style="margin-top: 44rpx;">
  29. <view class="u-flex">
  30. <image src="/static/express/ji.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  31. <text class="name" style="margin-left: 28rpx;">{{orderinfo.from_name}}</text>
  32. <text class="name" style="margin-left: 12rpx;">{{orderinfo.from_mobile}}</text>
  33. </view>
  34. <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
  35. {{orderinfo.from_full_address}}
  36. </view>
  37. </view>
  38. <view class="" style="margin: 44rpx 0;">
  39. <view class="u-flex">
  40. <image src="/static/express/shou.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  41. <text class="name" style="margin-left: 28rpx;">{{orderinfo.transit_name}}</text>
  42. <text class="name" style="margin-left: 12rpx;">{{orderinfo.transit_mobile}}</text>
  43. </view>
  44. <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
  45. {{orderinfo.transit_full_address}}
  46. </view>
  47. </view>
  48. </view>
  49. <view class="orderinfo">
  50. <view class="num">
  51. <text class='num'>{{i18n.OrderNumber}}:</text>
  52. <text class='num'>{{orderinfo.order_no}}</text>
  53. </view>
  54. <view class="num" style="margin-top: 50rpx;">
  55. <text class='num'>{{i18n.Ordertime}}:</text>
  56. <text class='num'>{{orderinfo.created_at}}</text>
  57. </view>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. export default {
  63. data() {
  64. return {
  65. orderinfo: {}
  66. };
  67. },
  68. onLoad(options) {
  69. this.orderinfo = JSON.parse(decodeURIComponent(options.orderinfo));
  70. console.log(this.orderinfo);
  71. this.$u.toast(this.i18n.successful + this.i18n.MyOrder)
  72. },
  73. computed: {
  74. i18n() {
  75. return this.$t('index')
  76. }
  77. },
  78. methods: {
  79. leftClick() {
  80. uni.switchTab({
  81. url: '/pages/mine/mine'
  82. })
  83. }
  84. }
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. .orderinfo {
  89. width: 702rpx;
  90. height: 184rpx;
  91. background: #FFFFFF;
  92. border-radius: 16rpx;
  93. margin-top: 20rpx;
  94. padding: 36rpx 28rpx 0;
  95. box-sizing: border-box;
  96. .num {
  97. font-family: SFPro, SFPro;
  98. font-weight: 400;
  99. font-size: 26rpx;
  100. color: #555555;
  101. line-height: 30rpx;
  102. text-align: left;
  103. font-style: normal;
  104. }
  105. }
  106. .back {
  107. padding: 20rpx 24rpx;
  108. box-sizing: border-box;
  109. .top {
  110. width: 702rpx;
  111. height: 100rpx;
  112. background: linear-gradient(291deg, #FFF4F4 0%, #FBDFDF 100%, #FBDFDF 100%);
  113. border-radius: 16rpx 16rpx 0 0;
  114. border: 1rpx solid;
  115. border-image: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
  116. padding: 0 24rpx;
  117. box-sizing: border-box;
  118. .success {
  119. font-family: PingFangSC, PingFang SC;
  120. font-weight: 500;
  121. font-size: 32rpx;
  122. color: #222222;
  123. line-height: 44rpx;
  124. text-align: left;
  125. font-style: normal;
  126. }
  127. .sun {
  128. font-family: PingFangSC, PingFang SC;
  129. font-weight: 400;
  130. font-size: 24rpx;
  131. color: #F83224;
  132. line-height: 34rpx;
  133. text-align: left;
  134. font-style: normal;
  135. }
  136. }
  137. .address {
  138. width: 702rpx;
  139. // height: 396rpx;
  140. background: #FFFFFF;
  141. border-radius: 16rpx;
  142. padding: 1rpx 32rpx;
  143. box-sizing: border-box;
  144. .name {
  145. font-family: PingFangSC, PingFang SC;
  146. font-weight: 500;
  147. font-size: 32rpx;
  148. color: #222222;
  149. line-height: 44rpx;
  150. text-align: left;
  151. font-style: normal;
  152. }
  153. .info {
  154. font-family: PingFangSC, PingFang SC;
  155. font-weight: 400;
  156. font-size: 26rpx;
  157. color: #777777;
  158. line-height: 36rpx;
  159. text-align: left;
  160. font-style: normal;
  161. margin-top: 18rpx;
  162. }
  163. }
  164. }
  165. </style>