保存进度!

This commit is contained in:
2023-01-08 23:25:13 +08:00
parent aa20111600
commit c623db8a72
5 changed files with 69 additions and 15 deletions

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-01-04 11:05:44
* @LastEditors: Kane
* @LastEditTime: 2023-01-07 23:16:13
* @LastEditTime: 2023-01-08 21:18:30
* @FilePath: \admin_system\src\layout\Index.vue
* @Description:
*
@@ -40,6 +40,7 @@ export default {
<style scoped>
#layout-container {
height: 100vh;
max-height: 100vh;
/* overflow: hiddens; */
}
@@ -53,6 +54,7 @@ export default {
height: 50px;
/* background-color: #77bc99; */
padding: 0px;
flex-grow: 0;
}
#layout-main {
@@ -64,5 +66,6 @@ export default {
#layout-container-down {
height: calc(100vh - 50px);
/* max-height: calc(100vh - 50px); */
}
</style>

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-01-04 11:30:33
* @LastEditors: Kane
* @LastEditTime: 2023-01-08 00:02:15
* @LastEditTime: 2023-01-08 23:11:00
* @FilePath: \admin_system\src\layout\components\Aside.vue
* @Description:
*
@@ -99,6 +99,17 @@ export default {
border-right: none;
/* border-left: 5px solid #1d74b2; */
overflow: auto;
-webkit-touch-callout: none;
-moz-user-select: none;
/*火狐*/
-webkit-user-select: none;
/*webkit浏览器*/
-ms-user-select: none;
/*IE10*/
-khtml-user-select: none;
/*早期浏览器*/
user-select: none;
}
.is-active {

View File

@@ -2,20 +2,23 @@
* @Author: Kane
* @Date: 2023-01-04 11:39:04
* @LastEditors: Kane
* @LastEditTime: 2023-01-06 17:10:33
* @LastEditTime: 2023-01-08 23:11:47
* @FilePath: \admin_system\src\layout\components\Header.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<div class="app_banner">
<div class="app_banner no_select">
<span class="company_name">CPIC</span>
<div class="version_div">
<div>测试版</div>
<div>3.6.7 x64 Build 202208301257</div>
</div>
<div class="buttons_div"></div>
<div class="buttons_div">
<User style="width: 25px; height; 25px; margin-right: 8px" />
<SwitchButton style="width: 25px; height; 25px; margin-right: 8px" />
</div>
</div>
</template>
@@ -42,10 +45,23 @@ export default {
display: flex;
justify-content: left;
align-items: center;
padding: 0px 15px;
padding: 0px 15px 0px 15px;
height: 100%;
}
.no_select {
-webkit-touch-callout: none;
-moz-user-select: none;
/*火狐*/
-webkit-user-select: none;
/*webkit浏览器*/
-ms-user-select: none;
/*IE10*/
-khtml-user-select: none;
/*早期浏览器*/
user-select: none;
}
.app_banner>*+* {
margin-left: 10px;
}
@@ -60,5 +76,7 @@ export default {
.buttons_div {
margin-left: auto;
padding-top: 5px;
/* border: 1px solid salmon; */
}
</style>