fix:后台样式初始化

This commit is contained in:
xjh 2023-04-17 14:38:19 +08:00
parent 5037e56c77
commit 80e517ea77
8 changed files with 18 additions and 8 deletions

View File

@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>爱华仕后台管理系统</title>
<title>厚德艺术后台管理系统</title>
<!-- element css cdn, if you use custom theme, remove it. -->
<!-- <link
rel="stylesheet"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -3,7 +3,7 @@
<el-aside width="200px">
<div id="logo">
<!-- 头部Logo替换 -->
<img src="/logo.png" style="width: 180px;margin-top: 10px;margin-left: 10px;" alt="" />
<img src="/logo.png" style="width: 130px;margin-top: 5px;margin-left: 25px;" alt="" />
<!-- <span>ARW</span> -->
</div>
<AsideMenu :collapse="collapse" />
@ -154,7 +154,7 @@ body {
// justify-content: space-around;
height: 70px;
text-align: center;
background-color: #ed1f65; // logo
background-color: #A30000; // logo
// background-color: #2b333e; //
color: white;
z-index: 99;

View File

@ -66,7 +66,7 @@ const isShow = ({ show }) => {
/* 选中背景颜色 */
.el-menu-item.is-active {
background-color: #ed1f65 !important;
background-color: #A30000 !important;
}
/* 二级菜单开展箭头图标 */

View File

@ -12,7 +12,7 @@
<div class="login-container">
<div class="login-background">
<!-- 登录页背景图替换 -->
<img src="/images/login-background.jpg" alt="">
<!-- <img src="/images/login-background.jpg" alt=""> -->
</div>
<div class="login-big-box">
<div class="login-left-box">
@ -29,7 +29,7 @@
</div>
<div class="login-right-title-box">
<!-- 登录页文字替换 -->
登录到 xxx后台管理平台
登录到 厚德艺术 后台管理平台
<div class="login-right-title-bottom"></div>
</div>
<div class="login-right-form-control-box">
@ -299,4 +299,14 @@ function verify(v, t, regPool, msg) {
}
}
</script>
</script>
<style>
.login-background{
background-image: linear-gradient(to top, #A30000,60%,rgba(145, 2, 2, 0.5) 160%);
}
.login-right-title-bottom{
background-color: #A30000 !important;
}
</style>

View File

@ -1,7 +1,7 @@
@forward 'element-plus/theme-chalk/src/common/var.scss' with (
$colors: (
'primary': (
'base': #ed1f65
'base': #A30000
),
)
);