orderinfo.vue 4.9 KB

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