mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
106 lines
2.9 KiB
Vue
106 lines
2.9 KiB
Vue
<template>
|
|
<global-layout>
|
|
<a-tabs @contextmenu.native="e => onContextmenu(e)" v-if="multipage" :active-key="activePage" style="margin-bottom: 8px" :hide-add="true" type="editable-card" @change="changePage" @edit="editPage">
|
|
<a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList">
|
|
<span slot="tab" :pagekey="page.fullPath">{{page.name}}</span>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
<transition name="page-toggle">
|
|
<keep-alive v-if="multipage">
|
|
<router-view />
|
|
</keep-alive>
|
|
<router-view v-else />
|
|
</transition>
|
|
</global-layout>
|
|
</template>
|
|
|
|
<script>
|
|
import GlobalLayout from './GlobalLayout'
|
|
import ATabs from 'ant-design-vue/es/tabs'
|
|
const ATabPane = ATabs.TabPane
|
|
export default {
|
|
name: 'MenuView',
|
|
components: {ATabPane, ATabs, GlobalLayout},
|
|
data () {
|
|
return {
|
|
pageList: [],
|
|
linkList: [],
|
|
activePage: ''
|
|
}
|
|
},
|
|
computed: {
|
|
multipage () {
|
|
return this.$store.state.setting.multipage
|
|
}
|
|
},
|
|
created () {
|
|
this.pageList.push(this.$route)
|
|
this.linkList.push(this.$route.fullPath)
|
|
this.activePage = this.$route.fullPath
|
|
},
|
|
watch: {
|
|
'$route': function (newRoute, oldRoute) {
|
|
this.activePage = newRoute.fullPath
|
|
if (!this.multipage) {
|
|
this.linkList = [newRoute.fullPath]
|
|
this.pageList = [newRoute]
|
|
} else if (this.linkList.indexOf(newRoute.fullPath) < 0) {
|
|
this.linkList.push(newRoute.fullPath)
|
|
this.pageList.push(newRoute)
|
|
}
|
|
},
|
|
'activePage': function (key) {
|
|
this.$router.push(key)
|
|
},
|
|
'multipage': function (newVal, oldVal) {
|
|
if (!newVal) {
|
|
this.linkList = [this.$route.fullPath]
|
|
this.pageList = [this.$route]
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
changePage (key) {
|
|
this.activePage = key
|
|
},
|
|
editPage (key, action) {
|
|
this[action](key)
|
|
},
|
|
add () {
|
|
},
|
|
remove (key) {
|
|
if (this.pageList.length === 1) {
|
|
this.$message.warning('这是最后一页,不能再关闭了啦')
|
|
return
|
|
}
|
|
this.pageList = this.pageList.filter(item => item.fullPath !== key)
|
|
let index = this.linkList.indexOf(key)
|
|
this.linkList = this.linkList.filter(item => item !== key)
|
|
index = index >= this.linkList.length ? this.linkList.length - 1 : index
|
|
this.activePage = this.linkList[index]
|
|
},
|
|
onTabClick (key) {
|
|
console.log(key)
|
|
},
|
|
onContextmenu (e) {
|
|
const tab = this.findTab(e.target)
|
|
if (tab !== null) {
|
|
e.preventDefault()
|
|
console.log(this.getPageKey(tab))
|
|
}
|
|
},
|
|
findTab (target) {
|
|
let role = target.getAttribute('role')
|
|
return role === 'tab' ? target : (role === 'tablist' ? null : this.findTab(target.parentNode))
|
|
},
|
|
getPageKey (tab) {
|
|
return tab.childNodes[0].childNodes[0].getAttribute('pagekey')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|