From af6486b3629d23e426ce85b87dbc20dfa15b1afe Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 07 十一月 2022 18:50:27 +0800 Subject: [PATCH] 2022-11-07 --- src/menu/components/table/edit-table/columns/index.jsx | 30 +++++++++++------------------- 1 files changed, 11 insertions(+), 19 deletions(-) diff --git a/src/menu/components/table/edit-table/columns/index.jsx b/src/menu/components/table/edit-table/columns/index.jsx index 09ab9f2..bf073d4 100644 --- a/src/menu/components/table/edit-table/columns/index.jsx +++ b/src/menu/components/table/edit-table/columns/index.jsx @@ -128,8 +128,7 @@ return !is(fromJS(column), fromJS(nextProps.column)) || !is(fromJS(config.columns), fromJS(nextProps.config.columns)) || - !is(fromJS(config.action), fromJS(nextProps.config.action)) || - !is(fromJS(config.search), fromJS(nextProps.config.search)) + !is(fromJS(config.action), fromJS(nextProps.config.action)) } render() { @@ -182,7 +181,6 @@ } state = { - appType: sessionStorage.getItem('appType'), tableId: '', data: [{uuid: Utils.getuuid()}], refresh: false, // 寮哄埗鍒锋柊 @@ -243,7 +241,6 @@ return !is(fromJS(this.state), fromJS(nextState)) || !is(fromJS(config.wrap), fromJS(nextProps.config.wrap)) || !is(fromJS(config.submit), fromJS(nextProps.config.submit)) || - !is(fromJS(config.search), fromJS(nextProps.config.search)) || !is(fromJS(config.action), fromJS(nextProps.config.action)) || config.setting.laypage !== nextProps.config.setting.laypage } @@ -264,11 +261,16 @@ let _columns = fromJS(this.state.columns).toJS() let type = item.subType - if (item.subType === 'link' || item.subType === 'colspan' || item.subType === 'picture') { + if (!['text', 'number', 'textarea', 'custom', 'action', 'formula', 'index'].includes(item.subType)) { type = 'text' } let col = { focus: true, uuid: Utils.getuuid(), label: 'label', field: '', type: type, elements: [] } + if (col.type === 'action') { + col.label = '鎿嶄綔' + } else if (col.type === 'index') { + col.label = '搴忓彿' + } _columns.splice(hoverIndex, 0, col) @@ -294,6 +296,10 @@ let config = {...this.props.config, cols: _columns} if (btn) { config.action = config.action.filter(item => item.uuid !== btn.uuid) + + setTimeout(() => { + MKEmitter.emit('revert', config.uuid) + }, 200) } this.props.updatecolumn(config) @@ -397,7 +403,6 @@ } deleteCol = (col) => { - const { appType } = this.state let _columns = fromJS(this.state.columns).toJS() _columns = _columns.filter(column => column.uuid !== col.uuid) @@ -407,19 +412,6 @@ }, () => { this.props.updatecolumn({...this.props.config, cols: _columns}) }) - - if (col.type !== 'action' || appType === 'mob') return - - let uuids = [] - col.elements && col.elements.forEach(c => { - if (appType === 'pc' && c.OpenType !== 'popview') return - - uuids.push(c.uuid) - }) - - if (uuids.length === 0) return - - MKEmitter.emit('delButtons', uuids) } updateLineMarks = (vals) => { -- Gitblit v1.8.0