myPackage.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <view>
  3. <view class="top-search">
  4. <u--input placeholder="请输入订单编号搜索" prefixIcon="search" shape="circle"
  5. prefixIconStyle="font-size: 22px;color: #909399;background: #f4f4f4;"></u--input>
  6. <view class="top-tab">
  7. <view :class="{commodity:follow==1}" class="tab" @click="tabSwitch(1)">
  8. 发往中转点
  9. </view>
  10. <view :class="{commodity:follow==2}" class="tab" @click="tabSwitch(2)">
  11. 中转已签收
  12. </view>
  13. <view :class="{commodity:follow==3}" class="tab" @click="tabSwitch(3)">
  14. 正发往海外
  15. </view>
  16. </view>
  17. </view>
  18. <view class="content">
  19. <view class="prompt" v-if="weights >=300">
  20. <image class="prompt-icon" src="../../static/mine/336.png" mode=""></image>
  21. 当前页面加载的订单总重量300kg
  22. </view>
  23. <view v-for="item in orderList" :key="item.orderStatus">
  24. <PackageCard :itemInfo="item" @toInformation="toInformation"/>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import PackageCard from './component/packageCard.vue';
  31. export default {
  32. components:{
  33. PackageCard
  34. },
  35. data() {
  36. return {
  37. follow: 1,
  38. weights: 300,
  39. orderList:[
  40. {
  41. labelStatus:0,
  42. orderStatus:0,
  43. },
  44. {
  45. labelStatus:1,
  46. orderStatus:1,
  47. },
  48. {
  49. labelStatus:1,
  50. orderStatus:2,
  51. },
  52. {
  53. labelStatus:0,
  54. orderStatus:3,
  55. },
  56. {
  57. labelStatus:0,
  58. orderStatus:4,
  59. },
  60. ]
  61. };
  62. },
  63. computed: {
  64. i18n() {
  65. return this.$t('index')
  66. }
  67. },
  68. methods: {
  69. tabSwitch(num) {
  70. this.follow = num
  71. },
  72. toInformation(id){
  73. uni.navigateTo({
  74. url:`/pageD/orderInformation/orderInformation?orderStatus=${id}`,
  75. })
  76. }
  77. },
  78. created() {
  79. uni.setNavigationBarTitle({
  80. title: this.i18n.myPackage
  81. })
  82. },
  83. }
  84. </script>
  85. <style lang="scss" scoped>
  86. .top-search {
  87. background-color: #fff;
  88. padding: 20rpx 24rpx;
  89. }
  90. /deep/.u-input {
  91. background-color: #f4f4f4;
  92. }
  93. .top-tab {
  94. margin-top: 10rpx;
  95. display: flex;
  96. justify-content: space-between;
  97. overflow-y: auto;
  98. // flex-shrink: 1;
  99. width: 100vw;
  100. .tab {
  101. margin-right: 40rpx;
  102. font-size: 26rpx;
  103. color: #555;
  104. flex-shrink: 0;
  105. height: 44rpx;
  106. display: flex;
  107. align-items: flex-end;
  108. font-size: 32rpx;
  109. }
  110. .commodity {
  111. position: relative;
  112. font-weight: 600;
  113. color: #222;
  114. }
  115. .commodity::before {
  116. content: '';
  117. display: block;
  118. height: 8rpx;
  119. width: 100%;
  120. background: linear-gradient(to right, #f83224, #fff);
  121. position: absolute;
  122. bottom: 5rpx;
  123. opacity: 0.8;
  124. }
  125. }
  126. .content {
  127. padding: 20rpx 24rpx;
  128. .prompt {
  129. background-color: #FBE8E6;
  130. border-radius: 10rpx;
  131. padding: 16rpx 22rpx;
  132. font-size: 24rpx;
  133. display: flex;
  134. align-items: center;
  135. color: #f83224;
  136. .prompt-icon {
  137. width: 36rpx;
  138. height: 36rpx;
  139. margin-right: 20rpx;
  140. }
  141. }
  142. }
  143. </style>