|
@@ -1,60 +1,77 @@
|
|
|
<template>
|
|
|
- <div id='page-main'>
|
|
|
- <page-header></page-header>
|
|
|
- <div id='page-container' class='page-container'>
|
|
|
- <div id='page-content-wrapper' class='page-content-wrapper'>
|
|
|
- <keep-alive>
|
|
|
- <router-view v-if='$route.meta.keepAlive' class='page-content'></router-view>
|
|
|
- </keep-alive>
|
|
|
- <router-view v-if='!$route.meta.keepAlive' class='page-content'></router-view>
|
|
|
- </div>
|
|
|
+ <div id='page-main'>
|
|
|
+ <page-header style="position:fixed;width:100%;left:0;top:0;z-index:1500;"></page-header>
|
|
|
+ <div class='page-container'>
|
|
|
+ <!-- 首页(固定高度,无滚动) -->
|
|
|
+ <div v-if='$route.path == "/"' style="height:calc(100% - 48px);margin-top: 48px;">
|
|
|
+ <router-view class='page-content'></router-view>
|
|
|
+ </div>
|
|
|
+ <!-- 其他路由页 -->
|
|
|
+ <el-scrollbar v-else style="height:calc(100% - 48px);margin-top: 48px;">
|
|
|
+ <div class='page-content-wrapper'>
|
|
|
+ <keep-alive>
|
|
|
+ <router-view v-if='$route.meta.keepAlive' class='page-content'></router-view>
|
|
|
+ </keep-alive>
|
|
|
+ <router-view v-if='!$route.meta.keepAlive' class='page-content'></router-view>
|
|
|
</div>
|
|
|
+ </el-scrollbar>
|
|
|
</div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import { mapGetters, mapMutations } from 'vuex'
|
|
|
import PageHeader from './PageHeader'
|
|
|
import menus from '@/data/menus'
|
|
|
export default {
|
|
|
- name: 'Main',
|
|
|
- components: {
|
|
|
- 'page-header': PageHeader
|
|
|
- },
|
|
|
- props: [],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- isPath: false
|
|
|
+ name: 'Main',
|
|
|
+ components: {
|
|
|
+ 'page-header': PageHeader
|
|
|
+ },
|
|
|
+ props: [],
|
|
|
+ mounted() {
|
|
|
+ console.log(this.$route)
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ isPath: false,
|
|
|
+ minHeight: 48,
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapGetters('layout', ['breadcrumb'])
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ ...mapMutations('layout', ['setSidebarSelected']),
|
|
|
+ findPathInArray(arr, path) {
|
|
|
+ arr.forEach(ele => {
|
|
|
+ if (ele.path == path) {
|
|
|
+ this.isPath = true
|
|
|
}
|
|
|
- },
|
|
|
- computed: {
|
|
|
- ...mapGetters('layout', ['breadcrumb'])
|
|
|
- },
|
|
|
- methods: {
|
|
|
- ...mapMutations('layout', ['setSidebarSelected']),
|
|
|
- findPathInArray(arr, path) {
|
|
|
- arr.forEach(ele => {
|
|
|
- if(ele.path == path) {
|
|
|
- this.isPath = true
|
|
|
- }
|
|
|
- if(ele.children) {
|
|
|
- this.findPathInArray(ele.children, path)
|
|
|
- }
|
|
|
- })
|
|
|
+ if (ele.children) {
|
|
|
+ this.findPathInArray(ele.children, path)
|
|
|
}
|
|
|
+ })
|
|
|
},
|
|
|
- watch: {
|
|
|
- "$route": {
|
|
|
- handler: function(route, oldVal){
|
|
|
- let path = route.path
|
|
|
- this.isPath = false;
|
|
|
- this.findPathInArray(menus,path)
|
|
|
- if(this.isPath) {
|
|
|
- this.setSidebarSelected(path)
|
|
|
- }
|
|
|
- },
|
|
|
- // 深度观察监听
|
|
|
- deep: true
|
|
|
+
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ "$route": {
|
|
|
+ handler: function (route, oldVal) {
|
|
|
+ let path = route.path
|
|
|
+ this.isPath = false;
|
|
|
+ this.findPathInArray(menus, path)
|
|
|
+ if (this.isPath) {
|
|
|
+ this.setSidebarSelected(path)
|
|
|
}
|
|
|
- },
|
|
|
+ },
|
|
|
+ // 深度观察监听
|
|
|
+ deep: true
|
|
|
+ }
|
|
|
+ },
|
|
|
}
|
|
|
-</script>
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+ /deep/ .el-scrollbar__wrap {
|
|
|
+ overflow-x: hidden;
|
|
|
+ }
|
|
|
+</style>
|