Vue-element-admin 之三级路由

参考官网,添加跳转页面之后,子页面中,操作栏不能固定在右侧,

<el-table
  :data="list"
  style="height: 100%;"
  class="handright"
  @sort-change="sortChange"
  @selection-change="handleSelectionChange"
>

添加样式 handright 之后,操作栏可以固定右侧,但是分页样式错位

.handright {
  position: fixed; 
  /* z-index: 1; */
  /* z-index: 0; */
}

报错的跳转页面

<template>
 <div style="padding:10px;">
    <el-alert :closable="false" title="">  // 去掉这个标签,就可以了
      <router-view />
    </el-alert>
  </div>
</template>

<style>
.el-alert--info.is-light {
    background-color: white;
    color: white;
}
.el-alert {
  overflow: auto !important;
}
</style>

参考 https://blog.csdn.net/qq_14926871/article/details/80859144

正确的中间跳转页面 publish-center.vue

<template>
  <router-view />
</template>
<script>
export default {

}
</script>

路由中

{
    path:'/recordQuery',
    component:Home,
    name:'菜单1',
    iconCls:'el-icon-search',
    children:
     [
        { 
         	path: 'carRecord', 
         	z:'1',
            component: () => import('@/page/publish-center.vue'),   // 重要,中间跳转页面,必要
            name: '菜单2' , 
            children:[
            			{ path: '/carRecord/passRecord', component: passRecord, name: '菜单' },

                     ]
             },
         ]
},
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值