From 5af280c40f52a839fc4bda38934f680cccf98763 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期三, 10 十一月 2021 17:43:12 +0800 Subject: [PATCH] 2021-11-10 --- src/menu/components/table/normal-table/index.jsx | 20 ++++++++++++++++++-- 1 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/menu/components/table/normal-table/index.jsx b/src/menu/components/table/normal-table/index.jsx index fe363e0..bd70818 100644 --- a/src/menu/components/table/normal-table/index.jsx +++ b/src/menu/components/table/normal-table/index.jsx @@ -41,6 +41,7 @@ UNSAFE_componentWillMount () { const { card } = this.props + const { appType } = this.state if (card.isNew) { let _card = { @@ -121,6 +122,11 @@ _card.wrap.doubleClick = oriUids[_card.wrap.doubleClick] || '' } } + + if (appType === 'mob') { + _card.search = [] + _card.action = _card.action.filter(a => !a.origin) + } this.setState({ card: _card @@ -128,8 +134,13 @@ this.filterOrigin(_card) } else { + let _card = fromJS(card).toJS() + if (appType === 'mob') { + _card.search = [] + } + this.setState({ - card: fromJS(card).toJS() + card: _card }) } } @@ -394,7 +405,12 @@ render() { const { card, appType } = this.state + let options = ['action', 'search', 'form', 'cols'] let _style = resetStyle(card.style) + + if (appType === 'mob') { + options = ['action', 'cols'] + } return ( <div className="menu-normal-table-edit-box" style={_style} onClick={this.clickComponent} id={card.uuid}> @@ -408,7 +424,7 @@ <Icon type="edit" style={{color: '#1890ff'}} title="缂栬緫"/> </NormalForm> <CopyComponent type="normaltable" card={card}/> - <PasteComponent config={card} options={['action', 'search', 'form', 'cols']} updateConfig={this.updateComponent} /> + <PasteComponent config={card} options={options} updateConfig={this.updateComponent} /> <Icon className="style" title="璋冩暣鏍峰紡" onClick={this.changeStyle} type="font-colors" /> <LogComponent btnlog={card.btnlog || []} handlelog={this.handleLog} /> <UserComponent config={card}/> -- Gitblit v1.8.0