fix: 修正告警页路由路径错误

This commit is contained in:
yangsy
2026-01-05 14:55:49 +08:00
parent 263dd5edfc
commit 653981c0e7

View File

@@ -142,8 +142,8 @@ const routeToRoot = () => {
const routeToAlarmPage = () => { const routeToAlarmPage = () => {
alarmStore.clearUnreadAlarms(); alarmStore.clearUnreadAlarms();
if (route.path !== '/alarm') { if (route.path !== '/alarm/alarm-log') {
router.push({ path: '/alarm' }); router.push({ path: '/alarm/alarm-log' });
} }
}; };