no message
Showing
2 changed files
with
3 additions
and
6 deletions
| ... | @@ -2,11 +2,11 @@ | ... | @@ -2,11 +2,11 @@ |
| 2 | <div class="sidebar-logo-container" :class="{ 'collapse': collapse }" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }"> | 2 | <div class="sidebar-logo-container" :class="{ 'collapse': collapse }" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }"> |
| 3 | <transition name="sidebarLogoFade"> | 3 | <transition name="sidebarLogoFade"> |
| 4 | <div v-if="collapse" key="collapse" class="sidebar-logo-link"> | 4 | <div v-if="collapse" key="collapse" class="sidebar-logo-link"> |
| 5 | <img v-if="logo" :src="logoIco" class="sidebar-logo" style="height: 50px"> | 5 | <!-- <img v-if="logo" :src="logoIco" class="sidebar-logo" style="height: 50px">--> |
| 6 | <h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1> | 6 | <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1> |
| 7 | </div> | 7 | </div> |
| 8 | <div v-else key="expand" class="sidebar-logo-link"> | 8 | <div v-else key="expand" class="sidebar-logo-link"> |
| 9 | <img v-if="logo" :src="logo" class="sidebar-logo"> | 9 | <!-- <img v-if="logo" :src="logo" class="sidebar-logo">--> |
| 10 | <!-- <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1> --> | 10 | <!-- <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1> --> |
| 11 | </div> | 11 | </div> |
| 12 | </transition> | 12 | </transition> |
| ... | @@ -15,8 +15,6 @@ | ... | @@ -15,8 +15,6 @@ |
| 15 | 15 | ||
| 16 | <script setup> | 16 | <script setup> |
| 17 | import variables from '@/assets/styles/variables.module.scss' | 17 | import variables from '@/assets/styles/variables.module.scss' |
| 18 | import logo from '@/assets/logo/logo@2x.png' | ||
| 19 | // import logoIco from '@/assets/logo/ico.png' | ||
| 20 | import useSettingsStore from '@/store/modules/settings' | 18 | import useSettingsStore from '@/store/modules/settings' |
| 21 | 19 | ||
| 22 | defineProps({ | 20 | defineProps({ | ... | ... |
| ... | @@ -2,7 +2,6 @@ | ... | @@ -2,7 +2,6 @@ |
| 2 | <div class="login"> | 2 | <div class="login"> |
| 3 | <el-row :inline="true" justify="space-between" class="title"> | 3 | <el-row :inline="true" justify="space-between" class="title"> |
| 4 | <div class="imgBox"> | 4 | <div class="imgBox"> |
| 5 | <!-- <img class="img" src="@/assets/images/logo@2x.png" alt="">--> | ||
| 6 | </div> | 5 | </div> |
| 7 | <div class="title-right"> | 6 | <div class="title-right"> |
| 8 | <router-link to="login" class="tilt-btn"> | 7 | <router-link to="login" class="tilt-btn"> | ... | ... |
-
Please register or sign in to post a comment