清洗优化

This commit is contained in:
mmc
2026-05-07 22:04:27 +08:00
parent 1554af83d3
commit 9645c2b651
6 changed files with 539 additions and 43 deletions

View File

@@ -3,6 +3,7 @@ import { createBrowserRouter } from 'react-router-dom';
import type { RouteObject } from 'react-router-dom';
import VideoMonitorPage from '../pages/VideoMonitorPage';
import AIDiagnosisPage from '../pages/AIAnalysis';
import CleanOptimizationPage from '../pages/CleanOptimization';
const Layout = lazy(() => import('../components/Layout'));
const ProtectedRoute = lazy(() => import('../components/ProtectedRoute'));
@@ -83,10 +84,8 @@ const routes: RouteObject[] = [
{ path: 'video', element: <Video /> },
{ path: 'monitor', element: <VideoMonitorPage /> },
{ path: 'alerts', element: <Alerts /> },
{
path: 'AIanalysis', element: <AIDiagnosisPage />
},
{ path: 'clean', element: <div>清洗优化</div> },
{ path: 'AIanalysis', element: <AIDiagnosisPage /> },
{ path: 'clean', element: <CleanOptimizationPage /> },
{ path: 'task', element: <div>工单任务</div> },
{ path: 'table', element: <div>报表中心</div> },
{ path: 'systemSetting', element: <SystemSetting /> },