This commit is contained in:
2024-04-18 14:13:17 +08:00
parent 2fc7649a13
commit aa70a4a075
49 changed files with 2079 additions and 689 deletions

View File

@@ -4,7 +4,7 @@
:class="{ collapse: collapse }"
:style="{
backgroundColor:
sideTheme === 'theme-dark' ? '#1f2d3d' : variables.menuLightBackground,
sideTheme === 'theme-dark' ? 'white' : variables.menuLightBackground,
}">
<!-- sideTheme === 'theme-dark'
? variables.menuBackground
@@ -21,25 +21,21 @@
class="sidebar-title"
:style="{
color:
sideTheme === 'theme-dark'
? variables.logoTitleColor
: variables.logoLightTitleColor,
'#27207f'
}">
{{ title }}
</h1>
</router-link>
<router-link v-else key="expand" class="sidebar-logo-link" to="/">
<img v-if="logo" :src="logo" class="sidebar-logo" />
<h1
<h2
class="sidebar-title"
:style="{
color:
sideTheme === 'theme-dark'
? variables.logoTitleColor
: variables.logoLightTitleColor,
'#27207f'
}">
{{ title }}
</h1>
</h2>
</router-link>
</transition>
</div>
@@ -67,7 +63,7 @@ export default {
},
data() {
return {
title: '中国联合工程',
title: '中国联合工程有限公司',
logo: logoImg,
};
},
@@ -110,7 +106,7 @@ export default {
color: #fff;
font-weight: 600;
line-height: 50px;
font-size: 18px;
font-size: 16px;
letter-spacing: 1px;
font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
vertical-align: middle;