Skip to content

Commit 526ea02

Browse files
committed
feat(System appearance): Adjust logo to support technology blue
1 parent 27922ff commit 526ea02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/views/login/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ const loginForm = ref({
7070
})
7171
7272
const bg = computed(() => {
73-
return appearanceStore.isBlue ? loginImage : appearanceStore.getBg || login_image
73+
return appearanceStore.getBg || (appearanceStore.isBlue ? loginImage : login_image)
7474
})
7575
7676
const loginBg = computed(() => {
77-
return appearanceStore.isBlue ? logo : appearanceStore.getLogin || aboutBg
77+
return appearanceStore.getLogin || (appearanceStore.isBlue ? logo : aboutBg)
7878
})
7979
8080
const rules = {

0 commit comments

Comments
 (0)