|
@@ -1,10 +1,12 @@
|
|
<template>
|
|
<template>
|
|
<div class="scan-manage h-full">
|
|
<div class="scan-manage h-full">
|
|
<a-tabs v-model:activeKey="activeKey">
|
|
<a-tabs v-model:activeKey="activeKey">
|
|
- <a-tab-pane key="1" tab="图片查看">
|
|
|
|
|
|
+ <a-tab-pane key="1" tab="图片查找">
|
|
<ImageView></ImageView>
|
|
<ImageView></ImageView>
|
|
</a-tab-pane>
|
|
</a-tab-pane>
|
|
- <a-tab-pane key="2" tab="扫描进度"> </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="3" tab="工作量统计"> </a-tab-pane>
|
|
<a-tab-pane key="4" tab="扫描查漏"> </a-tab-pane>
|
|
<a-tab-pane key="4" tab="扫描查漏"> </a-tab-pane>
|
|
<a-tab-pane key="5" tab="考生信息"> </a-tab-pane>
|
|
<a-tab-pane key="5" tab="考生信息"> </a-tab-pane>
|
|
@@ -14,22 +16,7 @@
|
|
<script name="ScanManage" lang="ts" setup>
|
|
<script name="ScanManage" lang="ts" setup>
|
|
import { ref } from "vue";
|
|
import { ref } from "vue";
|
|
import ImageView from "./ImageView.vue";
|
|
import ImageView from "./ImageView.vue";
|
|
|
|
+import ScanProcess from "./ScanProcess.vue";
|
|
const activeKey = ref("1");
|
|
const activeKey = ref("1");
|
|
</script>
|
|
</script>
|
|
-<style lang="less" scoped>
|
|
|
|
-.scan-manage {
|
|
|
|
- :deep(.ant-tabs) {
|
|
|
|
- height: 100%;
|
|
|
|
- .ant-tabs-nav {
|
|
|
|
- padding: 8px 15px 0 15px;
|
|
|
|
- margin-bottom: 0;
|
|
|
|
- }
|
|
|
|
- .ant-tabs-content-holder {
|
|
|
|
- overflow: auto;
|
|
|
|
- .ant-tabs-content {
|
|
|
|
- height: 100%;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-</style>
|
|
|
|
|
|
+<style lang="less" scoped></style>
|