commit
bc052dfa73
6 changed files with 108 additions and 13 deletions
@ -0,0 +1,34 @@ |
|||||||
|
import React, { Component } from "react"; |
||||||
|
import ExamEditPage from "./compoents/ExamEditPage"; |
||||||
|
interface States { |
||||||
|
resData: any |
||||||
|
visible: boolean |
||||||
|
title: string |
||||||
|
current: any |
||||||
|
} |
||||||
|
|
||||||
|
class ExamDetailAnalysis extends Component<any, States> { |
||||||
|
constructor(props: any) { |
||||||
|
super(props); |
||||||
|
this.state = { |
||||||
|
resData: undefined, |
||||||
|
visible: false, |
||||||
|
title: '', |
||||||
|
current: {} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
componentDidMount() { |
||||||
|
// this.getList()
|
||||||
|
} |
||||||
|
|
||||||
|
render() { |
||||||
|
return ( |
||||||
|
<div className="container"> |
||||||
|
<ExamEditPage isEdit={false}/> |
||||||
|
</div> |
||||||
|
) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
export default ExamDetailAnalysis; |
@ -0,0 +1,34 @@ |
|||||||
|
import React, { Component } from "react"; |
||||||
|
import ExamEditPage from "./compoents/ExamEditPage"; |
||||||
|
interface States { |
||||||
|
resData: any |
||||||
|
visible: boolean |
||||||
|
title: string |
||||||
|
current: any |
||||||
|
} |
||||||
|
|
||||||
|
class ExamPaperAnalysis extends Component<any, States> { |
||||||
|
constructor(props: any) { |
||||||
|
super(props); |
||||||
|
this.state = { |
||||||
|
resData: undefined, |
||||||
|
visible: false, |
||||||
|
title: '', |
||||||
|
current: {} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
componentDidMount() { |
||||||
|
// this.getList()
|
||||||
|
} |
||||||
|
|
||||||
|
render() { |
||||||
|
return ( |
||||||
|
<div className="container"> |
||||||
|
<ExamEditPage isEdit={false}/> |
||||||
|
</div> |
||||||
|
) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
export default ExamPaperAnalysis; |
Loading…
Reference in new issue