purchase.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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="3"></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. text: '质量标准:按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定'
  46. },
  47. {
  48. id: 2,
  49. name: '非离子表面活性剂',
  50. num: 3,
  51. norm: 15,
  52. text: '质量标准:按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定'
  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: '非离子表面活性剂',
  65. num: 3,
  66. norm: 15,
  67. text: '质量标准:按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定'
  68. },
  69. {
  70. id: 2,
  71. name: '非离子表面活性剂',
  72. num: 3,
  73. norm: 15,
  74. text: '质量标准:按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定'
  75. }
  76. ],
  77. offer: '1999.89'
  78. }
  79. ]
  80. }
  81. },
  82. onLoad() {
  83. that = this
  84. },
  85. methods: {
  86. // 切换tabs
  87. changeTabs(id) {
  88. that.active = id
  89. }
  90. },
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .content {
  95. background: #f4f4f4;
  96. .tabs {
  97. width: 100%;
  98. background-color: #fff;
  99. box-sizing: border-box;
  100. padding: 20rpx 40rpx;
  101. .tabs_item {
  102. font-size: 32rpx;
  103. color: #242424;
  104. }
  105. .active {
  106. color: #222;
  107. position: relative;
  108. }
  109. .active::after {
  110. content: "";
  111. position: absolute;
  112. width: 48rpx;
  113. height: 8rpx;
  114. background-color: #506dff;
  115. border-radius: 4rpx;
  116. bottom: -14rpx;
  117. left: 24rpx;
  118. }
  119. }
  120. .box {
  121. padding: 0 30rpx;
  122. }
  123. }
  124. </style>