交通管理局公文项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

1 month ago
1 month ago
1 month ago
  1. <template>
  2. <div class="app-container tab-container">
  3. <div class="tab-content">
  4. <span class="right-top-line" />
  5. <span class="left-bottom-line" />
  6. <span class="right-bottom-line" />
  7. <ul class="tab-nav">
  8. <li :class="{ 'active-tab-nav': activeIndex == 0 }" @click="changeActiveTab(0)">馆藏年度统计<i /></li>
  9. <li :class="{ 'active-tab-nav': activeIndex == 1 }" @click="changeActiveTab(1)">馆藏月份统计<i /></li>
  10. <li :class="{ 'active-tab-nav': activeIndex == 2 }" @click="changeActiveTab(2)">传阅统计<i /></li>
  11. <!-- 最右侧装饰img -->
  12. <span class="tab-right-img" />
  13. </ul>
  14. <MiodTable :active-index="activeIndex" @tab-change="changeActiveTab" />
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. import MiodTable from './miodTable'
  20. export default {
  21. name: 'MiodStatistics',
  22. components: {
  23. MiodTable
  24. },
  25. data() {
  26. return {
  27. activeIndex: 0,
  28. currentRecordId: null
  29. }
  30. },
  31. methods: {
  32. changeActiveTab(data) {
  33. this.activeIndex = data
  34. this.$emit('tab-change', data)
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. </style>