|
@@ -68,7 +68,7 @@
|
|
<hc-card>
|
|
<hc-card>
|
|
<div style="line-height: 26px;">
|
|
<div style="line-height: 26px;">
|
|
<div>
|
|
<div>
|
|
- <div class="text-16px font-800">上报且审批</div>
|
|
|
|
|
|
+ <div class="text-16px font-800">一键CA</div>
|
|
<div>暂无任务...</div>
|
|
<div>暂无任务...</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -90,7 +90,7 @@
|
|
</div>
|
|
</div>
|
|
</hc-card>
|
|
</hc-card>
|
|
<hc-card class="ml-2">
|
|
<hc-card class="ml-2">
|
|
- <div v-if="progressObj.pace === 0" style="line-height: 26px;">
|
|
|
|
|
|
+ <div v-if="progressObj.TotalCount === 0" style="line-height: 26px;">
|
|
<div>
|
|
<div>
|
|
<div class="text-16px font-800">电签检测</div>
|
|
<div class="text-16px font-800">电签检测</div>
|
|
<div>暂无任务...</div>
|
|
<div>暂无任务...</div>
|
|
@@ -242,12 +242,24 @@
|
|
<template #chekStatus="{ row }">
|
|
<template #chekStatus="{ row }">
|
|
<el-tag
|
|
<el-tag
|
|
|
|
|
|
- :type="`${row.chekStatus === 2 ? 'success' : row.chekStatus === 0 ? 'warning' : row.chekStatus === 3 ? 'danger' : 'info'}`"
|
|
|
|
|
|
+ :type="`${row.chekStatus === 2 ? 'success' : row.chekStatus === 1 ? 'warning' : row.chekStatus === 3 ? 'danger' : 'info'}`"
|
|
class="mx-1" effect="dark"
|
|
class="mx-1" effect="dark"
|
|
>
|
|
>
|
|
{{ row.chekStatus === 0 ? '未检测' : row.chekStatus === 1 ? '检测中' : row.chekStatus === 2 ? '检测无误' : '检测有误' }}
|
|
{{ row.chekStatus === 0 ? '未检测' : row.chekStatus === 1 ? '检测中' : row.chekStatus === 2 ? '检测无误' : '检测有误' }}
|
|
</el-tag>
|
|
</el-tag>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #waitingUserList="{ row }">
|
|
|
|
+ <template v-for="item in row.waitingUserList">
|
|
|
|
+ <el-tag
|
|
|
|
+ v-if="item.waitingUserName"
|
|
|
|
+ :key="item.waitingUserName"
|
|
|
|
+ :type="`${item.status === 2 ? 'success' : item.status === 3 ? 'warning' : item.status === 999 ? 'danger' : 'info'}`"
|
|
|
|
+ class="mx-1" effect="dark"
|
|
|
|
+ >
|
|
|
|
+ {{ item.waitingUserName }}
|
|
|
|
+ </el-tag>
|
|
|
|
+ </template>
|
|
|
|
+ </template>
|
|
</HcTable>
|
|
</HcTable>
|
|
<template #action>
|
|
<template #action>
|
|
<HcPages :pages="searchForm" @change="pageChange" />
|
|
<HcPages :pages="searchForm" @change="pageChange" />
|
|
@@ -724,6 +736,7 @@ const tableListColumn = ref([
|
|
{ key: 'chekStatus', name: '检测状态', width: 100, align: 'center' },
|
|
{ key: 'chekStatus', name: '检测状态', width: 100, align: 'center' },
|
|
|
|
|
|
{ key: 'fileUserIdAndName', name: '填报人', width: 190, align: 'center' },
|
|
{ key: 'fileUserIdAndName', name: '填报人', width: 190, align: 'center' },
|
|
|
|
+ { key: 'waitingUserList', name: '任务人', align: 'center' },
|
|
|
|
|
|
])
|
|
])
|
|
|
|
|
|
@@ -1472,9 +1485,8 @@ const batchOnlineClick = async ()=>{
|
|
|
|
|
|
if (!error && code === 200) {
|
|
if (!error && code === 200) {
|
|
window.$message?.success(msg )
|
|
window.$message?.success(msg )
|
|
-
|
|
|
|
- getTableData().then()
|
|
|
|
- }
|
|
|
|
|
|
+ getCheckPdfPaceInfoData()
|
|
|
|
+ getTableData()
|
|
|
|
|
|
|
|
|
|
|
|
|