orderForm.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <template>
  2. <view>
  3. <u-navbar @leftClick="rightClick" bgColor="#f4f4f4" :autoBack="true">
  4. <view class="tab" slot="center">
  5. <view style="width: 600rpx;">
  6. <input type="text" placeholder="搜索我的订单" class="inp" />
  7. </view>
  8. </view>
  9. </u-navbar>
  10. <view class="content">
  11. <view class="top-tab">
  12. <view :class="{commodity:follow==1}" class="tab" @click="tabSwitch(1)">
  13. 全部
  14. </view>
  15. <view :class="{commodity:follow==2}" class="tab" @click="tabSwitch(2)">
  16. 待付款
  17. </view>
  18. <view :class="{commodity:follow==3}" class="tab" @click="tabSwitch(3)">
  19. 拼团中
  20. </view>
  21. <view :class="{commodity:follow==4}" class="tab" @click="tabSwitch(4)">
  22. 待发货
  23. </view>
  24. <view :class="{commodity:follow==5}" class="tab" @click="tabSwitch(5)">
  25. 待收货
  26. </view>
  27. <view :class="{commodity:follow==6}" class="tab" @click="tabSwitch(6)">
  28. 已完成
  29. </view>
  30. <view :class="{commodity:follow==7}" class="tab" @click="tabSwitch(7)">
  31. 退款/售后
  32. </view>
  33. </view>
  34. <view v-for="item in orderList" :key="item.status">
  35. <view v-if="follow!=7">
  36. <OrderInofrmation :itemInfo="item" @toDetail="toDetail" />
  37. </view>
  38. <view v-else>
  39. <RefundCard :itemInfo="item" :refundDetail="refundDetail" @toRefundDetail="toRefundDetail" />
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import OrderInofrmation from './component/orderInofrmation.vue'
  47. import RefundCard from './component/refundCard.vue'
  48. export default {
  49. components: {
  50. OrderInofrmation,
  51. RefundCard
  52. },
  53. data() {
  54. return {
  55. orderList:[
  56. {
  57. status:1,
  58. },
  59. {
  60. status:2,
  61. },
  62. {
  63. status:3,
  64. },
  65. {
  66. status:4,
  67. },
  68. {
  69. status:5,
  70. },
  71. {
  72. status:6,
  73. },
  74. {
  75. status:7,
  76. },
  77. {
  78. status:8,
  79. },
  80. ],
  81. follow: 1,
  82. refundDetail: {
  83. status: 1
  84. }
  85. }
  86. },
  87. computed: {
  88. i18n() {
  89. return this.$t("index")
  90. }
  91. },
  92. onLoad(option) {
  93. this.follow = option.followId
  94. },
  95. methods: {
  96. rightClick() {
  97. console.log(111)
  98. },
  99. tabSwitch(num) {
  100. this.follow = num
  101. },
  102. toDetail(value) {
  103. uni.navigateTo({
  104. url: `/pageC/orderFormDetail/orderFormDetail?orderId=${value.status}`
  105. })
  106. },
  107. toRefundDetail() {
  108. uni.navigateTo({
  109. url: "/pageC/refundDetail/refundDetail"
  110. })
  111. }
  112. },
  113. mounted() {
  114. }
  115. }
  116. </script>
  117. <style lang="scss" scoped>
  118. .inp {
  119. background-color: #fff;
  120. border-radius: 40rpx;
  121. width: 402rpx;
  122. padding: 0 20rpx;
  123. height: 68rpx;
  124. }
  125. .content {
  126. padding: 0 24rpx 50rpx;
  127. }
  128. .top-tab {
  129. margin-top: 180rpx;
  130. display: flex;
  131. justify-content: space-between;
  132. overflow-y: auto;
  133. // flex-shrink: 1;
  134. width: 100vw;
  135. .tab {
  136. margin-right: 40rpx;
  137. font-size: 26rpx;
  138. color: rgba(34, 34, 34, .8);
  139. flex-shrink: 0;
  140. height: 44rpx;
  141. display: flex;
  142. align-items: flex-end;
  143. }
  144. .commodity {
  145. position: relative;
  146. font-weight: 600;
  147. font-size: 32rpx;
  148. }
  149. .commodity::before {
  150. content: '';
  151. display: block;
  152. height: 8rpx;
  153. width: 100%;
  154. background: linear-gradient(to right, #f83224, #fff);
  155. position: absolute;
  156. bottom: 5rpx;
  157. opacity: 0.8;
  158. }
  159. }
  160. </style>