collect.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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="tabs">
  9. <view v-if="active == 1">
  10. <block v-for="(item,index) in pageList" :key="index">
  11. <news-module :title="item.title" :imgs="item.imgs" :type="item.type" :client="item.client" :comment="item.comment"></news-module>
  12. </block>
  13. </view>
  14. <view v-if="active == 3">
  15. <block v-for="(item,index) in pageList1" :key="index">
  16. <pur-order :order_no="item.order_no" :type="item.type" :name="item.name" :contacts="item.contacts" :phone="item.phone" :delivery_date="item.delivery_date"></pur-order>
  17. </block>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import $api from '@/static/js/api.js'
  24. var that = ''
  25. export default {
  26. data() {
  27. return {
  28. tabs: [
  29. {
  30. id: 1,
  31. text: '知识教学'
  32. },
  33. {
  34. id: 2,
  35. text: '百知文库'
  36. },
  37. {
  38. id: 3,
  39. text: '采购订单'
  40. },
  41. {
  42. id: 4,
  43. text: '船厂'
  44. }
  45. ],
  46. active: 1,
  47. pageList: [
  48. {
  49. id: 1,
  50. title: '2022年上半年十部好剧,《开端》第7名,《人世间》第4名,值得观看',
  51. imgs: [
  52. "/static/images/index/class_img1.png",
  53. "/static/images/index/class_img1.png",
  54. "/static/images/index/class_img1.png"
  55. ],
  56. type: '资讯',
  57. client: '澎湃新闻客户端',
  58. commnet: 77
  59. }
  60. ],
  61. pageList1: [
  62. {
  63. id: 1,
  64. order_no: 'cbz1234567',
  65. type: '采购订单',
  66. name: '福建船舶有限公司',
  67. contacts: '张宇书',
  68. phone: '19823021433',
  69. delivery_date: '2022-11-03',
  70. }
  71. ]
  72. }
  73. },
  74. onLoad() {
  75. that = this
  76. },
  77. methods: {
  78. // 切换tabs
  79. changeTabs(id) {
  80. that.active = id
  81. }
  82. },
  83. }
  84. </script>
  85. <style lang="scss" scoped>
  86. .content {
  87. padding: 0 30rpx;
  88. .tabs {
  89. width: 100%;
  90. margin: 14rpx 0 46rpx;
  91. .tabs_item {
  92. width: 25%;
  93. text-align: center;
  94. font-size: 32rpx;
  95. color: #222;
  96. font-weight: 400;
  97. }
  98. .active {
  99. font-weight: 500;
  100. position: relative;
  101. }
  102. .active::after {
  103. position: absolute;
  104. content: "";
  105. width: 48rpx;
  106. height: 8rpx;
  107. background-color: #506Dff;
  108. border-radius: 4rpx;
  109. bottom: -14rpx;
  110. left: 35%;
  111. }
  112. }
  113. }
  114. </style>