加入图标,开始加入vuex

This commit is contained in:
Kane 2023-01-08 00:03:51 +08:00
parent 3eadf4a27a
commit 922fb4ca4a
5 changed files with 55 additions and 14 deletions

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-12-17 11:08:18 * @Date: 2022-12-17 11:08:18
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-05 16:26:49 * @LastEditTime: 2023-01-07 20:54:14
* @FilePath: \admin_system\public\index.html * @FilePath: \admin_system\public\index.html
* @Description: * @Description:
* *
@ -35,6 +35,9 @@
body { body {
overflow: hidden; overflow: hidden;
width: 100vw;
height: 100vh;
max-height: 100vh;
} }
</style> </style>
</html> </html>

View File

@ -2,8 +2,8 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-01-04 11:05:44 * @Date: 2023-01-04 11:05:44
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-06 17:45:34 * @LastEditTime: 2023-01-07 23:16:13
* @FilePath: \admin_system\src\layout\index.vue * @FilePath: \admin_system\src\layout\Index.vue
* @Description: * @Description:
* *
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
@ -13,7 +13,7 @@
<el-header id="layout-header"> <el-header id="layout-header">
<LayoutHeader /> <LayoutHeader />
</el-header> </el-header>
<el-container> <el-container id="layout-container-down">
<el-aside id="layout-aside"> <el-aside id="layout-aside">
<LayoutAside /> <LayoutAside />
</el-aside> </el-aside>
@ -40,7 +40,7 @@ export default {
<style scoped> <style scoped>
#layout-container { #layout-container {
height: 100vh; height: 100vh;
overflow: hiddens; /* overflow: hiddens; */
} }
#layout-aside { #layout-aside {
@ -57,7 +57,12 @@ export default {
#layout-main { #layout-main {
background-color: #ddd; background-color: #ddd;
overflow-y: auto; /* height: 0; */
overflow-x: auto; /* flex-grow: 1; */
}
#layout-container-down {
height: calc(100vh - 50px);
/* max-height: calc(100vh - 50px); */
} }
</style> </style>

View File

@ -2,15 +2,15 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-01-04 11:30:33 * @Date: 2023-01-04 11:30:33
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-07 16:44:11 * @LastEditTime: 2023-01-08 00:02:15
* @FilePath: \admin_system\src\layout\components\Aside.vue * @FilePath: \admin_system\src\layout\components\Aside.vue
* @Description: * @Description:
* *
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
--> -->
<template> <template>
<el-menu id="side-bar" router default-active="/desktop" unique-opened=true background-color="#223142" <el-menu id="side-bar" router :default-active="currentPath" background-color="#223142" text-color="#fff"
text-color="#fff" active-text-color="#ffd04b"> active-text-color="#ffd04b">
<template v-for="route in this.routers" :key="route.path"> <template v-for="route in this.routers" :key="route.path">
<template v-if="!route.hidden"> <template v-if="!route.hidden">
<template v-if="hasOnlyChild(route.children)"> <template v-if="hasOnlyChild(route.children)">
@ -43,7 +43,7 @@
</template> </template>
<script> <script>
import { useRouter } from "vue-router"; import { useRouter, useRoute } from "vue-router";
export default { export default {
name: "LayoutAside", name: "LayoutAside",
@ -78,6 +78,13 @@ export default {
}, },
}, },
computed: {
//
currentPath()
{
return useRoute().path;
}
},
created() created()
{ {
this.routers = useRouter().options.routes; this.routers = useRouter().options.routes;

View File

@ -0,0 +1,22 @@
/*
* @Author: Kane
* @Date: 2023-01-07 22:25:43
* @LastEditors: Kane
* @LastEditTime: 2023-01-07 22:26:51
* @FilePath: \admin_system\src\store\modules\app.js
* @Description: app模块
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
const state = {};
const getters = {};
const mutations = {};
const actions = {};
export default {
namespaced: true,
state,
getters,
mutations,
actions
};

View File

@ -2,14 +2,14 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-01-06 15:30:12 * @Date: 2023-01-06 15:30:12
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-06 15:30:14 * @LastEditTime: 2023-01-07 20:37:55
* @FilePath: \admin_system\src\views\overview\OverView.vue * @FilePath: \admin_system\src\views\overview\OverView.vue
* @Description: * @Description:
* *
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
--> -->
<template> <template>
总览 <div class="fill"></div>
</template> </template>
<script> <script>
@ -19,5 +19,9 @@ export default {
</script> </script>
<style scoped> <style scoped>
.fill {
border: 1px solid salmon;
height: 2000px;
width: 100%;
}
</style> </style>