<template>
<div class="navbar">
<el-tabs v-model="activePage" type="card" closable @edit="editPage" @change="changePage" >
<el-tab-pane :key="item.fullPath" v-for="item in pageList" :label="item.meta.title" :name="item.fullPath">
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
export default {
data() {
return {
pageList: [],
linkList: [],
activePage: '',
reloadFlag: true
}
},
provide() {
return {
closeCurrent: this.closeCurrent
}
},
created() {
// if (this.$route.path != indexKey) {
// this.addIndexToFirst()
// }
// 复制一个route对象出来,不能影响原route
let currentRoute = Object.assign({}, this.$route)
currentRoute.meta = Object.assign({}, currentRoute.meta)
this.pageList.push(currentRoute)
this.linkList.push(currentRoute.fullPath)
this.activePage = currentRoute.fullPath
},
mounted() {},
watch: {
'$route': function (newRoute) {
this.activePage = newRoute.fullPath
console.log(newRoute,"newRoute");
console.log(newRoute.fullPath,"newRoute.fullPath");
// if (indexKey == newRoute.fullPath) {
// // console.log(11);
// //首页时 判断是否缓存 没有缓存 刷新之
// // if (newRoute.meta.keepAlive === false) {
// // console.log(112233);
// // this.routeReload()
// // }
// // update-end-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
// } else
if (this.linkList.indexOf(newRoute.fullPath) < 0) {
console.log(22);
this.linkList.push(newRoute.fullPath)
this.pageList.push(Object.assign({}, newRoute))
update-begin-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842
// if (newRoute.meta.keepAlive) {
// this.routeReload()
// }
update-end-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842
} else if (this.linkList.indexOf(newRoute.fullPath) >= 0) {
console.log(33);
let oldIndex = this.linkList.indexOf(newRoute.fullPath)
let oldPositionRoute = this.pageList[oldIndex]
this.pageList.splice(oldIndex, 1, Object.assign({}, newRoute, {
meta: oldPositionRoute.meta
}))
}
},
'activePage': function (key) {
let index = this.linkList.lastIndexOf(key)
let waitRouter = this.pageList[index]
// 【TESTA-523】修复:不允许重复跳转路由异常
if (waitRouter.fullPath !== this.$route.fullPath) {
this.$router.push(Object.assign({}, waitRouter))
}
// this.changeTitle(waitRouter.meta.title)
},
// update-begin-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
// device() {
// if (this.multipage && this.linkList.indexOf(indexKey) === -1) {
// this.addIndexToFirst()
// }
// },
// update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
},
methods: {
// update-begin-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
// 将首页添加到第一位
// addIndexToFirst() {
// this.pageList.splice(0, 0, {
// name: 'Dashboard',
// path: indexKey,
// fullPath: indexKey,
// meta: {
// icon: 'dashboard',
// title: '首页'
// }
// })
// this.linkList.splice(0, 0, indexKey)
// },
// update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
// update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题
// changeTitle(title) {
// let projectTitle = "Jeecg-Boot 企业级低代码平台"
// // 首页特殊处理
// if (this.$route.path === indexKey) {
// document.title = projectTitle
// } else {
// document.title = title + ' · ' + projectTitle
// }
// },
// update-end-author:sunjianlei date:20200120 for: 动态更改页面标题
changePage(key) {
this.activePage = key
},
// tabCallBack() {
// console.log(111);
// this.$nextTick(() => {
// //update-begin-author:taoyan date: 20201211 for:【新版】online报错 JT-100
// setTimeout(() => {
// //省市区组件里面给window绑定了个resize事件 导致切换页面的时候触发了他的resize,但是切换页面,省市区组件还没被销毁前就触发了该事件,导致控制台报错,加个延迟
// triggerWindowResizeEvent()
// }, 20)
// //update-end-author:taoyan date: 20201211 for:【新版】online报错 JT-100
// })
// },
editPage(key, action) {
this[action](key)
},
remove(key) {
// if (key == indexKey) {
// this.$message.warning('首页不能关闭!')
// return
// }
if (this.pageList.length === 1) {
this.$message.warning('这是最后一页,不能再关闭了啦')
return
}
// let removeRoute = this.pageList.filter(item => item.fullPath == key)
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]
//update-begin--Author:scott Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
//关闭页面则从缓存cache_included_routes中删除路由,下次点击菜单会重新加载页面
// let cacheRouterArray = Vue.ls.get(CACHE_INCLUDED_ROUTES) || []
// if (removeRoute && removeRoute[0]) {
// let componentName = removeRoute[0].meta.componentName
// if (cacheRouterArray.includes(componentName)) {
// cacheRouterArray.splice(cacheRouterArray.findIndex(item => item === componentName), 1)
// Vue.ls.set(CACHE_INCLUDED_ROUTES, cacheRouterArray)
// }
// }
//update-end--Author:scott Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
},
closeCurrent() {
this.remove(this.activePage);
},
getPageKey(target, depth) {
depth = depth || 0
if (depth > 2) {
return null
}
let pageKey = target.getAttribute('pagekey')
pageKey = pageKey || (target.previousElementSibling ? target.previousElementSibling.getAttribute('pagekey') :
null)
return pageKey || (target.firstElementChild ? this.getPageKey(target.firstElementChild, ++depth) : null)
},
//update-begin-author:taoyan date:20191008 for:路由刷新
routeReload() {
this.reloadFlag = false
let ToggleMultipage = "ToggleMultipage"
this.$store.dispatch(ToggleMultipage, false)
this.$nextTick(() => {
this.$store.dispatch(ToggleMultipage, true)
this.reloadFlag = true
})
},
}
}
</script>
<style lang="scss" scoped>
</style>
|