production.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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="1" @toDetail="toDetail" @toOffer="toOffer"></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. toDetail(e) {
  88. console.log(e);
  89. $api.jump('/page_mine/pages/order/detail?order_no=' + e)
  90. },
  91. // 报价详情
  92. toOffer(e) {
  93. console.log(e)
  94. $api.jump('/page_mine/pages/order/offer?order_no=' + e)
  95. }
  96. },
  97. }
  98. </script>
  99. <style lang="scss" scoped>
  100. .content {
  101. background: #f4f4f4;
  102. .tabs {
  103. width: 100%;
  104. background-color: #fff;
  105. box-sizing: border-box;
  106. padding: 20rpx 40rpx;
  107. .tabs_item {
  108. font-size: 32rpx;
  109. color: #242424;
  110. }
  111. .active {
  112. color: #222;
  113. position: relative;
  114. }
  115. .active::after {
  116. content: "";
  117. position: absolute;
  118. width: 48rpx;
  119. height: 8rpx;
  120. background-color: #506dff;
  121. border-radius: 4rpx;
  122. bottom: -14rpx;
  123. left: 24rpx;
  124. }
  125. }
  126. .box {
  127. padding: 0 30rpx;
  128. }
  129. }
  130. </style>