diff --git a/src/components/Image.vue b/src/components/Image.vue
index faaa2de..2e7e2a1 100644
--- a/src/components/Image.vue
+++ b/src/components/Image.vue
@@ -60,8 +60,12 @@
-
T0DB
-
0T1U
+
+ {{ imageStore?.coreInfo?.resultSerial?.split('-')[0]?.substr(-4) }}
+
+
+ {{ imageStore?.coreInfo?.resultSerial?.split('-')[1]?.substr(-4) }}
+
diff --git a/src/components/Task.vue b/src/components/Task.vue
index f821f3b..f972b39 100644
--- a/src/components/Task.vue
+++ b/src/components/Task.vue
@@ -151,6 +151,7 @@ export default {
accountStore.changePage(0)
taskStore.getExcelList(taskId)
taskStore.updateCurrentTaskId(taskId)
+ taskStore.updateCurrentDetailTaskId(null)
},
viewDetail(taskId, nuclearCoreName) {
imageStore.updateNuclearCoreName(nuclearCoreName)
diff --git a/src/pages/index.vue b/src/pages/index.vue
index c49e538..4c7c834 100644
--- a/src/pages/index.vue
+++ b/src/pages/index.vue
@@ -193,7 +193,10 @@
-
+
-
核查进度
-
+
+ 核查进度({{ hasTestedLength }} / {{ testArrLength }})
+
+
@@ -343,6 +348,19 @@ const accountStore = useAccountStore()
const taskStore = useTaskStore()
const imageStore = useImageStore()
+const hasTestedLength = ref(0)
+const testArrLength = ref(121)
+
+const detailProcess = computed(() => {
+ const testArr = taskStore.excelData.filter(
+ item => item.firstSign && item.secondSign,
+ )
+ testArrLength.value = testArr.length
+ const hasTested = testArr.filter(item => item.result != 0)
+ hasTestedLength.value = hasTested.length
+ return parseInt((hasTested.length / testArr.length) * 100)
+})
+
const checked = ref(false)
const onChange = val => {