Bootstrap

若依使用学习笔记

一、关于浏览器标签、当前位置、页签的动态赋值

1、浏览器标签

document.title方法通过DOM操作修改title的值。

2、当前位置

this.$route.meta.title

3、页签

引用https://blog.csdn.net/qq_53986004/article/details/135145832

(1)打开页签

const params={
  operation:'edit',
  accountId:'123'
}
this.$tab.openPage("页签名称","跳转url",params)

(2)修改页签:

const obj = Object.assign({},this.$route,{title:'xxxx标题'})
this.$tab.updatePage(obj);

(3)关闭页签:

const obj = {path:"/xxx/xxx"}//关闭当前tab页签,打开新页面
this.$tab.closeOpenPage(obj);
 
this.$tab.closePage();//关闭当前页签,回到首页

 (4)刷新页签:

this.$tab.refreshPage();//刷新当前页签
 
const obj = {path:"/xxx/xxxx",name:"xxx"}//刷新指定页签
this.$tab.refreshPage(obj);

 (5)关闭所有页签:

this.$tab.closeAllPage()

(6)关闭左侧页签:

this.$tab.closeLeftPage()//关闭左侧页签
 
const obj = {path:"/xxx/xxxx",name:'xxx'}//关闭左侧指定页签
this.$tab.closeLeftPage(obj)

(7)关闭右侧页签:

this.$tab.closeRightPage()//关闭右侧页签
 
const obj  = {path:"/xxx/xxxx",name:"xxxx"}
this.$tab.closeRightPage(obj);//关闭右侧指定页签

(8)关闭其他tab页签: 

this.$tab.closeOtherPage();//关闭其他tab页签
 
const obj  = {path:"/xxx/xxxx",name:"xxxx"}
this.$tab.closeOtherPage(obj)//关闭其他指定页签

;