TabLayout.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. <template>
  2. <global-layout @dynamicRouterShow="dynamicRouterShow">
  3. <!-- update-begin- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
  4. <contextmenu :itemList="menuItemList" :visible.sync="menuVisible" style="z-index: 9999;" @select="onMenuSelect"/>
  5. <!-- update-end- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
  6. <a-tabs
  7. @contextmenu.native="e => onContextmenu(e)"
  8. v-if="multipage"
  9. :active-key="activePage"
  10. class="tab-layout-tabs"
  11. style="height:52px"
  12. :hide-add="true"
  13. type="editable-card"
  14. @change="changePage"
  15. @tabClick="tabCallBack"
  16. @edit="editPage">
  17. <a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" :closable="!(page.meta.title=='首页')">
  18. <span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span>
  19. </a-tab-pane>
  20. </a-tabs>
  21. <div style="margin: 12px 12px 0;">
  22. <!-- update-begin-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 -->
  23. <keep-alive v-if="multipage">
  24. <router-view v-if="reloadFlag"/>
  25. </keep-alive>
  26. <template v-else>
  27. <router-view v-if="reloadFlag"/>
  28. </template>
  29. <!-- update-end-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 -->
  30. </div>
  31. <!-- update-begin-author:zyf date:20211129 for:qiankun 挂载子应用盒子 -->
  32. <div id="content" class="app-view-box"></div>
  33. <!-- update-end-author:zyf date:20211129 for: qiankun 挂载子应用盒子-->
  34. </global-layout>
  35. </template>
  36. <script>
  37. import GlobalLayout from '@/components/page/GlobalLayout'
  38. import Contextmenu from '@/components/menu/Contextmenu'
  39. import { mixin, mixinDevice } from '@/utils/mixin.js'
  40. import { triggerWindowResizeEvent } from '@/utils/util'
  41. import Vue from 'vue'
  42. import { CACHE_INCLUDED_ROUTES } from '@/store/mutation-types'
  43. import registerApps from "@/qiankun";
  44. const indexKey = '/dashboard/analysis'
  45. export default {
  46. name: 'TabLayout',
  47. components: {
  48. GlobalLayout,
  49. Contextmenu
  50. },
  51. mixins: [mixin, mixinDevice],
  52. data() {
  53. return {
  54. pageList: [],
  55. linkList: [],
  56. activePage: '',
  57. menuVisible: false,
  58. menuItemList: [
  59. { key: '4', icon: 'reload', text: '刷 新' },
  60. { key: '1', icon: 'arrow-left', text: '关闭左侧' },
  61. { key: '2', icon: 'arrow-right', text: '关闭右侧' },
  62. { key: '3', icon: 'close', text: '关闭其它' }
  63. ],
  64. reloadFlag:true
  65. }
  66. },
  67. /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用 ->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
  68. provide(){
  69. return{
  70. closeCurrent:this.closeCurrent
  71. }
  72. },
  73. /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
  74. computed: {
  75. multipage() {
  76. //判断如果是手机模式,自动切换为单页面模式
  77. if (this.isMobile()) {
  78. return false
  79. } else {
  80. return this.$store.state.app.multipage
  81. }
  82. }
  83. },
  84. created() {
  85. if (this.$route.path != indexKey) {
  86. this.addIndexToFirst()
  87. }
  88. // 复制一个route对象出来,不能影响原route
  89. let currentRoute = Object.assign({}, this.$route)
  90. currentRoute.meta = Object.assign({}, currentRoute.meta)
  91. this.pageList.push(currentRoute)
  92. this.linkList.push(currentRoute.fullPath)
  93. this.activePage = currentRoute.fullPath
  94. },
  95. mounted() {
  96. if (process.env.VUE_APP_QIANKUN == 'true') {
  97. //update-begin-author:zyf date:20211129 for:qiankun 注册子应用
  98. if (!window.qiankunStarted) {
  99. window.qiankunStarted = true;
  100. registerApps();
  101. }
  102. //update-end-author:zyf date:20211129 for:qiankun 注册子应用
  103. }
  104. },
  105. watch: {
  106. '$route': function(newRoute) {
  107. //console.log("新的路由",newRoute)
  108. this.activePage = newRoute.fullPath
  109. if (!this.multipage) {
  110. this.linkList = [newRoute.fullPath]
  111. this.pageList = [Object.assign({},newRoute)]
  112. // update-begin-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
  113. } else if(indexKey==newRoute.fullPath) {
  114. //首页时 判断是否缓存 没有缓存 刷新之
  115. if (newRoute.meta.keepAlive === false) {
  116. this.routeReload()
  117. }
  118. // update-end-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
  119. }else if (this.linkList.indexOf(newRoute.fullPath) < 0) {
  120. this.linkList.push(newRoute.fullPath)
  121. this.pageList.push(Object.assign({},newRoute))
  122. //// update-begin-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842
  123. // if (newRoute.meta.keepAlive) {
  124. // this.routeReload()
  125. // }
  126. //// update-end-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842
  127. } else if (this.linkList.indexOf(newRoute.fullPath) >= 0) {
  128. let oldIndex = this.linkList.indexOf(newRoute.fullPath)
  129. let oldPositionRoute = this.pageList[oldIndex]
  130. this.pageList.splice(oldIndex, 1, Object.assign({},newRoute,{meta:oldPositionRoute.meta}))
  131. }
  132. },
  133. 'activePage': function(key) {
  134. let index = this.linkList.lastIndexOf(key)
  135. let waitRouter = this.pageList[index]
  136. // 【TESTA-523】修复:不允许重复跳转路由异常
  137. if (waitRouter.fullPath !== this.$route.fullPath) {
  138. this.$router.push(Object.assign({}, waitRouter))
  139. }
  140. this.changeTitle(waitRouter.meta.title)
  141. },
  142. 'multipage': function(newVal) {
  143. if(this.reloadFlag){
  144. if (!newVal) {
  145. this.linkList = [this.$route.fullPath]
  146. this.pageList = [this.$route]
  147. }
  148. }
  149. },
  150. // update-begin-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
  151. device() {
  152. if (this.multipage && this.linkList.indexOf(indexKey) === -1) {
  153. this.addIndexToFirst()
  154. }
  155. },
  156. // update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
  157. },
  158. methods: {
  159. // update-begin-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
  160. // 将首页添加到第一位
  161. addIndexToFirst() {
  162. this.pageList.splice(0, 0, {
  163. name: 'dashboard-analysis',
  164. path: indexKey,
  165. fullPath: indexKey,
  166. meta: {
  167. icon: 'dashboard',
  168. title: '首页'
  169. }
  170. })
  171. this.linkList.splice(0, 0, indexKey)
  172. },
  173. // update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
  174. // update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题
  175. changeTitle(title) {
  176. let projectTitle = "巴博斯手表平台"
  177. // 首页特殊处理
  178. if (this.$route.path === indexKey) {
  179. document.title = projectTitle
  180. } else {
  181. document.title = title + ' · ' + projectTitle
  182. }
  183. },
  184. // update-end-author:sunjianlei date:20200120 for: 动态更改页面标题
  185. changePage(key) {
  186. this.activePage = key
  187. },
  188. tabCallBack() {
  189. this.$nextTick(() => {
  190. //update-begin-author:taoyan date: 20201211 for:【新版】online报错 JT-100
  191. setTimeout(()=>{
  192. //省市区组件里面给window绑定了个resize事件 导致切换页面的时候触发了他的resize,但是切换页面,省市区组件还没被销毁前就触发了该事件,导致控制台报错,加个延迟
  193. triggerWindowResizeEvent()
  194. },20)
  195. //update-end-author:taoyan date: 20201211 for:【新版】online报错 JT-100
  196. })
  197. },
  198. editPage(key, action) {
  199. this[action](key)
  200. },
  201. remove(key) {
  202. if (key == indexKey) {
  203. this.$message.warning('首页不能关闭!')
  204. return
  205. }
  206. if (this.pageList.length === 1) {
  207. this.$message.warning('这是最后一页,不能再关闭了啦')
  208. return
  209. }
  210. console.log("this.pageList ",this.pageList );
  211. let removeRoute = this.pageList.filter(item => item.fullPath == key)
  212. this.pageList = this.pageList.filter(item => item.fullPath !== key)
  213. let index = this.linkList.indexOf(key)
  214. this.linkList = this.linkList.filter(item => item !== key)
  215. index = index >= this.linkList.length ? this.linkList.length - 1 : index
  216. this.activePage = this.linkList[index]
  217. //update-begin--Author:scott Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
  218. //关闭页面则从缓存cache_included_routes中删除路由,下次点击菜单会重新加载页面
  219. let cacheRouterArray = Vue.ls.get(CACHE_INCLUDED_ROUTES) || []
  220. if (removeRoute && removeRoute[0]) {
  221. let componentName = removeRoute[0].meta.componentName
  222. console.log("key: ", key);
  223. console.log("componentName: ", componentName);
  224. if(cacheRouterArray.includes(componentName)){
  225. cacheRouterArray.splice(cacheRouterArray.findIndex(item => item === componentName), 1)
  226. Vue.ls.set(CACHE_INCLUDED_ROUTES, cacheRouterArray)
  227. }
  228. this.emitPageClosed(removeRoute[0])
  229. }
  230. //update-end--Author:scott Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
  231. },
  232. // 触发 page-closed (页面关闭)全局事件
  233. emitPageClosed(closedRoute) {
  234. this.$root.$emit('page-closed', {
  235. closedRoute,
  236. pageList: this.pageList,
  237. linkList: this.linkList,
  238. activePage: this.activePage
  239. })
  240. },
  241. onContextmenu(e) {
  242. const pagekey = this.getPageKey(e.target)
  243. if (pagekey !== null) {
  244. e.preventDefault()
  245. this.menuVisible = true
  246. }
  247. },
  248. getPageKey(target, depth) {
  249. depth = depth || 0
  250. if (depth > 2) {
  251. return null
  252. }
  253. let pageKey = target.getAttribute('pagekey')
  254. pageKey = pageKey || (target.previousElementSibling ? target.previousElementSibling.getAttribute('pagekey') : null)
  255. return pageKey || (target.firstElementChild ? this.getPageKey(target.firstElementChild, ++depth) : null)
  256. },
  257. onMenuSelect(key, target) {
  258. let pageKey = this.getPageKey(target)
  259. switch (key) {
  260. case '1':
  261. this.closeLeft(pageKey)
  262. break
  263. case '2':
  264. this.closeRight(pageKey)
  265. break
  266. case '3':
  267. this.closeOthers(pageKey)
  268. break
  269. case '4':
  270. this.routeReload()
  271. break
  272. default:
  273. break
  274. }
  275. },
  276. /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
  277. closeCurrent(){
  278. this.remove(this.activePage);
  279. },
  280. /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
  281. closeOthers(pageKey) {
  282. let index = this.linkList.indexOf(pageKey)
  283. if (pageKey == indexKey || pageKey.indexOf('?ticke=')>=0) {
  284. this.linkList = this.linkList.slice(index, index + 1)
  285. this.pageList = this.pageList.slice(index, index + 1)
  286. this.activePage = this.linkList[0]
  287. } else {
  288. let indexContent = this.pageList.slice(0, 1)[0]
  289. this.linkList = this.linkList.slice(index, index + 1)
  290. this.pageList = this.pageList.slice(index, index + 1)
  291. this.linkList.unshift(indexContent.fullPath)
  292. this.pageList.unshift(indexContent)
  293. this.activePage = this.linkList[1]
  294. }
  295. },
  296. closeLeft(pageKey) {
  297. if (pageKey == indexKey) {
  298. return
  299. }
  300. let tempList = [...this.pageList]
  301. let indexContent = tempList.slice(0, 1)[0]
  302. let index = this.linkList.indexOf(pageKey)
  303. this.linkList = this.linkList.slice(index)
  304. this.pageList = this.pageList.slice(index)
  305. this.linkList.unshift(indexContent.fullPath)
  306. this.pageList.unshift(indexContent)
  307. if (this.linkList.indexOf(this.activePage) < 0) {
  308. this.activePage = this.linkList[0]
  309. }
  310. },
  311. closeRight(pageKey) {
  312. let index = this.linkList.indexOf(pageKey)
  313. this.linkList = this.linkList.slice(0, index + 1)
  314. this.pageList = this.pageList.slice(0, index + 1)
  315. if (this.linkList.indexOf(this.activePage < 0)) {
  316. this.activePage = this.linkList[this.linkList.length - 1]
  317. }
  318. },
  319. //update-begin-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title
  320. dynamicRouterShow(key,title){
  321. let keyIndex = this.linkList.indexOf(key)
  322. if(keyIndex>=0){
  323. let currRouter = this.pageList[keyIndex]
  324. let meta = Object.assign({},currRouter.meta,{title:title})
  325. this.pageList.splice(keyIndex, 1, Object.assign({},currRouter,{meta:meta}))
  326. if (key === this.activePage) {
  327. this.changeTitle(title)
  328. }
  329. }
  330. },
  331. //update-end-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title
  332. //update-begin-author:taoyan date:20191008 for:路由刷新
  333. routeReload(){
  334. this.reloadFlag = false
  335. let ToggleMultipage = "ToggleMultipage"
  336. this.$store.dispatch(ToggleMultipage,false)
  337. this.$nextTick(()=>{
  338. this.$store.dispatch(ToggleMultipage,true)
  339. this.reloadFlag = true
  340. })
  341. },
  342. //update-end-author:taoyan date:20191008 for:路由刷新
  343. //新增一个返回方法
  344. excuteCallback(callback){
  345. callback()
  346. },
  347. }
  348. }
  349. </script>
  350. <style lang="less">
  351. /*
  352. * The following styles are auto-applied to elements with
  353. * transition="page-transition" when their visibility is toggled
  354. * by Vue.js.
  355. *
  356. * You can easily play with the page transition by editing
  357. * these styles.
  358. */
  359. .page-transition-enter {
  360. opacity: 0;
  361. }
  362. .page-transition-leave-active {
  363. opacity: 0;
  364. }
  365. .page-transition-enter .page-transition-container,
  366. .page-transition-leave-active .page-transition-container {
  367. -webkit-transform: scale(1.1);
  368. transform: scale(1.1);
  369. }
  370. /*美化弹出Tab样式*/
  371. .ant-tabs-nav-container {
  372. margin-top: 4px;
  373. }
  374. /* 修改 ant-tabs 样式 */
  375. .tab-layout-tabs.ant-tabs {
  376. border-bottom: 1px solid #ccc;
  377. border-left: 1px solid #ccc;
  378. background-color: white;
  379. padding: 0 20px;
  380. .ant-tabs-bar {
  381. margin: 4px 0 0;
  382. border: none;
  383. }
  384. }
  385. .tab-layout-tabs.ant-tabs {
  386. &.ant-tabs-card .ant-tabs-tab {
  387. padding: 0 24px !important;
  388. background-color: white !important;
  389. margin-right: 10px !important;
  390. .ant-tabs-close-x {
  391. width: 12px !important;
  392. height: 12px !important;
  393. opacity: 0 !important;
  394. cursor: pointer !important;
  395. font-size: 12px !important;
  396. margin: 0 !important;
  397. position: absolute;
  398. top: 36%;
  399. right: 6px;
  400. }
  401. &:hover .ant-tabs-close-x {
  402. opacity: 1 !important;
  403. }
  404. }
  405. }
  406. .tab-layout-tabs.ant-tabs.ant-tabs-card > .ant-tabs-bar {
  407. .ant-tabs-tab {
  408. border: none !important;
  409. border-bottom: 1px solid transparent !important;
  410. }
  411. .ant-tabs-tab-active {
  412. border-color: @primary-color!important;
  413. }
  414. }
  415. </style>