oceanShipping.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="content">
  3. <view class="tabs hflex acenter jbetween">
  4. <block v-for="(item,index) in tabs" :key="index">
  5. <view class="tabs_item" :class="active == item.id? 'active': ''" @click="changeTabs(item.id)">{{item.text}}</view>
  6. </block>
  7. </view>
  8. <view class="box">
  9. <my-order :list="pageList" order_type="4"></my-order>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import $api from '@/static/js/api.js'
  15. var that = ''
  16. export default {
  17. data() {
  18. return {
  19. tabs: [
  20. {
  21. id: 1,
  22. text: '未报价'
  23. },
  24. {
  25. id: 2,
  26. text: '已报价'
  27. },
  28. {
  29. id: 3,
  30. text: '已匹配'
  31. }
  32. ],
  33. active: 1,
  34. pageList: [
  35. {
  36. id: 1,
  37. order_no: 'cbz1234567',
  38. type: '0',
  39. goods: [
  40. {
  41. id: 1,
  42. name: '非离子表面活性剂',
  43. num: 3,
  44. norm: 15
  45. },
  46. {
  47. id: 2,
  48. name: '非离子表面活性剂',
  49. num: 3,
  50. norm: 15
  51. }
  52. ],
  53. offer: '1999.89'
  54. },
  55. {
  56. id: 2,
  57. order_no: 'cbz1234567',
  58. type: '1',
  59. goods: [
  60. {
  61. id: 1,
  62. name: '非离子表面活性剂',
  63. num: 3,
  64. norm: 15
  65. },
  66. {
  67. id: 2,
  68. name: '非离子表面活性剂',
  69. num: 3,
  70. norm: 15
  71. }
  72. ],
  73. offer: '1999.89'
  74. }
  75. ]
  76. }
  77. },
  78. onLoad() {
  79. that = this
  80. },
  81. methods: {
  82. // 切换tabs
  83. changeTabs(id) {
  84. that.active = id
  85. }
  86. },
  87. }
  88. </script>
  89. <style lang="scss" scoped>
  90. .content {
  91. background: #f4f4f4;
  92. .tabs {
  93. width: 100%;
  94. background-color: #fff;
  95. box-sizing: border-box;
  96. padding: 20rpx 40rpx;
  97. .tabs_item {
  98. font-size: 32rpx;
  99. color: #242424;
  100. }
  101. .active {
  102. color: #222;
  103. position: relative;
  104. }
  105. .active::after {
  106. content: "";
  107. position: absolute;
  108. width: 48rpx;
  109. height: 8rpx;
  110. background-color: #506dff;
  111. border-radius: 4rpx;
  112. bottom: -14rpx;
  113. left: 24rpx;
  114. }
  115. }
  116. .box {
  117. padding: 0 30rpx;
  118. }
  119. }
  120. </style>