fix: 修复登录页面无法显示图片 (#823)

This commit is contained in:
shaohuzhang1 2024-07-22 10:06:18 +08:00 committed by GitHub
parent c465ddff19
commit fb5ad9a06b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ const loginImageStyle = computed(() => {
}
} else {
return {
backgroundImage: `url(../src/assets/theme/${getThemeImg(user.themeInfo?.theme)}.jpg)`
backgroundImage: `url(src/assets/theme/${getThemeImg(user.themeInfo?.theme)}.jpg)`
}
}
})