123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- <template>
- <global-layout @dynamicRouterShow="dynamicRouterShow" @removeTab="remove">
- <!-- update-begin- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
- <contextmenu :itemList="menuItemList" :visible.sync="menuVisible" style="z-index: 9999;" @select="onMenuSelect" />
- <!-- update-end- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
- <a-tabs @contextmenu.native="e => onContextmenu(e)" v-if="multipage" :active-key="activePage"
- class="tab-layout-tabs" style="height:52px" :hide-add="true" type="editable-card" @change="changePage"
- @tabClick="tabCallBack" @edit="editPage">
- <a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList">
- <span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span>
- </a-tab-pane>
- </a-tabs>
- <div style="margin: 12px 12px 0;">
- <transition name="page-toggle">
- <keep-alive v-if="multipage">
- <router-view v-if="reloadFlag" @removeTab="remove" />
- </keep-alive>
- <template v-else>
- <router-view v-if="reloadFlag" @removeTab="remove" />
- </template>
- </transition>
- </div>
- </global-layout>
- </template>
- <script>
- import GlobalLayout from '@/components/page/GlobalLayout'
- import Contextmenu from '@/components/menu/Contextmenu'
- import {
- mixin,
- mixinDevice
- } from '@/utils/mixin.js'
- import {
- triggerWindowResizeEvent
- } from '@/utils/util'
- const indexKey = '/dashboard/analysis'
- export default {
- name: 'TabLayout',
- components: {
- GlobalLayout,
- Contextmenu
- },
- mixins: [mixin, mixinDevice],
- data() {
- return {
- pageList: [],
- linkList: [],
- activePage: '',
- menuVisible: false,
- menuItemList: [{
- key: '4',
- icon: 'reload',
- text: '刷 新'
- },
- {
- key: '1',
- icon: 'arrow-left',
- text: '关闭左侧'
- },
- {
- key: '2',
- icon: 'arrow-right',
- text: '关闭右侧'
- },
- {
- key: '3',
- icon: 'close',
- text: '关闭其它'
- }
- ],
- reloadFlag: true
- }
- },
- /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用 ->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
- provide() {
- return {
- closeCurrent: this.closeCurrent
- }
- },
- /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
- computed: {
- multipage() {
- //判断如果是手机模式,自动切换为单页面模式
- if (this.isMobile()) {
- return false
- } else {
- return this.$store.state.app.multipage
- }
- }
- },
- created() {
- this.$bus.$on('remove', this.remove)
- if (this.$route.path != indexKey) {
- this.addIndexToFirst()
- }
- // update-begin-author:sunjianlei date:20191223 for: 修复刷新后菜单Tab名字显示异常
- let storeKey = 'route:title:' + this.$route.fullPath
- let routeTitle = this.$ls.get(storeKey)
- if (routeTitle) {
- this.$route.meta.title = routeTitle
- }
- // update-end-author:sunjianlei date:20191223 for: 修复刷新后菜单Tab名字显示异常
- this.pageList.push(this.$route)
- this.linkList.push(this.$route.fullPath)
- this.activePage = this.$route.fullPath
- if (!this.linkList.includes("/account/stepForm")) {
- localStorage.removeItem("step")
- localStorage.removeItem("campaignId")
- localStorage.removeItem("pans")
- localStorage.removeItem("pansKey")
- localStorage.removeItem("appId")
- }
- if (!this.linkList.includes("/account/advertisingGroup") && !this.linkList.includes("/account/stepForm")) {
- localStorage.removeItem("advertisingGroup")
- localStorage.removeItem("advertisingGroupKey")
- }
- },
- watch: {
- '$route': function (newRoute) {
- //console.log("新的路由",newRoute)
- 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) {
- //首页时 判断是否缓存 没有缓存 刷新之
- if (newRoute.meta.keepAlive === false) {
- this.routeReload()
- }
- // 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))
- // update-begin-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍
- // if (newRoute.meta.keepAlive) {
- // this.routeReload()
- // }
- // update-end-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍
- } 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
- }))
- }
- if (!this.linkList.includes("/account/stepForm")) {
- localStorage.removeItem("step")
- localStorage.removeItem("campaignId")
- localStorage.removeItem("pans")
- localStorage.removeItem("pansKey")
- localStorage.removeItem("appId")
- }
- if (!this.linkList.includes("/account/advertisingGroup") && !this.linkList.includes("/account/stepForm")) {
- localStorage.removeItem("advertisingGroup")
- localStorage.removeItem("advertisingGroupKey")
- }
- if (!this.linkList.includes("/account/originality") && !this.linkList.includes("/account/stepForm")) {
- localStorage.removeItem("originality")
- localStorage.removeItem("originalityKey")
- }
- },
- 'activePage': function (key) {
- let index = this.linkList.lastIndexOf(key)
- let waitRouter = this.pageList[index]
- this.$router.push(Object.assign({}, waitRouter));
- // this.changeTitle(waitRouter.meta.title)
- },
- 'multipage': function (newVal) {
- if (this.reloadFlag) {
- if (!newVal) {
- this.linkList = [this.$route.fullPath]
- this.pageList = [this.$route]
- }
- }
- },
- // 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-analysis',
- 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() {
- this.$nextTick(() => {
- triggerWindowResizeEvent()
- })
- },
- editPage(key, action) {
- this[action](key)
- },
- remove(key) {
- if (key == indexKey) {
- this.$message.warning('首页不能关闭!')
- return
- }
- if (this.pageList.length === 1) {
- this.$message.warning('这是最后一页,不能再关闭了啦')
- return
- }
- console.log("this.pageList ", this.pageList);
- // 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]
- if (key == "/account/advertisingGroup") {
- if (this.linkList.includes("/account/stepForm") || this.linkList.includes("/account/originality")) {
- this.$message.error('已开启创意或创建页面,不可关闭组页面')
- return
- } else {
- localStorage.removeItem("advertisingGroup")
- localStorage.removeItem("advertisingGroupKey")
- }
- }
- if (key == "/account/stepForm") {
- localStorage.removeItem("step")
- localStorage.removeItem("pans")
- localStorage.removeItem("pansKey")
- }
- if (key == "/account/originality") {
- localStorage.removeItem("originality")
- localStorage.removeItem("originalityKey")
- }
- if (key == "/modules/material/materialList") {
- localStorage.removeItem("key")
- }
- if (key == "/account/accountIndex") {
- if (this.linkList.includes("/account/stepForm") || this.linkList.includes("/account/originality") || this
- .linkList.includes("/account/advertisingGroup")) {
- this.$message.error('正在操作,不可关闭计划列表')
- return
- } else {
- this.routeReload()
- }
- }
- if (key == '/modules/BatchCreate/TouTiaoBatch' && !(this.linkList.includes('/modules/BatchCreate/newCreate') ||
- this.linkList.includes('/modules/BatchCreate/newPlan') || this.linkList.includes(
- '/modules/BatchCreate/newGroup'))) {
- localStorage.setItem('accountInfo', '')
- localStorage.setItem("groupInfo", '')
- localStorage.setItem("planInfo", '')
- }
- // if(!this.linkList.includes('/modules/BatchCreate/newGroup')&&!this.linkList.includes('/modules/BatchCreate/newPlan')&&!this.linkList.includes('/modules/BatchCreate/newCreate')){
- // localStorage.setItem("planInfo",'')
- // localStorage.setItem("groupInfo",'')
- // }
- if (key == '/modules/BatchCreate/newGroup' && !(this.linkList.includes('/modules/BatchCreate/newCreate') || this
- .linkList.includes('/modules/BatchCreate/newPlan') || this.linkList.includes(
- '/modules/BatchCreate/TouTiaoBatch'))) {
- console.log('newGroup')
- localStorage.setItem('accountInfo', '')
- localStorage.setItem("groupInfo", '')
- }
- if (key == '/modules/BatchCreate/newPlan' && !(this.linkList.includes('/modules/BatchCreate/newCreate') || this
- .linkList.includes('/modules/BatchCreate/newGroup') || this.linkList.includes(
- '/modules/BatchCreate/TouTiaoBatch'))) {
- console.log('newPlan')
- localStorage.setItem('accountInfo', '')
- localStorage.setItem("groupInfo", '')
- localStorage.setItem("planInfo", '')
- }
- if (key == '/modules/BatchCreate/newCreate' && !(this.linkList.includes('/modules/BatchCreate/TouTiaoBatch') ||
- this.linkList.includes('/modules/BatchCreate/newPlan') || this.linkList.includes(
- '/modules/BatchCreate/newGroup'))) {
- console.log('newCreate')
- localStorage.setItem('accountInfo', '')
- localStorage.setItem("groupInfo", '')
- localStorage.setItem("planInfo", '')
- }
- // 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]
- 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
- if (index != -1) {
- this.activePage = this.linkList[index]
- } else {
- this.activePage = this.$route.fullPath
- }
- },
- onContextmenu(e) {
- const pagekey = this.getPageKey(e.target)
- if (pagekey !== null) {
- e.preventDefault()
- this.menuVisible = true
- }
- },
- 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)
- },
- onMenuSelect(key, target) {
- let pageKey = this.getPageKey(target)
- switch (key) {
- case '1':
- this.closeLeft(pageKey)
- break
- case '2':
- this.closeRight(pageKey)
- break
- case '3':
- this.closeOthers(pageKey)
- break
- case '4':
- this.routeReload()
- break
- default:
- break
- }
- },
- /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
- 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) {
- this.linkList = this.linkList.slice(index, index + 1)
- this.pageList = this.pageList.slice(index, index + 1)
- this.activePage = this.linkList[0]
- } else {
- let indexContent = this.pageList.slice(0, 1)[0]
- this.linkList = this.linkList.slice(index, index + 1)
- this.pageList = this.pageList.slice(index, index + 1)
- this.linkList.unshift(indexContent.fullPath)
- this.pageList.unshift(indexContent)
- this.activePage = this.linkList[1]
- }
- },
- closeLeft(pageKey) {
- if (pageKey == indexKey) {
- return
- }
- let tempList = [...this.pageList]
- let indexContent = tempList.slice(0, 1)[0]
- let index = this.linkList.indexOf(pageKey)
- this.linkList = this.linkList.slice(index)
- this.pageList = this.pageList.slice(index)
- this.linkList.unshift(indexContent.fullPath)
- this.pageList.unshift(indexContent)
- if (this.linkList.indexOf(this.activePage) < 0) {
- this.activePage = this.linkList[0]
- }
- },
- closeRight(pageKey) {
- let index = this.linkList.indexOf(pageKey)
- this.linkList = this.linkList.slice(0, index + 1)
- this.pageList = this.pageList.slice(0, index + 1)
- if (this.linkList.indexOf(this.activePage < 0)) {
- this.activePage = this.linkList[this.linkList.length - 1]
- }
- },
- //update-begin-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title
- dynamicRouterShow(key, title) {
- let keyIndex = this.linkList.indexOf(key)
- 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
- }))
- 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() {
- this.reloadFlag = false
- 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:路由刷新
- }
- }
- </script>
- <style lang="less">
- /*
- * The following styles are auto-applied to elements with
- * transition="page-transition" when their visibility is toggled
- * by Vue.js.
- *
- * You can easily play with the page transition by editing
- * these styles.
- */
- .page-transition-enter {
- opacity: 0;
- }
- .page-transition-leave-active {
- opacity: 0;
- }
- .page-transition-enter .page-transition-container,
- .page-transition-leave-active .page-transition-container {
- -webkit-transform: scale(1.1);
- transform: scale(1.1);
- }
- /*美化弹出Tab样式*/
- .ant-tabs-nav-container {
- margin-top: 4px;
- }
- /* 修改 ant-tabs 样式 */
- .tab-layout-tabs.ant-tabs {
- border-bottom: 1px solid #ccc;
- border-left: 1px solid #ccc;
- background-color: white;
- padding: 0 20px;
- .ant-tabs-bar {
- margin: 4px 0 0;
- border: none;
- }
- }
- .ant-tabs {
- &.ant-tabs-card .ant-tabs-tab {
- padding: 0 24px !important;
- background-color: white !important;
- margin-right: 10px !important;
- .ant-tabs-close-x {
- width: 12px !important;
- height: 12px !important;
- opacity: 0 !important;
- cursor: pointer !important;
- font-size: 12px !important;
- margin: 0 !important;
- position: absolute;
- top: 36%;
- right: 6px;
- }
- &:hover .ant-tabs-close-x {
- opacity: 1 !important;
- }
- }
- }
- .ant-tabs.ant-tabs-card>.ant-tabs-bar {
- .ant-tabs-tab {
- border: none !important;
- border-bottom: 1px solid transparent !important;
- }
- // .ant-tabs-tab-active {
- // border-color: @primary-color!important;
- // }
- }
- </style>
|