approveList.vue 712 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="box">
  3. <el-tabs
  4. v-model="activeName"
  5. class="demo-tabs"
  6. >
  7. <el-tab-pane
  8. label="申请列表"
  9. name="Application"
  10. >
  11. <PromoterList />
  12. </el-tab-pane>
  13. <el-tab-pane
  14. label="审批列表"
  15. name="examine"
  16. >
  17. <InspectList />
  18. </el-tab-pane>
  19. </el-tabs>
  20. </div>
  21. </template>
  22. <script setup>
  23. import { ref } from 'vue'
  24. import PromoterList from './components/promoterList.vue'
  25. import InspectList from './components/inspectList.vue'
  26. defineOptions({
  27. name: 'ApproveList'
  28. })
  29. const activeName = ref('Application')
  30. </script>
  31. <style scoped>
  32. .box{
  33. height: 760px;
  34. background-color: #ffffff;
  35. }
  36. </style>