import React, {PureComponent} from 'react'; /** * 配置角色及权限 */ export default class PZhezhao extends PureComponent { constructor(props, context) { super(props, context); this.state = {}; } /******************************生命周期******************************/ componentDidMount = () => { } componentWillReceiveProps = () => { } /******************************ajax请求******************************/ /******************************相关事件******************************/ /******************************render******************************/ render() { const { top = "0px", background = "rgba(0, 0, 0, 0.3)" } = this.props; const props = { style: { position: "fixed", top, bottom: "0", left: "0", right: "0", zIndex: "2", background, cursor: "not-allowed" } }; return (
); } }