orderForm.vue 2.4 KB

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