|
|
|
@ -1,37 +0,0 @@
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
|
|
import "../usersInfo.css"
|
|
|
|
|
|
|
|
|
|
class GtopicBanksAnswer extends Component{
|
|
|
|
|
constructor(props){
|
|
|
|
|
super(props);
|
|
|
|
|
}
|
|
|
|
|
componentDidMount = () =>{
|
|
|
|
|
let bankId = this.props.match.params.bankId
|
|
|
|
|
const crumbData={
|
|
|
|
|
title:'MySQL数据库编程开发实训(基础篇)111',
|
|
|
|
|
is_public:true,
|
|
|
|
|
crumbArray:[
|
|
|
|
|
{content:'详情'},
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
const menuData={
|
|
|
|
|
tab:'1',
|
|
|
|
|
menuArray:[
|
|
|
|
|
{to:'/banks/gtopic/1',content:'内容详情'},
|
|
|
|
|
{to:'/banks/gtopic/1/answer',content:'参考答案'},
|
|
|
|
|
],
|
|
|
|
|
category:'topic',
|
|
|
|
|
id:bankId
|
|
|
|
|
}
|
|
|
|
|
this.props.initPublic(crumbData,menuData);
|
|
|
|
|
}
|
|
|
|
|
render(){
|
|
|
|
|
return(
|
|
|
|
|
<div>
|
|
|
|
|
answer
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
export default GtopicBanksAnswer;
|