59 lines
1.4 KiB
Vue
59 lines
1.4 KiB
Vue
|
|
<template>
|
||
|
|
<div class="ems-dashboard-editor-container clpz-ems-dashboard-editor-container">
|
||
|
|
<el-menu
|
||
|
|
class="ems-third-menu"
|
||
|
|
:default-active="$route.name"
|
||
|
|
background-color="#ffffff"
|
||
|
|
text-color="#666666"
|
||
|
|
active-text-color="#ffffff"
|
||
|
|
>
|
||
|
|
<el-menu-item :index="item.name" v-for="(item,index) in childrenRoute" :key="index+'clpzChildrenRoute'">
|
||
|
|
<router-link style="height: 100%;width: 100%;display: block;" :to="{path:item.path,query:$route.query}">
|
||
|
|
{{item.meta.title}}
|
||
|
|
</router-link>
|
||
|
|
</el-menu-item>
|
||
|
|
</el-menu>
|
||
|
|
|
||
|
|
<div class="ems-content-container ems-content-container-padding clpz-ems-content-container">
|
||
|
|
<keep-alive>
|
||
|
|
<router-view></router-view>
|
||
|
|
</keep-alive>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { dzjk } from '@/router/ems'
|
||
|
|
const childrenRoute = dzjk[0].children[0].children.find(item=> item.name==='DzjkClpz').children//获取到统计报表下面的字路由
|
||
|
|
console.log('设备监控子路由',childrenRoute)
|
||
|
|
export default {
|
||
|
|
name:'DzjkClpz',
|
||
|
|
data(){
|
||
|
|
return {
|
||
|
|
childrenRoute,
|
||
|
|
activeMenu:''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
mounted() {
|
||
|
|
console.log('当前统计报表页面路由',this.$route)
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
.clpz-ems-dashboard-editor-container{
|
||
|
|
display: flex;
|
||
|
|
padding:0;
|
||
|
|
background: #FFFFFF;
|
||
|
|
}
|
||
|
|
.clpz-ems-content-container{
|
||
|
|
margin-top:0;
|
||
|
|
padding-top:0;
|
||
|
|
padding-right: 0;
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|