|
@@ -39,7 +39,9 @@
|
|
|
<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 && scope.row.staffNo ? scope.row.carOwnerName + '-' + scope.row.staffNo : '--'
|
|
|
|
|
+ }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #deptName="scope">
|
|
<template #deptName="scope">
|
|
|
<span>{{ scope.row.deptName || '--' }}</span>
|
|
<span>{{ scope.row.deptName || '--' }}</span>
|
|
@@ -47,8 +49,8 @@
|
|
|
<template #entryLocation="scope">
|
|
<template #entryLocation="scope">
|
|
|
<span>{{ scope.row.entryLocation || '--' }}</span>
|
|
<span>{{ scope.row.entryLocation || '--' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
- <template #eventTime="scope">
|
|
|
|
|
- <span>{{ scope.row.eventTime || '--' }}</span>
|
|
|
|
|
|
|
+ <template #entryTime="scope">
|
|
|
|
|
+ <span>{{ scope.row.entryTime || '--' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #images="scope">
|
|
<template #images="scope">
|
|
|
<ImageViewer :file-list="scope.row.images" />
|
|
<ImageViewer :file-list="scope.row.images" />
|