| | |
| | | <contextmenu :itemList="menuItemList" :visible.sync="menuVisible" style="z-index: 9999;" @select="onMenuSelect"/> |
| | | <!-- update-end- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 --> |
| | | <a-tabs |
| | | v-if="$route.meta.title!=='首页'&&multipage" |
| | | @contextmenu.native="e => onContextmenu(e)" |
| | | v-if="multipage" |
| | | :active-key="activePage" |
| | | class="tab-layout-tabs" |
| | | style="height:52px" |
| | |
| | | @change="changePage" |
| | | @tabClick="tabCallBack" |
| | | @edit="editPage"> |
| | | <a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" :closable="!(page.meta.title=='首页')"> |
| | | <a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" |
| | | :closable="!(page.meta.title=='首页')"> |
| | | <span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span> |
| | | </a-tab-pane> |
| | | </a-tabs> |
| | | <div style="margin: 12px 12px 0;"> |
| | | <div> |
| | | <!-- update-begin-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 --> |
| | | <keep-alive v-if="multipage"> |
| | | <router-view v-if="reloadFlag"/> |
| | |
| | | { key: '2', icon: 'arrow-right', text: '关闭右侧' }, |
| | | { key: '3', icon: 'close', text: '关闭其它' } |
| | | ], |
| | | reloadFlag:true |
| | | reloadFlag: true |
| | | } |
| | | }, |
| | | /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用 ->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */ |
| | | provide(){ |
| | | return{ |
| | | closeCurrent:this.closeCurrent |
| | | provide() { |
| | | return { |
| | | closeCurrent: this.closeCurrent |
| | | } |
| | | }, |
| | | /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */ |
| | |
| | | this.activePage = newRoute.fullPath |
| | | if (!this.multipage) { |
| | | this.linkList = [newRoute.fullPath] |
| | | this.pageList = [Object.assign({},newRoute)] |
| | | // update-begin-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存 |
| | | } else if(indexKey==newRoute.fullPath) { |
| | | this.pageList = [Object.assign({}, newRoute)] |
| | | // update-begin-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存 |
| | | } else if (indexKey == newRoute.fullPath) { |
| | | //首页时 判断是否缓存 没有缓存 刷新之 |
| | | if (newRoute.meta.keepAlive === false) { |
| | | this.routeReload() |
| | | } |
| | | // update-end-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存 |
| | | }else if (this.linkList.indexOf(newRoute.fullPath) < 0) { |
| | | // update-end-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存 |
| | | } else if (this.linkList.indexOf(newRoute.fullPath) < 0) { |
| | | this.linkList.push(newRoute.fullPath) |
| | | this.pageList.push(Object.assign({},newRoute)) |
| | | this.pageList.push(Object.assign({}, newRoute)) |
| | | //// update-begin-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842 |
| | | // if (newRoute.meta.keepAlive) { |
| | | // this.routeReload() |
| | |
| | | } else if (this.linkList.indexOf(newRoute.fullPath) >= 0) { |
| | | let oldIndex = this.linkList.indexOf(newRoute.fullPath) |
| | | let oldPositionRoute = this.pageList[oldIndex] |
| | | this.pageList.splice(oldIndex, 1, Object.assign({},newRoute,{meta:oldPositionRoute.meta})) |
| | | this.pageList.splice(oldIndex, 1, Object.assign({}, newRoute, { meta: oldPositionRoute.meta })) |
| | | } |
| | | }, |
| | | 'activePage': function(key) { |
| | |
| | | this.changeTitle(waitRouter.meta.title) |
| | | }, |
| | | 'multipage': function(newVal) { |
| | | if(this.reloadFlag){ |
| | | if (this.reloadFlag) { |
| | | if (!newVal) { |
| | | this.linkList = [this.$route.fullPath] |
| | | this.pageList = [this.$route] |
| | |
| | | if (this.multipage && this.linkList.indexOf(indexKey) === -1) { |
| | | this.addIndexToFirst() |
| | | } |
| | | }, |
| | | } |
| | | // update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG |
| | | }, |
| | | methods: { |
| | |
| | | |
| | | // update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题 |
| | | changeTitle(title) { |
| | | let projectTitle = "MDC智慧车间" |
| | | let projectTitle = 'MDC智慧车间' |
| | | // 首页特殊处理 |
| | | if (this.$route.path === indexKey) { |
| | | document.title = projectTitle |
| | |
| | | tabCallBack() { |
| | | this.$nextTick(() => { |
| | | //update-begin-author:taoyan date: 20201211 for:【新版】online报错 JT-100 |
| | | setTimeout(()=>{ |
| | | //省市区组件里面给window绑定了个resize事件 导致切换页面的时候触发了他的resize,但是切换页面,省市区组件还没被销毁前就触发了该事件,导致控制台报错,加个延迟 |
| | | triggerWindowResizeEvent() |
| | | },20) |
| | | setTimeout(() => { |
| | | //省市区组件里面给window绑定了个resize事件 导致切换页面的时候触发了他的resize,但是切换页面,省市区组件还没被销毁前就触发了该事件,导致控制台报错,加个延迟 |
| | | triggerWindowResizeEvent() |
| | | }, 20) |
| | | //update-end-author:taoyan date: 20201211 for:【新版】online报错 JT-100 |
| | | }) |
| | | }, |
| | |
| | | this.$message.warning('这是最后一页,不能再关闭了啦') |
| | | return |
| | | } |
| | | console.log("this.pageList ",this.pageList ); |
| | | console.log('this.pageList ', this.pageList) |
| | | let removeRoute = this.pageList.filter(item => item.fullPath == key) |
| | | this.pageList = this.pageList.filter(item => item.fullPath !== key) |
| | | let index = this.linkList.indexOf(key) |
| | |
| | | let cacheRouterArray = Vue.ls.get(CACHE_INCLUDED_ROUTES) || [] |
| | | if (removeRoute && removeRoute[0]) { |
| | | let componentName = removeRoute[0].meta.componentName |
| | | console.log("key: ", key); |
| | | console.log("componentName: ", componentName); |
| | | if(cacheRouterArray.includes(componentName)){ |
| | | console.log('key: ', key) |
| | | console.log('componentName: ', componentName) |
| | | if (cacheRouterArray.includes(componentName)) { |
| | | cacheRouterArray.splice(cacheRouterArray.findIndex(item => item === componentName), 1) |
| | | Vue.ls.set(CACHE_INCLUDED_ROUTES, cacheRouterArray) |
| | | } |
| | |
| | | } |
| | | }, |
| | | /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */ |
| | | closeCurrent(){ |
| | | this.remove(this.activePage); |
| | | closeCurrent() { |
| | | this.remove(this.activePage) |
| | | }, |
| | | /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */ |
| | | closeOthers(pageKey) { |
| | | let index = this.linkList.indexOf(pageKey) |
| | | if (pageKey == indexKey || pageKey.indexOf('?ticke=')>=0) { |
| | | if (pageKey == indexKey || pageKey.indexOf('?ticke=') >= 0) { |
| | | this.linkList = this.linkList.slice(index, index + 1) |
| | | this.pageList = this.pageList.slice(index, index + 1) |
| | | this.activePage = this.linkList[0] |
| | |
| | | } |
| | | }, |
| | | //update-begin-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title |
| | | dynamicRouterShow(key,title){ |
| | | dynamicRouterShow(key, title) { |
| | | let keyIndex = this.linkList.indexOf(key) |
| | | if(keyIndex>=0){ |
| | | if (keyIndex >= 0) { |
| | | let currRouter = this.pageList[keyIndex] |
| | | let meta = Object.assign({},currRouter.meta,{title:title}) |
| | | this.pageList.splice(keyIndex, 1, Object.assign({},currRouter,{meta:meta})) |
| | | let meta = Object.assign({}, currRouter.meta, { title: title }) |
| | | this.pageList.splice(keyIndex, 1, Object.assign({}, currRouter, { meta: meta })) |
| | | if (key === this.activePage) { |
| | | this.changeTitle(title) |
| | | } |
| | |
| | | //update-end-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title |
| | | |
| | | //update-begin-author:taoyan date:20191008 for:路由刷新 |
| | | routeReload(){ |
| | | routeReload() { |
| | | this.reloadFlag = false |
| | | let ToggleMultipage = "ToggleMultipage" |
| | | this.$store.dispatch(ToggleMultipage,false) |
| | | this.$nextTick(()=>{ |
| | | this.$store.dispatch(ToggleMultipage,true) |
| | | let ToggleMultipage = 'ToggleMultipage' |
| | | this.$store.dispatch(ToggleMultipage, false) |
| | | this.$nextTick(() => { |
| | | this.$store.dispatch(ToggleMultipage, true) |
| | | this.reloadFlag = true |
| | | }) |
| | | }, |
| | | //update-end-author:taoyan date:20191008 for:路由刷新 |
| | | //新增一个返回方法 |
| | | excuteCallback(callback){ |
| | | excuteCallback(callback) { |
| | | callback() |
| | | }, |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | border-bottom: 1px solid transparent !important; |
| | | } |
| | | .ant-tabs-tab-active { |
| | | border-color: @primary-color!important; |
| | | border-color: @primary-color !important; |
| | | } |
| | | } |
| | | |