purchase.vue 2.6 KB

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