orderForm.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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-if="follow!=7">
  35. <OrderInofrmation @toDetail="toDetail" />
  36. </view>
  37. <view v-else>
  38. <RefundCard :refundDetail="refundDetail" @toRefundDetail="toRefundDetail"/>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import OrderInofrmation from './component/orderInofrmation.vue'
  45. import RefundCard from './component/refundCard.vue'
  46. export default {
  47. components:{
  48. OrderInofrmation,
  49. RefundCard
  50. },
  51. data() {
  52. return {
  53. follow: 7,
  54. refundDetail:{
  55. status:1
  56. }
  57. }
  58. },
  59. computed: {
  60. i18n() {
  61. return this.$t("index")
  62. }
  63. },
  64. methods: {
  65. rightClick() {
  66. console.log(111)
  67. },
  68. tabSwitch(num) {
  69. this.follow = num
  70. },
  71. toDetail(){
  72. uni.navigateTo({
  73. url:"/pageC/orderFormDetail/orderFormDetail"
  74. })
  75. },
  76. toRefundDetail(){
  77. uni.navigateTo({
  78. url:"/pageC/refundDetail/refundDetail"
  79. })
  80. }
  81. },
  82. mounted() {
  83. }
  84. }
  85. </script>
  86. <style lang="scss" scoped>
  87. .inp {
  88. background-color: #fff;
  89. border-radius: 40rpx;
  90. width: 402rpx;
  91. padding: 0 20rpx;
  92. height: 68rpx;
  93. }
  94. .content {
  95. padding: 0 24rpx;
  96. }
  97. .top-tab {
  98. margin-top: 180rpx;
  99. display: flex;
  100. justify-content: space-between;
  101. overflow-y: auto;
  102. // flex-shrink: 1;
  103. width: 100vw;
  104. .tab {
  105. margin-right: 40rpx;
  106. font-size: 26rpx;
  107. color: rgba(34, 34, 34, .8);
  108. flex-shrink: 0;
  109. height: 44rpx;
  110. display: flex;
  111. align-items: flex-end;
  112. }
  113. .commodity {
  114. position: relative;
  115. font-weight: 600;
  116. font-size: 32rpx;
  117. }
  118. .commodity::before {
  119. content: '';
  120. display: block;
  121. height: 8rpx;
  122. width: 100%;
  123. background: linear-gradient(to right, #f83224, #fff);
  124. position: absolute;
  125. bottom: 5rpx;
  126. opacity: 0.8;
  127. }
  128. }
  129. </style>