/* eslint-disable */
|
/**liuwh
|
* 4/6/2020, 12:16:07 PM
|
* doc comment for the file goes here
|
*/
|
|
/** Happy Coding */
|
import React, { ReactNode, ReactEventHandler, Component } from 'react';
|
import BreadcrumbView from '../../components/common/BreadcrumbView';
|
import SystemPage from '../../components/page/SystemPage'
|
import RulesList from '../../components/page/index/rulesList'
|
|
export default class System extends Component {
|
constructor(props) {
|
super(props);
|
this.config = {
|
};
|
this.state = {
|
};
|
}
|
|
componentWillMount() { }
|
|
componentDidMount() { }
|
|
componentDidShow() { }
|
|
render() {
|
return (
|
<div className="System-main">
|
<BreadcrumbView data={[{ name: '工作制度' }]} />
|
{/* <SystemPage /> */}
|
<RulesList {...this.prosp} />
|
</div>
|
)
|
}
|
}
|