frontend/src/App.js

44 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-03-17 18:22:28 +08:00
import React, { Component } from 'react';
import { HashRouter as Router, Route } from 'react-router-dom';
import './App.css';
import './assets/comm.css';
import { Redirect } from 'react-router-dom';
import { lazy, Suspense } from 'react';
import { FullScreenLoading } from 'zent';
const Home = lazy(() => import('./pages/home/home'));
const Login = lazy(() => import('./pages/login/login'));
const ErrPage = lazy(() => import('./pages/errpage/errpage'));
2022-08-17 15:48:25 +08:00
const EdittemPlate = lazy(() =>
import('./pages/exchangepage/edittemplate/main.js')
2023-03-17 18:22:28 +08:00
);
export default class App extends Component {
state = {
2022-08-17 15:48:25 +08:00
pathname: ''
2023-03-17 18:22:28 +08:00
};
2022-08-17 15:48:25 +08:00
componentWillMount() {
2023-03-17 18:22:28 +08:00
const pathname = window.location.href.lastIndexOf('/');
const pathnamestr = window.location.href.substr(pathname);
this.setState({ pathname: `${pathnamestr}` });
}
render() {
return (
2022-08-17 15:48:25 +08:00
<Router>
<Suspense
fallback={
<FullScreenLoading loading icon='circle' iconText='加载中...' />
}>
<Route path='/login' exact={true} component={Login} />
<Route path='/edittemplate' exact={true} component={EdittemPlate} />
<Route path='/home' component={Home} />
<Route
exact={true}
path='/'
render={() => <Redirect to='/login' />}></Route>
<Route component={ErrPage} />
</Suspense>
</Router>
2023-03-17 18:22:28 +08:00
);
}
2021-10-25 11:49:03 +08:00
}