king
10 小时以前 c06e58c80240afd703d289bb1c584e08b9783383
src/pc/components/navbar/normal-navbar/menusetting/index.jsx
@@ -1,10 +1,9 @@
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { is, fromJS } from 'immutable'
import { Icon, Modal } from 'antd'
import { Modal } from 'antd'
import { MenuOutlined } from '@ant-design/icons'
import zhCN from '@/locales/zh-CN/model.js'
import enUS from '@/locales/en-US/model.js'
import MenuTable from './menutable'
import './index.scss'
@@ -15,14 +14,7 @@
  }
  state = {
    dict: sessionStorage.getItem('lang') !== 'en-US' ? zhCN : enUS,
    visible: false
  }
  UNSAFE_componentWillMount () {
    const { config } = this.props
    this.setState({menus: fromJS(config.menus).toJS()})
  }
  shouldComponentUpdate (nextProps, nextState) {
@@ -30,32 +22,27 @@
  }
  verifySubmit = () => {
    // const { config } = this.props
    const { config } = this.props
    let menus = this.mTable.state.data || []
    // this.verifyRef.handleConfirm().then(res => {
    //   this.setState({
    //     wrap: res,
    //     visible: false
    //   })
    //   this.props.updateConfig({...config, wrap: res})
    // })
    this.props.updateConfig({...config, menus})
    this.setState({visible: false})
  }
  render () {
    const { config } = this.props
    const { visible, dict } = this.state
    const { visible } = this.state
    return (
      <div className="model-menu-setting-wrap">
        <Icon type="menu" title="菜单" onClick={() => this.setState({ visible: true })}/>
        <MenuOutlined title="菜单" onClick={() => this.setState({ visible: true })}/>
        <Modal
          wrapClassName="popview-modal"
          title="菜单编辑"
          visible={visible}
          width={800}
          width={950}
          maskClosable={false}
          okText={dict['model.submit']}
          okText="提交"
          onOk={this.verifySubmit}
          onCancel={() => { this.setState({ visible: false }) }}
          destroyOnClose