mirror of https://github.com/openspug/spug
F 修复某些情况下账户编辑角色列表未正常显示的问题
parent
6f88298632
commit
0e0af703a8
|
@ -4,12 +4,14 @@
|
||||||
* Released under the MIT License.
|
* Released under the MIT License.
|
||||||
*/
|
*/
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {Modal, Form, Select, Input, message, Col} from 'antd';
|
import { observer } from 'mobx-react';
|
||||||
|
import { Modal, Form, Select, Input, message, Col } from 'antd';
|
||||||
import http from 'libs/http';
|
import http from 'libs/http';
|
||||||
import store from './store';
|
import store from './store';
|
||||||
import roleStore from '../role/store';
|
import roleStore from '../role/store';
|
||||||
import {Link} from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
|
|
||||||
|
@observer
|
||||||
class ComForm extends React.Component {
|
class ComForm extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
Loading…
Reference in New Issue