清洗优化
This commit is contained in:
@@ -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 /> },
|
||||
|
||||
Reference in New Issue
Block a user