From 2ccd33975abf91f9a7929ca8ed6fc03d74ee424d Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期六, 08 十月 2022 10:10:07 +0800
Subject: [PATCH] 2022-10-08

---
 src/pc/components/navbar/normal-navbar/menusetting/index.jsx |   26 ++++++++------------------
 1 files changed, 8 insertions(+), 18 deletions(-)

diff --git a/src/pc/components/navbar/normal-navbar/menusetting/index.jsx b/src/pc/components/navbar/normal-navbar/menusetting/index.jsx
index bb5070f..f965b23 100644
--- a/src/pc/components/navbar/normal-navbar/menusetting/index.jsx
+++ b/src/pc/components/navbar/normal-navbar/menusetting/index.jsx
@@ -1,7 +1,8 @@
 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'
@@ -19,27 +20,16 @@
     visible: false
   }
 
-  UNSAFE_componentWillMount () {
-    const { config } = this.props
-
-    this.setState({menus: fromJS(config.menus).toJS()})
-  }
-
   shouldComponentUpdate (nextProps, nextState) {
     return !is(fromJS(this.props), fromJS(nextProps)) || !is(fromJS(this.state), fromJS(nextState))
   }
 
   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 () {
@@ -48,12 +38,12 @@
 
     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']}
           onOk={this.verifySubmit}

--
Gitblit v1.8.0