From 0ec802e93557b2b1422ddbd68aafa994fa68f455 Mon Sep 17 00:00:00 2001 From: Mr Ke <kelq@hugeinfo.com.cn> Date: Wed, 27 May 2020 10:04:29 +0800 Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/nsjcy/frontEnd/nsjcy --- SunshineIns/src/index.jsx | 80 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 79 insertions(+), 1 deletions(-) diff --git a/SunshineIns/src/index.jsx b/SunshineIns/src/index.jsx index 5d52f65..0365b5c 100644 --- a/SunshineIns/src/index.jsx +++ b/SunshineIns/src/index.jsx @@ -14,8 +14,13 @@ import BusDetail from './page/BusDetail'; import SupPerson from './page/SupPerson'; import Company from './page/Company'; +// 社会组织维护 +import UnderAgeList from './page/UnderAgeList'; +import KeyWord from './page/KeyWord'; import ActiveManage from './page/ActiveManage'; import ActiveManageEdit from './page/ActiveManageEdit'; +import ActiveManageEditquestionnaire from './page/ActiveManageEditquestionnaire'; + import KnowledgeBase from './page/KnowledgeBase'; import ArticlePublish from './page/ArticlePublish'; import ArticleEidt from './page/ArticleEidt'; @@ -25,11 +30,37 @@ import SnapshotDetail from './page/SnapshotDetail'; import Sweeping from './page/Sweeping'; import SweepingDetail from './page/SweepingDetail'; +import LawSubscribe from './page/LawSubscribe'; +import LawSubscribeDetail from './page/LawSubscribeDetail'; import MsgDetail from './page/MsgDetail'; import UserManage from './page/UserManage'; import UserDetail from './page/UserDetail'; import InsideUser from './page/InsideUser'; import UpdatePWD from './page/UpdatePWD'; +import CareList from './page/CareList'; +import CareListEdit from './page/CareListEdit'; +// 入职查询 +import ApplyFor from './page/ApplyFor'; +import ApplyForEdit from './page/ApplyForEdit'; +import Examine from './page/Examine'; +import ExamineEdit from './page/ExamineEdit'; +import NewlyList from './page/NewlyList'; +import Newly from './page/Newly'; +import SignIn from './page/SignIn'; +import QuestionDetail from './page/QuestionDetail'; +import QuestionPersonDetail from './page/QuestionPersonDetail'; +//顶部图片设置 +import TopImage from './page/TopImage'; +// 刑执监督管理 +import CriminalExecution from './page/CriminalExecution'; + + +import NoInspectionReportList from './page/NoInspectionReportList'; +import NoInspectionReportDetail from './page/NoInspectionReportDetail'; + +import PoliceSecurity from './page/PoliceSecurity'; +import policeSecurityEdit from './page/policeSecurityEdit'; + import { LocaleProvider } from 'antd'; import zh_CN from 'antd/lib/locale-provider/zh_CN'; import 'moment/locale/zh-cn'; @@ -37,10 +68,15 @@ ReactDOM.render( <LocaleProvider locale={zh_CN}> <Router history={hashHistory()}> - <Layout style={{ minHeight: '100vh' }}> + <Layout style={{ height: '100%' }}> <Switch> <Route path="/bus/attachment/:busId/:attachmentId" component={AttTree} /> <Route path="/bus/attachment/:busId" component={AttTree} /> + {/* <Route path='/questionnaire/newly' component={AttTree} /> */} + {/* 问卷详情 */} + <Route path='/activeManageEditquestionnaire/:id' component={null} /> + {/* 签到墙 */} + <Route path='/signIn/:id' component={null} /> <Route component={Menu} /> </Switch> <Switch> @@ -57,19 +93,61 @@ <Route path='/active' component={Active} /> <Route path='/supPerson' component={SupPerson} /> <Route path='/company' component={Company} /> + <Route path='/underAgeList' component={UnderAgeList} /> + <Route path='/dxWords' component={KeyWord} /> <Route path='/knowledgeBase' component={KnowledgeBase} /> <Route path='/articlePublish' component={ArticlePublish} /> <Route path='/articleEidt/:id' component={ArticleEidt} /> <Route path='/typeManage' component={TypeList} /> <Route path='/activeManage' component={ActiveManage} /> + <Route path='/topImage' component={TopImage} /> <Route path='/activeManageEdit/:id' component={ActiveManageEdit} /> + <Route path='/activeManageEditquestionnaire/:id' component={ActiveManageEditquestionnaire} /> <Route path='/snapshot' component={Snapshot} /> <Route path='/snapshotDetail/:id/:flag' component={SnapshotDetail} /> <Route path='/sweeping' component={Sweeping} /> <Route path='/sweepingDetail/:id/:flag' component={SweepingDetail} /> + <Route path='/lawSubscribe' component={LawSubscribe} /> + <Route path='/lawSubscribeDetail/:id/:flag' component={LawSubscribeDetail} /> <Route path='/userDetail/:id/:flag' component={UserDetail} /> <Route path='/insideUser' component={InsideUser} /> <Route path='/updatePWD/:id' component={UpdatePWD} /> + {/* 社会关护 */} + <Route path='/careList' component={CareList} /> + <Route path='/careListEdit/:id' component={CareListEdit} /> + {/* 入职查询 */} + <Route path='/entry/applyFor' component={ApplyFor} /> + <Route path='/entry/ApplyForEdit/:id' component={ApplyForEdit} /> + <Route path='/entry/examine' component={Examine} /> + <Route path='/entry/examineEdit/:id' component={ExamineEdit} /> + <Route path='/topImage' component={TopImage} /> + + {/* 刑执监督管理 */} + <Route path='/criminalExecution' component={CriminalExecution} /> + + + {/* 问卷管理部分 */} + <Route path='/questionnaire/newlyList' component={NewlyList} /> + <Route path='/questionnaire/newly/:id' component={Newly} /> + {/* 问卷详情 */} + <Route path='/questionnaire/detail/:id' component={QuestionDetail} /> + {/* 小程序提交的任务详情 */} + <Route path='/questionnaire/persondetail/:id/:userId' component={QuestionPersonDetail} /> + + + {/* 公安审核 */} + <Route path='/entry/policeSecurity' component={PoliceSecurity} /> + <Route path='/entry/policeSecurityEdit/:id' component={policeSecurityEdit} /> + + {/* 签到墙 */} + <Route path='/signIn/:id' component={SignIn} /> + + {/* 未检举报(列表、详情) */} + <Route path='/noInspectionReportList' component={NoInspectionReportList} /> + <Route path='/noInspectionReportDetail/:id/:flag' component={NoInspectionReportDetail} /> + + + <Route path='/' component={Index} /> </Switch> </Layout> -- Gitblit v1.8.0