forked from huge/frontEnd/hugeOA

Mr Ke
2020-04-29 c0c820559b46f3a5ede6fbd7f66e77d09981829f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* 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>
    )
  }
}