index.vue 758 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="scan-manage h-full">
  3. <a-tabs v-model:activeKey="activeKey">
  4. <a-tab-pane key="1" tab="图片查找">
  5. <ImageView></ImageView>
  6. </a-tab-pane>
  7. <a-tab-pane key="2" tab="扫描进度"
  8. ><ScanProcess></ScanProcess>
  9. </a-tab-pane>
  10. <a-tab-pane key="3" tab="工作量统计"> </a-tab-pane>
  11. <a-tab-pane key="4" tab="扫描查漏"> </a-tab-pane>
  12. <a-tab-pane key="5" tab="考生信息"> </a-tab-pane>
  13. </a-tabs>
  14. </div>
  15. </template>
  16. <script name="ScanManage" lang="ts" setup>
  17. import { ref } from "vue";
  18. import ImageView from "./ImageView.vue";
  19. import ScanProcess from "./ScanProcess.vue";
  20. const activeKey = ref("1");
  21. </script>
  22. <style lang="less" scoped></style>