| | |
| | | import DocumentDetail from './pages/document/DocumentDetail';//文档详情 |
| | | import BrowseLog from './pages/logManage/browseLog';//浏览日志 |
| | | import OperLog from './pages/logManage/operLog';//操作日志 |
| | | import Rawler from './pages/logManage/Rawler';//爬虫词条管理 |
| | | import Information from './pages/personal/information';//个人信息 |
| | | |
| | | const { Content } = Layout; |
| | |
| | | <Route path="/logManage/browseLog" component={BrowseLog} /> |
| | | {/* 操作日志 */} |
| | | <Route path="/logManage/operLog" component={OperLog} /> |
| | | {/* 爬虫词条管理 */} |
| | | <Route path="/logManage/rawler" component={Rawler} /> |
| | | {/* 个人信息 */} |
| | | <Route path="/personal/information" component={Information} /> |
| | | |