|
|
@@ -101,7 +101,7 @@
|
|
|
<span>{{ ACT_VIOLATION_TYPE_LABEL[scope.row.violateType] }}</span>
|
|
|
</template>
|
|
|
<template #speed="scope">
|
|
|
- <span>{{ scope.row.speed || '-' }}</span>
|
|
|
+ <span>{{ scope.row.speed ? scope.row.speed + ' km/h' : '-' }}</span>
|
|
|
</template>
|
|
|
<template #capturePhotos="scope">
|
|
|
<ImageViewer :file-list="scope.row.capturePhotos" />
|
|
|
@@ -376,6 +376,7 @@
|
|
|
tableConfig.loading = true;
|
|
|
try {
|
|
|
await noticeActData(id);
|
|
|
+ ElMessage.success('通知成功');
|
|
|
} catch (e) {
|
|
|
ElMessage.error('通知失败');
|
|
|
return;
|