orderinfo.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. </view>
  7. <view class="address">
  8. <view class="" style="margin-top: 44rpx;">
  9. <view class="u-flex">
  10. <image src="/static/express/ji.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  11. <text class="name" style="margin-left: 28rpx;">陈盼盼</text>
  12. <text class="name" style="margin-left: 12rpx;">134****8314</text>
  13. </view>
  14. <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
  15. 上海浦东新区南汇新城镇上海市浦东新区保税
  16. </view>
  17. </view>
  18. <view class="" style="margin: 44rpx 0;">
  19. <view class="u-flex">
  20. <image src="/static/express/ji.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  21. <text class="name" style="margin-left: 28rpx;">陈盼盼</text>
  22. <text class="name" style="margin-left: 12rpx;">134****8314</text>
  23. </view>
  24. <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
  25. 上海浦东新区南汇新城镇上海市浦东新区保税
  26. </view>
  27. </view>
  28. </view>
  29. <view class="orderinfo">
  30. <view class="num">
  31. <text class='num'>{{i18n.OrderNumber}}:</text>
  32. <text class='num'>JDV18873891934</text>
  33. </view>
  34. <view class="num" style="margin-top: 50rpx;">
  35. <text class='num'>{{i18n.Ordertime}}::</text>
  36. <text class='num'>2023-12-03 22:44:15</text>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. };
  46. },
  47. computed: {
  48. i18n() {
  49. return this.$t('index')
  50. }
  51. },
  52. }
  53. </script>
  54. <style lang="scss" scoped>
  55. .orderinfo {
  56. width: 702rpx;
  57. height: 184rpx;
  58. background: #FFFFFF;
  59. border-radius: 16rpx;
  60. margin-top: 20rpx;
  61. padding: 36rpx 28rpx 0;
  62. box-sizing: border-box;
  63. .num {
  64. font-family: SFPro, SFPro;
  65. font-weight: 400;
  66. font-size: 26rpx;
  67. color: #555555;
  68. line-height: 30rpx;
  69. text-align: left;
  70. font-style: normal;
  71. }
  72. }
  73. .back {
  74. padding: 20rpx 24rpx;
  75. box-sizing: border-box;
  76. .top {
  77. width: 702rpx;
  78. height: 100rpx;
  79. background: linear-gradient(291deg, #FFF4F4 0%, #FBDFDF 100%, #FBDFDF 100%);
  80. border-radius: 16rpx 16rpx 0 0;
  81. border: 1rpx solid;
  82. border-image: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
  83. padding: 0 24rpx;
  84. box-sizing: border-box;
  85. .success {
  86. font-family: PingFangSC, PingFang SC;
  87. font-weight: 500;
  88. font-size: 32rpx;
  89. color: #222222;
  90. line-height: 44rpx;
  91. text-align: left;
  92. font-style: normal;
  93. }
  94. .sun {
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 400;
  97. font-size: 24rpx;
  98. color: #F83224;
  99. line-height: 34rpx;
  100. text-align: left;
  101. font-style: normal;
  102. }
  103. }
  104. .address {
  105. width: 702rpx;
  106. // height: 396rpx;
  107. background: #FFFFFF;
  108. border-radius: 16rpx;
  109. padding: 1rpx 32rpx;
  110. box-sizing: border-box;
  111. .name {
  112. font-family: PingFangSC, PingFang SC;
  113. font-weight: 500;
  114. font-size: 32rpx;
  115. color: #222222;
  116. line-height: 44rpx;
  117. text-align: left;
  118. font-style: normal;
  119. }
  120. .info {
  121. font-family: PingFangSC, PingFang SC;
  122. font-weight: 400;
  123. font-size: 26rpx;
  124. color: #777777;
  125. line-height: 36rpx;
  126. text-align: left;
  127. font-style: normal;
  128. margin-top: 18rpx;
  129. }
  130. }
  131. }
  132. </style>