| | |
| | | import PropTypes from 'prop-types' |
| | | import { is, fromJS } from 'immutable' |
| | | import { Modal } from 'antd' |
| | | import { MoreOutlined } from '@ant-design/icons' |
| | | import { EditOutlined } from '@ant-design/icons' |
| | | |
| | | |
| | | import MenusForm from './menus' |
| | |
| | | |
| | | return ( |
| | | <> |
| | | <MoreOutlined style={{color: '#1890ff'}} title="节点组" onClick={this.trigger}/> |
| | | <EditOutlined style={{color: '#1890ff'}} title="节点组" onClick={this.trigger}/> |
| | | <Modal |
| | | title="节点组" |
| | | wrapClassName="nodes-field-modal" |
| | | visible={visible} |
| | | width={950} |
| | | width={1100} |
| | | maskClosable={false} |
| | | onOk={this.submit} |
| | | onCancel={() => { this.setState({ visible: false })}} |