|
|
@ -2,86 +2,63 @@ |
|
|
|
<el-row class="panel"> |
|
|
|
<el-col :span="24" class="panel-top"> |
|
|
|
<el-col :span="20" style="font-size:26px;"> |
|
|
|
<img src="../assets/logo4.png" class="logo"> <span>AD<i style="color:#20a0ff">MIN</i> |
|
|
|
<img src="../assets/logo4.png" class="logo"> <span>AD<i style="color:#20a0ff">MIN</i> |
|
|
|
</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" class="rightbar"> |
|
|
|
<el-dropdown trigger="click"> |
|
|
|
<span class="el-dropdown-link" style="color:#c0ccda;cursor: pointer;"><img :src="this.sysUserAvatar" class="head"> {{sysUserName}} |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" class="rightbar"> |
|
|
|
<el-dropdown trigger="click"> |
|
|
|
<span class="el-dropdown-link" style="color:#c0ccda;cursor: pointer;"><img :src="this.sysUserAvatar" class="head"> {{sysUserName}} |
|
|
|
</span> |
|
|
|
<el-dropdown-menu slot="dropdown"> |
|
|
|
<el-dropdown-item>我的消息</el-dropdown-item> |
|
|
|
<el-dropdown-item>设置</el-dropdown-item> |
|
|
|
<el-dropdown-item divided @click.native="logout">退出登录</el-dropdown-item> |
|
|
|
</el-dropdown-menu> |
|
|
|
</el-dropdown> |
|
|
|
<!--<el-tooltip class="item tip-logout" effect="dark" content="退出" placement="bottom" style="padding:0px;"> |
|
|
|
<i class="fa fa-sign-out" aria-hidden="true" v-on:click="logout"></i> |
|
|
|
</el-tooltip>--> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24" class="panel-center"> |
|
|
|
<!--<el-col :span="4">--> |
|
|
|
<aside style="width:230px;"> |
|
|
|
<!--<h5 class="admin"> |
|
|
|
<i class="fa fa-user" aria-hidden="true" style="margin-right:5px;"></i>欢迎系统管理员:测试</h5>--> |
|
|
|
<!--<el-menu style="border-top: 1px solid #475669;" default-active="/table" class="el-menu-vertical-demo" @open="handleopen" |
|
|
|
@close="handleclose" @select="handleselect" theme="dark" unique-opened router> |
|
|
|
<el-submenu index="1"> |
|
|
|
<template slot="title"><i class="el-icon-message"></i>导航一</template> |
|
|
|
<el-menu-item index="/table">Table</el-menu-item> |
|
|
|
<el-menu-item index="/form">Form</el-menu-item> |
|
|
|
<el-menu-item index="/page3">页面3</el-menu-item> |
|
|
|
</el-submenu> |
|
|
|
<el-submenu index="2"> |
|
|
|
<template slot="title"><i class="fa fa-id-card-o"></i>导航二</template> |
|
|
|
<el-menu-item index="/page4">选项4</el-menu-item> |
|
|
|
<el-menu-item index="/page5">选项5</el-menu-item> |
|
|
|
</el-submenu> |
|
|
|
<el-menu-item index="/page6"><i class="fa fa-line-chart"></i>导航三</el-menu-item> |
|
|
|
</el-menu>--> |
|
|
|
<el-menu :default-active="currentPath" class="el-menu-vertical-demo" @open="handleopen" @close="handleclose" @select="handleselect" |
|
|
|
theme="dark" unique-opened router> |
|
|
|
<template v-for="(item,index) in $router.options.routes" v-if="!item.hidden"> |
|
|
|
<el-submenu :index="index+''" v-if="!item.leaf"> |
|
|
|
<template slot="title"><i :class="item.iconCls"></i>{{item.name}}</template> |
|
|
|
<el-menu-item v-for="child in item.children" :index="child.path" v-if="!child.hidden">{{child.name}}</el-menu-item> |
|
|
|
</el-submenu> |
|
|
|
<el-menu-item v-if="item.leaf&&item.children.length>0" :index="item.children[0].path"><i :class="item.iconCls"></i>{{item.children[0].name}}</el-menu-item> |
|
|
|
</template> |
|
|
|
</el-menu> |
|
|
|
</aside> |
|
|
|
<!--</el-col>--> |
|
|
|
<!--<el-col :span="20" class="panel-c-c">--> |
|
|
|
<section class="panel-c-c"> |
|
|
|
<div class="grid-content bg-purple-light"> |
|
|
|
<el-col :span="24" style="margin-bottom:15px;"> |
|
|
|
<strong style="width:200px;float:left;color: #475669;">{{currentPathName}}</strong> |
|
|
|
<el-breadcrumb separator="/" style="float:right;"> |
|
|
|
<el-breadcrumb-item :to="{ path: '/table' }">首页</el-breadcrumb-item> |
|
|
|
<el-breadcrumb-item v-if="currentPathNameParent!=''">{{currentPathNameParent}}</el-breadcrumb-item> |
|
|
|
<el-breadcrumb-item v-if="currentPathName!=''">{{currentPathName}}</el-breadcrumb-item> |
|
|
|
</el-breadcrumb> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24" style="background-color:#fff;box-sizing: border-box;"> |
|
|
|
<!--<transition name="fade">--> |
|
|
|
<router-view></router-view> |
|
|
|
<!--</transition>--> |
|
|
|
</el-col> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
<!--</el-col>--> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-dropdown-menu slot="dropdown"> |
|
|
|
<el-dropdown-item>我的消息</el-dropdown-item> |
|
|
|
<el-dropdown-item>设置</el-dropdown-item> |
|
|
|
<el-dropdown-item divided @click.native="logout">退出登录</el-dropdown-item> |
|
|
|
</el-dropdown-menu> |
|
|
|
</el-dropdown> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24" class="panel-center"> |
|
|
|
<!--<el-col :span="4">--> |
|
|
|
<aside style="width:230px;"> |
|
|
|
<el-menu :default-active="$route.path" class="el-menu-vertical-demo" @open="handleopen" @close="handleclose" @select="handleselect" |
|
|
|
theme="dark" unique-opened router> |
|
|
|
<template v-for="(item,index) in $router.options.routes" v-if="!item.hidden"> |
|
|
|
<el-submenu :index="index+''" v-if="!item.leaf"> |
|
|
|
<template slot="title"><i :class="item.iconCls"></i>{{item.name}}</template> |
|
|
|
<el-menu-item v-for="child in item.children" :index="child.path" v-if="!child.hidden">{{child.name}}</el-menu-item> |
|
|
|
</el-submenu> |
|
|
|
<el-menu-item v-if="item.leaf&&item.children.length>0" :index="item.children[0].path"><i :class="item.iconCls"></i>{{item.children[0].name}}</el-menu-item> |
|
|
|
</template> |
|
|
|
</el-menu> |
|
|
|
</aside> |
|
|
|
<!--</el-col>--> |
|
|
|
<!--<el-col :span="20" class="panel-c-c">--> |
|
|
|
<section class="panel-c-c"> |
|
|
|
<div class="grid-content bg-purple-light"> |
|
|
|
<el-col :span="24" style="margin-bottom:15px;"> |
|
|
|
<strong style="width:200px;float:left;color: #475669;">{{$route.name}}</strong> |
|
|
|
<el-breadcrumb separator="/" style="float:right;"> |
|
|
|
<el-breadcrumb-item v-for="item in $route.matched"> |
|
|
|
{{ item.name }} |
|
|
|
</el-breadcrumb-item> |
|
|
|
</el-breadcrumb> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24" style="background-color:#fff;box-sizing: border-box;"> |
|
|
|
<!--<transition name="fade">--> |
|
|
|
<router-view></router-view> |
|
|
|
<!--</transition>--> |
|
|
|
</el-col> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
<!--</el-col>--> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
currentPath: '/table', |
|
|
|
currentPathName: 'Table', |
|
|
|
currentPathNameParent: '导航一', |
|
|
|
sysUserName: '', |
|
|
|
sysUserAvatar: '', |
|
|
|
form: { |
|
|
@ -96,13 +73,6 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
'$route'(to, from) {//监听路由改变 |
|
|
|
this.currentPath = to.path; |
|
|
|
this.currentPathName = to.name; |
|
|
|
this.currentPathNameParent = to.matched[0].name; |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
onSubmit() { |
|
|
|
console.log('submit!'); |
|
|
@ -122,7 +92,7 @@ |
|
|
|
//type: 'warning' |
|
|
|
}).then(() => { |
|
|
|
sessionStorage.removeItem('user'); |
|
|
|
_this.$router.replace('/login'); |
|
|
|
_this.$router.push('/login'); |
|
|
|
}).catch(() => { |
|
|
|
|
|
|
|
}); |
|
|
@ -131,10 +101,6 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.currentPath = this.$route.path; |
|
|
|
this.currentPathName = this.$route.name; |
|
|
|
this.currentPathNameParent = this.$route.matched[0].name; |
|
|
|
|
|
|
|
var user = sessionStorage.getItem('user'); |
|
|
|
if (user) { |
|
|
|
user = JSON.parse(user); |
|
|
@ -143,6 +109,7 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
<style scoped> |
|
|
@ -169,18 +136,18 @@ |
|
|
|
background: #1F2D3D; |
|
|
|
color: #c0ccda; |
|
|
|
} |
|
|
|
|
|
|
|
.panel-top .rightbar{ |
|
|
|
|
|
|
|
.panel-top .rightbar { |
|
|
|
text-align: right; |
|
|
|
padding-right: 35px; |
|
|
|
} |
|
|
|
|
|
|
|
.panel-top .rightbar .head{ |
|
|
|
|
|
|
|
.panel-top .rightbar .head { |
|
|
|
width: 40px; |
|
|
|
height: 40px; |
|
|
|
height: 40px; |
|
|
|
border-radius: 20px; |
|
|
|
margin: 10px 0px 10px 10px; |
|
|
|
float: right; |
|
|
|
float: right; |
|
|
|
} |
|
|
|
|
|
|
|
.panel-center { |
|
|
|