|
@@ -167,7 +167,7 @@
|
|
|
</template>
|
|
|
<HcTable
|
|
|
ref="tableListRef" :column="tableListColumn" :datas="tableListData" :loading="tableLoading"
|
|
|
- is-check @selection-change="tableSelectionChange"
|
|
|
+ border :check-style="{ width: 29 }" :index-style="{ width: 60 }" is-check @selection-change="tableSelectionChange"
|
|
|
>
|
|
|
<template #name="{ row }">
|
|
|
<span class="text-link" @click="tableRowName(row)">{{ row?.name }}</span>
|
|
@@ -514,11 +514,11 @@ const tableListRef = ref(null)
|
|
|
const tableLoading = ref(false)
|
|
|
const tableListColumn = ref([
|
|
|
{ key: 'name', name: '文件名称' },
|
|
|
- { key: 'startTime', name: '开始时间' },
|
|
|
- { key: 'taskStatusStr', name: '流程状态' },
|
|
|
- { key: 'reportNumber', name: '上报批次' },
|
|
|
- { key: 'fileUserIdAndName', name: '填报人' },
|
|
|
- { key: 'waitingUserList', name: '任务人' },
|
|
|
+ { key: 'startTime', name: '开始时间', width: 140, align: 'center' },
|
|
|
+ { key: 'taskStatusStr', name: '流程状态', width: 100, align: 'center' },
|
|
|
+ { key: 'reportNumber', name: '上报批次', width: 80, align: 'center' },
|
|
|
+ { key: 'fileUserIdAndName', name: '填报人', width: 190, align: 'center' },
|
|
|
+ { key: 'waitingUserList', name: '任务人', width: 100, align: 'center' },
|
|
|
])
|
|
|
|
|
|
const tableListData = ref([])
|