|
|
|
@ -149,13 +149,7 @@ class BanksIndex extends Component{
|
|
|
|
|
/>)
|
|
|
|
|
}
|
|
|
|
|
}></Route>
|
|
|
|
|
<Route path='/banks/exercise/:Id'
|
|
|
|
|
render={
|
|
|
|
|
(props) => {
|
|
|
|
|
return (<BanksTabIndex {...this.props} {...props} {...this.state} {...common}
|
|
|
|
|
/>)
|
|
|
|
|
}
|
|
|
|
|
}></Route>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Route path='/banks/gtopic/:bankId/edit'
|
|
|
|
|
render={
|
|
|
|
@ -173,33 +167,39 @@ class BanksIndex extends Component{
|
|
|
|
|
></Route>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Route path='/banks/poll/:bankId'
|
|
|
|
|
<Route path='/banks/poll/:bankId/:type'
|
|
|
|
|
render={
|
|
|
|
|
(props) => {
|
|
|
|
|
return (<BanksTabIndex {...this.props} {...props} {...this.state} {...common} />)
|
|
|
|
|
}
|
|
|
|
|
}></Route>
|
|
|
|
|
|
|
|
|
|
{/*毕设任务题库详情*/}
|
|
|
|
|
<Route path="/banks/gtask/:workid"
|
|
|
|
|
<Route path='/banks/exercise/:Id/:type'
|
|
|
|
|
render={
|
|
|
|
|
(props) => {
|
|
|
|
|
return (<BanksTabIndex {...this.props} {...props} {...this.state} {...common}
|
|
|
|
|
/>)
|
|
|
|
|
}
|
|
|
|
|
}></Route>
|
|
|
|
|
{/*毕设任务题库详情*/}
|
|
|
|
|
<Route path="/banks/gtask/:workid/:type"
|
|
|
|
|
render={
|
|
|
|
|
(props) => (<Completetaskpage {...this.props} {...props} {...this.state} {...common} />)
|
|
|
|
|
}
|
|
|
|
|
></Route>
|
|
|
|
|
{/*毕设内容题库详情*/}
|
|
|
|
|
<Route path="/banks/gtopic/:workid"
|
|
|
|
|
<Route path="/banks/gtopic/:workid/:type"
|
|
|
|
|
render={
|
|
|
|
|
(props) => (<CompletetopicdePage {...this.props} {...props} {...this.state} {...common}/>)
|
|
|
|
|
}
|
|
|
|
|
></Route>
|
|
|
|
|
{/*分组作业题库详情*/}
|
|
|
|
|
<Route path="/banks/group/:workid"
|
|
|
|
|
<Route path="/banks/group/:workid/:type"
|
|
|
|
|
render={
|
|
|
|
|
(props) => (<GroupjobbankPage {...this.props} {...props} {...this.state} {...common} />)
|
|
|
|
|
}
|
|
|
|
|
></Route>
|
|
|
|
|
{/* 普通作业题库详情*/}
|
|
|
|
|
<Route path="/banks/normal/:workid"
|
|
|
|
|
<Route path="/banks/normal/:workid/:type"
|
|
|
|
|
render={
|
|
|
|
|
(props) => (<Generaljobbankdetails {...this.props} {...props} {...this.state} {...common} />)
|
|
|
|
|
}
|
|
|
|
|