Selaa lähdekoodia

'基础布局调整'

zhangyu 4 vuotta sitten
vanhempi
commit
a04fddbd85

+ 1 - 1
src/data/menus.js

@@ -1,7 +1,7 @@
 export default [
 	// 首页
 	{
-		path: '/index',
+		path: '/',
 		name: '首页',
 		icon: '',
 		opts: [{

+ 63 - 46
src/framework/layout/Main.vue

@@ -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>

+ 2 - 2
src/framework/layout/PageHeader.vue

@@ -3,9 +3,9 @@
 		<div class="page-header">
 			<div class="page-header-main">
 				<div class='page-header-logo'>
-					<a @click="toIndex">
+					<router-link to="/">
 						<img src='@/assets/logo.png' alt='logo' class='logo-default'>
-					</a>
+					</router-link>
 				</div>
 				<div class="page-header-nav">
 					<el-menu

+ 14 - 16
src/framework/style/layout.scss

@@ -15,22 +15,20 @@ body {
 #page-main {
     width: 100%;
     height: 100%;
-    display: flex;
-    flex-direction: column;
-    /* 垂直 从上到下 */
-    justify-content: flex-start;
-    /* 垂直 左对齐 */
-    align-items: stretch;
+    overflow: hidden;
+    background: #F7F9FA;
     .page-container {
-        order: 1;
-        flex-grow: 1;
-        flex-shrink: 1;
-        display: flex;
-        flex-direction: row;
-        /* 水平,从左到右 */
-        justify-content: flex-start;
-        /* 水平上对齐 */
-        background: #F7F9FA;
-        overflow: hidden;
+        padding: 0;
+        margin-top: 0;
+        height: 100%;
+        min-height: auto;
+        box-sizing: border-box;
+        .page-content-wrapper {
+            width: 1200px;
+            padding: 0;
+            margin: 0 auto;
+            box-sizing: border-box;
+            height: 100%;
+        }
     }
 }

+ 3 - 13
src/router/system.js

@@ -7,7 +7,9 @@ import test from '@/components/test'
 /**模型管理 */
 import modelFile from '@/views/model/file'
 
-export default [{
+export default [
+  // 首页
+  {
     path: '/',
     name: '',
     component: LayoutMain,
@@ -23,18 +25,6 @@ export default [{
     name: 'login',
     component: login,
   },
-  // 首页
-  {
-    path: '/index',
-    name: 'LayoutMain',
-    component: LayoutMain,
-    children: [{
-        path: '',
-        name: 'login',
-        component: login
-      }
-    ]
-  },
   {
     path: '/test',
     name: 'test',