IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> vue+element 左侧菜单栏+Tab页访问本地页面 -> 正文阅读

[JavaScript知识库]vue+element 左侧菜单栏+Tab页访问本地页面

作者:more-toolbox-new

<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>

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-10-27 12:44:50  更:2021-10-27 12:46:50 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年5日历 -2024/5/12 8:45:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码