You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
<template>
|
|
<main :class="['aui-content']">
|
|
<router-view />
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import { isURL } from '@/utils/validate'
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
// tabs, 是否通过iframe展示
|
|
tabIsIframe(url) {
|
|
return isURL(url)
|
|
},
|
|
// tabs, 选中tab
|
|
tabSelectedHandle(tab) {
|
|
tab = this.$store.state.contentTabs.filter(item => item.name === tab.name)[0]
|
|
if (tab) {
|
|
this.$router.push({
|
|
'name': /^iframe_.+/.test(tab.name) ? 'iframe' : tab.name,
|
|
'params': { ...tab.params },
|
|
'query': { ...tab.query }
|
|
})
|
|
}
|
|
},
|
|
// tabs, 删除tab
|
|
tabRemoveHandle(tabName) {
|
|
if (tabName === 'home') {
|
|
return false
|
|
}
|
|
this.$store.state.contentTabs = this.$store.state.contentTabs.filter(item => item.name !== tabName)
|
|
if (this.$store.state.contentTabs.length <= 0) {
|
|
this.$store.state.sidebarMenuActiveName = this.$store.state.contentTabsActiveName = 'home'
|
|
return false
|
|
}
|
|
// 当前选中tab被删除
|
|
if (tabName === this.$store.state.contentTabsActiveName) {
|
|
const tab = this.$store.state.contentTabs[this.$store.state.contentTabs.length - 1]
|
|
this.$router.push({
|
|
name: /^iframe_.+/.test(tab.name) ? 'iframe' : tab.name,
|
|
params: { ...tab.params },
|
|
query: { ...tab.query }
|
|
})
|
|
}
|
|
},
|
|
// tabs, 关闭其它
|
|
tabsCloseOtherHandle() {
|
|
this.$store.state.contentTabs = this.$store.state.contentTabs.filter(item => {
|
|
return item.name === 'home' || item.name === this.$store.state.contentTabsActiveName
|
|
})
|
|
},
|
|
// tabs, 关闭全部
|
|
tabsCloseAllHandle() {
|
|
this.$store.state.contentTabs = this.$store.state.contentTabs.filter(item => item.name === 'home')
|
|
this.$router.push({ name: 'home' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|