/**
|
* 徐祥健<xuxj@hugeinfo.com.cn>
|
* 2018年7月22日 16:42
|
*
|
*/
|
|
|
import React from 'react';
|
import HeadView from '../view/HeadView';
|
import BulidMakingView from '../view/BulidMakingView';
|
|
import Fetch from '../fetch';
|
|
export default class Active extends React.Component {
|
constructor(props) {
|
super(props);
|
this.state = {
|
data: null
|
};
|
}
|
|
componentDidMount() {
|
document.title = '南检活动管理';
|
// const { id } = this.props.match.params;
|
}
|
|
render() {
|
return (
|
<div className="app-page">
|
<HeadView history={this.props.history}/>
|
<BulidMakingView />
|
</div>
|
);
|
}
|
|
}
|