From 0e76431e5bc06a60c8103b39aa3b26f05bb2b810 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 24 十一月 2022 16:38:02 +0800 Subject: [PATCH] Merge branch 'develop' --- src/components/tabview/index.jsx | 11 +++-------- 1 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/components/tabview/index.jsx b/src/components/tabview/index.jsx index ed050db..2d23bc8 100644 --- a/src/components/tabview/index.jsx +++ b/src/components/tabview/index.jsx @@ -124,10 +124,10 @@ } } - modifyTabs = (tab, type, fixed) => { + modifyTabs = (tab, fixed) => { const { tabviews, activeId } = this.state - if (type === 'plus' && fixed) { + if (fixed) { let _tabs = tabviews.filter(item => item.MenuID !== tab.MenuID) let index = _tabs.findIndex(item => item.MenuID === activeId) @@ -144,7 +144,7 @@ activeId: tab.MenuID }) }) - } else if (type === 'plus') { + } else { if (tabviews.findIndex(item => item.MenuID === tab.MenuID) > -1) { let _tabs = tabviews.filter(item => item.MenuID !== tab.MenuID) this.setState({ @@ -161,11 +161,6 @@ activeId: tab.MenuID }) } - } else if (type === 'replace') { - this.setState({ - tabviews: tab ? [tab] : [], - activeId: tab ? tab.MenuID : '' - }) } let node = document.getElementById('root').parentNode.parentNode -- Gitblit v1.8.0