/* eslint-disable */
|
/**liuwh
|
* 4/6/2020, 3:51:13 PM
|
* doc comment for the file goes here
|
*/
|
|
/** Happy Coding */
|
import React, { ReactNode, ReactEventHandler, Component } from 'react';
|
// import { Link } from 'react-router-dom';
|
// import { Icon } from 'antd';
|
import BreadcrumbView from '../../components/common/BreadcrumbView';
|
import DocumentDetailPage from '../../components/page/DocumentDetailPage';
|
|
export default class DocumentDetail extends Component {
|
constructor(props) {
|
super(props);
|
this.config = {
|
};
|
this.state = {
|
};
|
}
|
|
componentWillMount() { }
|
|
componentDidMount() {
|
console.log()
|
}
|
|
componentDidShow() { }
|
|
render() {
|
return (
|
<div className="document-edit-main h-100 flex-box-column">
|
{/* <BreadcrumbView data={[{ name: '查看文档' }]} /> */}
|
<div className="flex-1">
|
<DocumentDetailPage {...this.props} />
|
</div>
|
</div>
|
)
|
}
|
}
|