1 Commits

Author SHA1 Message Date
5ee6e08f3d 功能:告警列表新增 garbage 垃圾检测类型显示
ALERT_TYPE_OPTIONS 补充「垃圾检测」选项,colorMap 配置 lime 颜色标签。
2026-05-09 11:31:39 +08:00
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ export const ALERT_TYPE_OPTIONS = [
{ label: '车辆违停', value: 'illegal_parking' }, { label: '车辆违停', value: 'illegal_parking' },
{ label: '车辆拥堵', value: 'vehicle_congestion' }, { label: '车辆拥堵', value: 'vehicle_congestion' },
{ label: '非机动车违停', value: 'non_motor_vehicle_parking' }, { label: '非机动车违停', value: 'non_motor_vehicle_parking' },
{ label: '垃圾检测', value: 'garbage' },
]; ];
/** 告警状态选项 */ /** 告警状态选项 */

View File

@@ -69,6 +69,7 @@ function getAlertTypeColor(type?: string) {
illegal_parking: 'blue', illegal_parking: 'blue',
vehicle_congestion: 'geekblue', vehicle_congestion: 'geekblue',
non_motor_vehicle_parking: 'green', non_motor_vehicle_parking: 'green',
garbage: 'lime',
}; };
return type ? colorMap[type] || 'default' : 'default'; return type ? colorMap[type] || 'default' : 'default';
} }