forked from huge/frontEnd/hugeOA

Mr Ke
2020-10-20 6bf92751fe8dfa0624285268968a1fd7a8a7e7e5
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
/* eslint-disable */
/**liuwh
 * 5/29/2020, 10:36:57 AM
 * doc comment for the file goes here
 */
 
/** 绩效详情 */
import React, { ReactNode, ReactEventHandler, Component } from 'react';
import MeritsDetailPage from '../../../components/oa/merits/meritsDetail';
 
export default class MeritsDetail extends Component {
  constructor(props) {
    super(props);
    this.config = {
    };
    this.state = {
    };
  }
 
  componentWillMount() { }
 
  componentDidMount() { }
 
  componentDidShow() { }
 
  render() {
    return (
      <div className="merits-detail-page-main">
        <MeritsDetailPage  {...this.props} />
      </div>
    )
  }
}