12345678910111213141516171819202122 |
- <template>
- <div class="scan-manage h-full">
- <a-tabs v-model:activeKey="activeKey">
- <a-tab-pane key="1" tab="图片查找">
- <ImageView></ImageView>
- </a-tab-pane>
- <a-tab-pane key="2" tab="扫描进度"
- ><ScanProcess></ScanProcess>
- </a-tab-pane>
- <a-tab-pane key="3" tab="工作量统计"> </a-tab-pane>
- <a-tab-pane key="4" tab="扫描查漏"> </a-tab-pane>
- <a-tab-pane key="5" tab="考生信息"> </a-tab-pane>
- </a-tabs>
- </div>
- </template>
- <script name="ScanManage" lang="ts" setup>
- import { ref } from "vue";
- import ImageView from "./ImageView.vue";
- import ScanProcess from "./ScanProcess.vue";
- const activeKey = ref("1");
- </script>
- <style lang="less" scoped></style>
|