|
@@ -36,19 +36,22 @@
|
|
|
@update:pageNumber="handleCurrentChange"
|
|
@update:pageNumber="handleCurrentChange"
|
|
|
>
|
|
>
|
|
|
<template #carNum="scope">
|
|
<template #carNum="scope">
|
|
|
- <span>{{ scope.row.carNum ? scope.row.carNum : '-' }}</span>
|
|
|
|
|
|
|
+ <span>{{ scope.row.carNum ? scope.row.carNum : '--' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #carOwnerName="scope">
|
|
<template #carOwnerName="scope">
|
|
|
- <span>{{ scope.row.carOwnerName || '-' }}</span>
|
|
|
|
|
|
|
+ <span>{{ scope.row.carOwnerName || '--' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #deptName="scope">
|
|
<template #deptName="scope">
|
|
|
- <span>{{ scope.row.deptName || '-' }}</span>
|
|
|
|
|
|
|
+ <span>{{ scope.row.deptName || '--' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #entryLocation="scope">
|
|
<template #entryLocation="scope">
|
|
|
- <span>{{ scope.row.entryLocation || '-' }}</span>
|
|
|
|
|
|
|
+ <span>{{ scope.row.entryLocation || '--' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #eventTime="scope">
|
|
<template #eventTime="scope">
|
|
|
- <span>{{ scope.row.eventTime || '-' }}</span>
|
|
|
|
|
|
|
+ <span>{{ scope.row.eventTime || '--' }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #images="scope">
|
|
|
|
|
+ <ImageViewer :file-list="scope.row.images" />
|
|
|
</template>
|
|
</template>
|
|
|
</BasicTable>
|
|
</BasicTable>
|
|
|
</div>
|
|
</div>
|
|
@@ -61,6 +64,7 @@
|
|
|
import useTableConfig from '@/hooks/useTableConfigHook';
|
|
import useTableConfig from '@/hooks/useTableConfigHook';
|
|
|
import ActionButton from '@/components/ActionButton.vue';
|
|
import ActionButton from '@/components/ActionButton.vue';
|
|
|
import SelectableInput from '@/components/formItems/selectableInput/SelectableInput.vue';
|
|
import SelectableInput from '@/components/formItems/selectableInput/SelectableInput.vue';
|
|
|
|
|
+ import ImageViewer from '@/views/traffic/violation/act/components/ImageViewer.vue';
|
|
|
import { downloadFile } from '@/views/disaster/utils';
|
|
import { downloadFile } from '@/views/disaster/utils';
|
|
|
import dayjs from 'dayjs';
|
|
import dayjs from 'dayjs';
|
|
|
import { ElMessage } from 'element-plus';
|
|
import { ElMessage } from 'element-plus';
|