From c98e45bfac25e9110ad0383faac54a54d98ea9d5 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 18 十一月 2021 20:47:04 +0800 Subject: [PATCH] 2021-11-18 --- src/pc/components/navbar/normal-navbar/menusetting/index.jsx | 21 +++++---------------- 1 files changed, 5 insertions(+), 16 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..18f00b1 100644 --- a/src/pc/components/navbar/normal-navbar/menusetting/index.jsx +++ b/src/pc/components/navbar/normal-navbar/menusetting/index.jsx @@ -19,27 +19,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 () { @@ -53,7 +42,7 @@ wrapClassName="popview-modal" title="鑿滃崟缂栬緫" visible={visible} - width={800} + width={950} maskClosable={false} okText={dict['model.submit']} onOk={this.verifySubmit} -- Gitblit v1.8.0