From cb9ade2afd2a367ad767bc605ab7086c695dd010 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 09 十二月 2022 15:53:32 +0800 Subject: [PATCH] 2022-12-09 --- src/menu/components/tabs/paste/index.jsx | 42 ++++++++++++------------------------------ 1 files changed, 12 insertions(+), 30 deletions(-) diff --git a/src/menu/components/tabs/paste/index.jsx b/src/menu/components/tabs/paste/index.jsx index 3e73e8d..9a398fa 100644 --- a/src/menu/components/tabs/paste/index.jsx +++ b/src/menu/components/tabs/paste/index.jsx @@ -4,7 +4,6 @@ import { SnippetsOutlined } from '@ant-design/icons' import MenuUtils from '@/utils/utils-custom.js' -import MKEmitter from '@/utils/events.js' import asyncComponent from '@/utils/asyncComponent' // import './index.scss' @@ -24,46 +23,35 @@ this.setState({visible: true}) } - resetconfig = (item, Tab, copyBtns, uuids = {}, floor) => { - item.tabId = Tab.uuid - item.parentId = Tab.parentId - + resetconfig = (item, uuids = {}) => { if (item.type === 'tabs') { uuids[item.uuid] = MenuUtils.getuuid() item.uuid = uuids[item.uuid] - item.setting.name = item.setting.name + MenuUtils.getdataName().toUpperCase().substr(-4) + item.setting.name = item.setting.name + MenuUtils.getSignName() item.name = item.setting.name item.subtabs.forEach(tab => { uuids[tab.uuid] = MenuUtils.getuuid() tab.uuid = uuids[tab.uuid] - tab.parentId = item.uuid - - if (floor >= 3) { - tab.components = tab.components.filter(cell => cell.type !== 'tabs') - } tab.components = tab.components.map(cell => { - cell = this.resetconfig(cell, tab, copyBtns, uuids, floor + 1) + cell = this.resetconfig(cell, uuids) return cell }) }) } else if (item.type === 'group') { uuids[item.uuid] = MenuUtils.getuuid() item.uuid = uuids[item.uuid] - item.setting.name = item.setting.name + MenuUtils.getdataName().toUpperCase().substr(-4) + item.setting.name = item.setting.name + MenuUtils.getSignName() item.name = item.setting.name item.components = item.components.map(cell => { - cell.tabId = Tab.uuid - cell.parentId = Tab.parentId - - cell = MenuUtils.resetComponentConfig(cell, copyBtns, uuids) + cell = MenuUtils.resetComponentConfig(cell, uuids) return cell }) } else { - item = MenuUtils.resetComponentConfig(item, copyBtns, uuids) + item = MenuUtils.resetComponentConfig(item, uuids) } return item @@ -71,15 +59,18 @@ pasteSubmit = () => { const { Tab } = this.props - let options = ['tabs', 'group', 'datacard', 'propcard', 'timeline', 'balcony', 'normaltable', 'mainsearch', 'stepform', 'tabform', 'tablecard', 'line', 'bar', 'pie', 'dashboard', 'scatter', 'chart'] + let appType = sessionStorage.getItem('appType') + let options = ['tabs', 'group', 'datacard', 'propcard', 'timeline', 'balcony', 'normaltable', 'mainsearch', 'simpleform', 'stepform', 'tabform', 'tablecard', 'line', 'bar', 'pie', 'dashboard', 'scatter', 'chart', 'sandbox'] let types = { login: '鐧诲綍', navbar: '瀵艰埅鏍�', topbar: '瀵艰埅鏍�' } - if (sessionStorage.getItem('appType') === 'mob') { + if (appType === 'mob') { options.push('menubar') + } else { + options.push('editable', 'antvG6') } this.pasteFormRef.handleConfirm().then(res => { @@ -99,20 +90,11 @@ return } - let copyBtns = new Map() - let floor = MenuUtils.getFloor(Tab.parentId) - - res = this.resetconfig(res, Tab, copyBtns, {}, floor) + res = this.resetconfig(res, {}) delete res.copyType this.props.insert(res, Tab) - - copyBtns = [...copyBtns.values()] - - if (copyBtns.length > 0) { - MKEmitter.emit('copyButtons', copyBtns) - } this.setState({visible: false}) -- Gitblit v1.8.0