el-admin web首页打开设置关闭

1、采用top导航
在这里插入图片描述
首页打开自动隐藏左边栏
1)切换时自动关闭首页左边栏
修改@/componets/Breadcrumb.vue文件
getBreadcrumb() {
// only show routes with meta.title
let matched = this.$route.matched.filter(item => item.meta && item.meta.title)
const first = matched[0]

  if (!this.isDashboard(first)) {
    matched = [{ path: '/dashboard', meta: { title: '首页' }}].concat(matched)
  
  }else{
    //增加此行代码:首页关闭左边栏
    this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
  }

  this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false)
},
2)登录后到首页自动关闭导航栏
修改@/layout/components/Topbar.vue
 // 设置侧边栏的显示和隐藏
setSidebarHide(route) {

  if (!route.children || route.children.length === 1) {
    //默认关闭
    this.$store.dispatch('app/closeSideBar', { withoutAnimation: true }) 
  } else { 
    //默认打开
    this.$store.dispatch('app/openSideBar', { withoutAnimation: false }) 
  }
},
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值