import './css/SystemSettingWindow.css'; import { Window, Content, Buttons, Form, FormControl, Label, Button, Select } from '../../ui/index'; /** * 系统设置窗口 * @author tengge / https://github.com/tengge1 */ class SystemSettingWindow extends React.Component { constructor(props) { super(props); this.state = { roles: {}, registerRole: '' }; this.handleChange = this.handleChange.bind(this); this.handleSave = this.handleSave.bind(this); this.handleClose = this.handleClose.bind(this); } render() { const { roles, registerRole } = this.state; return