|
|
@ -9,8 +9,8 @@ |
|
|
|
> |
|
|
|
<!-- 左上角的 logo + 系统标题 --> |
|
|
|
<div class="relative flex items-center "> |
|
|
|
<img alt="" class="mr-10px w-144px h-36px" src="@/assets/imgs/logo_white_blue.png" /> |
|
|
|
<span class="text-20px font-bold">{{ t(`ts.${underlineToHump(appStore.getTitle)}`) }}</span> |
|
|
|
<img alt="" class="mr-10px h-36px" :src="getLogo()" /> |
|
|
|
<span class="text-20px font-bold">{{ t(`ts.${underlineToHump(getProjectName())}`) }}</span> |
|
|
|
</div> |
|
|
|
<!-- 左边的背景图 + 欢迎语 --> |
|
|
|
<div class="h-[calc(100%-60px)] flex items-center justify-center"> |
|
|
@ -33,8 +33,8 @@ |
|
|
|
class="flex items-center justify-between at-2xl:justify-end at-xl:justify-end" |
|
|
|
> |
|
|
|
<div class="flex items-center at-2xl:hidden at-xl:hidden"> |
|
|
|
<img alt="" class="mr-10px w-144px h-36px" src="@/assets/imgs/logo_white_blue.png" /> |
|
|
|
<span class="text-20px font-bold">{{ t(`ts.${underlineToHump(appStore.getTitle)}`) }}</span> |
|
|
|
<img alt="" class="mr-10px h-36px" :src="getLogo()" /> |
|
|
|
<span class="text-20px font-bold">{{ t(`ts.${underlineToHump(getProjectName())}`) }}</span> |
|
|
|
</div> |
|
|
|
<div class="flex items-center justify-end space-x-10px"> |
|
|
|
<!-- <ThemeSwitch /> --> |
|
|
@ -72,6 +72,7 @@ import { useDesign } from '@/hooks/web/useDesign' |
|
|
|
import { useAppStore } from '@/store/modules/app' |
|
|
|
import { ThemeSwitch } from '@/layout/components/ThemeSwitch' |
|
|
|
import { LocaleDropdown } from '@/layout/components/LocaleDropdown' |
|
|
|
import {getLogo,getProjectName } from '@/utils/systemParam' |
|
|
|
|
|
|
|
import { LoginForm, MobileForm, QrCodeForm, RegisterForm, SSOLoginVue,QRCodePDA } from './components' |
|
|
|
|
|
|
|