shaogen1995 4 달 전
부모
커밋
636e691695
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/App.tsx

+ 5 - 1
src/App.tsx

@@ -25,8 +25,12 @@ export default function App() {
       <Router history={history}>
         <React.Suspense fallback={<SpinLoding />}>
           <Switch>
-            {/* 测试页面 */}
             <Route path='/login' component={Login} />
+            {/*  打印页面 */}
+            {/* <Route
+              path='/logPage/:key'
+              component={React.lazy(() => import('./pages/W_log/index'))}
+            /> */}
             <AuthRoute path='/' component={Layout} />
           </Switch>
         </React.Suspense>