|
|
|
|
@ -7,6 +7,7 @@ import { underlineToHump } from '@/utils'
|
|
|
|
|
import { useAppStore } from '@/store/modules/app'
|
|
|
|
|
import { useDesign } from '@/hooks/web/useDesign'
|
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
import { ElScrollbar } from 'element-plus'
|
|
|
|
|
|
|
|
|
|
const { getPrefixCls } = useDesign()
|
|
|
|
|
|
|
|
|
|
@ -32,60 +33,62 @@ const toLogin = () => {
|
|
|
|
|
:class="prefixCls"
|
|
|
|
|
class="h-[100%] relative lt-xl:bg-[var(--login-bg-color)] lt-sm:px-10px lt-xl:px-10px lt-md:px-10px"
|
|
|
|
|
>
|
|
|
|
|
<div class="relative h-full flex mx-auto">
|
|
|
|
|
<div
|
|
|
|
|
:class="`${prefixCls}__left flex-1 bg-gray-500 bg-opacity-20 relative p-30px lt-xl:hidden`"
|
|
|
|
|
>
|
|
|
|
|
<div class="flex items-center relative text-white">
|
|
|
|
|
<img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
|
|
|
|
|
<span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-center items-center h-[calc(100%-60px)]">
|
|
|
|
|
<TransitionGroup
|
|
|
|
|
appear
|
|
|
|
|
tag="div"
|
|
|
|
|
enter-active-class="animate__animated animate__bounceInLeft"
|
|
|
|
|
>
|
|
|
|
|
<img src="@/assets/svgs/login-box-bg.svg" key="1" alt="" class="w-350px" />
|
|
|
|
|
<div class="text-3xl text-white" key="2">{{ t('login.welcome') }}</div>
|
|
|
|
|
<div class="mt-5 font-normal text-white text-14px" key="3">
|
|
|
|
|
{{ t('login.message') }}
|
|
|
|
|
</div>
|
|
|
|
|
</TransitionGroup>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex-1 p-30px lt-sm:p-10px dark:bg-[var(--login-bg-color)] relative">
|
|
|
|
|
<ElScrollbar class="h-full">
|
|
|
|
|
<div class="relative flex mx-auto">
|
|
|
|
|
<div
|
|
|
|
|
class="flex justify-between items-center text-white at-2xl:justify-end at-xl:justify-end"
|
|
|
|
|
:class="`${prefixCls}__left flex-1 bg-gray-500 bg-opacity-20 relative p-30px lt-xl:hidden`"
|
|
|
|
|
>
|
|
|
|
|
<div class="flex items-center at-2xl:hidden at-xl:hidden">
|
|
|
|
|
<div class="flex items-center relative text-white">
|
|
|
|
|
<img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
|
|
|
|
|
<span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-end items-center space-x-10px">
|
|
|
|
|
<ThemeSwitch />
|
|
|
|
|
<LocaleDropdown class="lt-xl:text-white dark:text-white" />
|
|
|
|
|
<div class="flex justify-center items-center h-[calc(100%-60px)]">
|
|
|
|
|
<TransitionGroup
|
|
|
|
|
appear
|
|
|
|
|
tag="div"
|
|
|
|
|
enter-active-class="animate__animated animate__bounceInLeft"
|
|
|
|
|
>
|
|
|
|
|
<img src="@/assets/svgs/login-box-bg.svg" key="1" alt="" class="w-350px" />
|
|
|
|
|
<div class="text-3xl text-white" key="2">{{ t('login.welcome') }}</div>
|
|
|
|
|
<div class="mt-5 font-normal text-white text-14px" key="3">
|
|
|
|
|
{{ t('login.message') }}
|
|
|
|
|
</div>
|
|
|
|
|
</TransitionGroup>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Transition appear enter-active-class="animate__animated animate__bounceInRight">
|
|
|
|
|
<div class="flex-1 p-30px lt-sm:p-10px dark:bg-[var(--login-bg-color)] relative">
|
|
|
|
|
<div
|
|
|
|
|
class="h-full flex items-center m-auto w-[100%] at-2xl:max-w-500px at-xl:max-w-500px at-md:max-w-500px at-lg:max-w-500px"
|
|
|
|
|
class="flex justify-between items-center text-white at-2xl:justify-end at-xl:justify-end"
|
|
|
|
|
>
|
|
|
|
|
<LoginForm
|
|
|
|
|
v-if="isLogin"
|
|
|
|
|
class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
|
|
|
|
|
@to-register="toRegister"
|
|
|
|
|
/>
|
|
|
|
|
<RegisterForm
|
|
|
|
|
v-else
|
|
|
|
|
class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
|
|
|
|
|
@to-login="toLogin"
|
|
|
|
|
/>
|
|
|
|
|
<div class="flex items-center at-2xl:hidden at-xl:hidden">
|
|
|
|
|
<img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
|
|
|
|
|
<span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-end items-center space-x-10px">
|
|
|
|
|
<ThemeSwitch />
|
|
|
|
|
<LocaleDropdown class="lt-xl:text-white dark:text-white" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Transition>
|
|
|
|
|
<Transition appear enter-active-class="animate__animated animate__bounceInRight">
|
|
|
|
|
<div
|
|
|
|
|
class="h-full flex items-center m-auto w-[100%] at-2xl:max-w-500px at-xl:max-w-500px at-md:max-w-500px at-lg:max-w-500px"
|
|
|
|
|
>
|
|
|
|
|
<LoginForm
|
|
|
|
|
v-if="isLogin"
|
|
|
|
|
class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
|
|
|
|
|
@to-register="toRegister"
|
|
|
|
|
/>
|
|
|
|
|
<RegisterForm
|
|
|
|
|
v-else
|
|
|
|
|
class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
|
|
|
|
|
@to-login="toLogin"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</Transition>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ElScrollbar>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|