outsourcing.vue 2.1 KB

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