1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| import { useWorktabStore } from '@/store/modules/worktab'
| import { isIframe } from './route'
| import { useSettingStore } from '@/store/modules/setting'
| import { IframeRouteManager } from '@/router/core'
| import { useCommon } from '@/hooks/core/useCommon'
| const setWorktab = (to) => {
| const worktabStore = useWorktabStore()
| const { meta, path, name, params, query } = to
| if (!meta.isHideTab) {
| if (isIframe(path)) {
| const iframeRoute = IframeRouteManager.getInstance().findByPath(to.path)
| if (iframeRoute?.meta) {
| worktabStore.openTab({
| title: iframeRoute.meta.title,
| icon: meta.icon,
| path,
| name,
| keepAlive: meta.keepAlive,
| params,
| query
| })
| }
| } else if (useSettingStore().showWorkTab || path === useCommon().homePath.value) {
| worktabStore.openTab({
| title: meta.title,
| icon: meta.icon,
| path,
| name,
| keepAlive: meta.keepAlive,
| params,
| query,
| fixedTab: meta.fixedTab
| })
| }
| }
| }
| export { setWorktab }
|
|