|
@@ -8,12 +8,15 @@
|
|
|
:loading="loading"
|
|
|
bordered
|
|
|
>
|
|
|
- <template #bodyCell="{ column, index }">
|
|
|
+ <template #bodyCell="{ column, index, record }">
|
|
|
<template v-if="column.dataIndex === 'operation'">
|
|
|
<qm-button type="link" @click="onViewFailed(index)"
|
|
|
>查看异常</qm-button
|
|
|
>
|
|
|
</template>
|
|
|
+ <template v-if="column.dataIndex === 'imageCheckProgress'">
|
|
|
+ {{ record[column.dataIndex] }}%</template
|
|
|
+ >
|
|
|
</template>
|
|
|
</a-table>
|
|
|
</div>
|
|
@@ -49,6 +52,10 @@ const columns: TableProps["columns"] = [
|
|
|
title: "科目名称",
|
|
|
dataIndex: "subjectName",
|
|
|
},
|
|
|
+ {
|
|
|
+ title: "检查进度",
|
|
|
+ dataIndex: "imageCheckProgress",
|
|
|
+ },
|
|
|
{
|
|
|
title: "异常数量",
|
|
|
dataIndex: "failedCount",
|