mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
85 lines
3.0 KiB
Vue
85 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import type { Component } from 'vue';
|
|
import { loginModuleRecord } from '@/constants/app';
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import loginBackground from '@/assets/svg-icon/login-background.svg';
|
|
import { $t } from '@/locales';
|
|
import PwdLogin from './modules/pwd-login.vue';
|
|
import CodeLogin from './modules/code-login.vue';
|
|
import Register from './modules/register.vue';
|
|
import ResetPwd from './modules/reset-pwd.vue';
|
|
import BindWechat from './modules/bind-wechat.vue';
|
|
|
|
interface Props {
|
|
/** The login module */
|
|
module?: UnionKey.LoginModule;
|
|
}
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
const appStore = useAppStore();
|
|
const themeStore = useThemeStore();
|
|
|
|
interface LoginModule {
|
|
label: string;
|
|
component: Component;
|
|
}
|
|
|
|
const moduleMap: Record<UnionKey.LoginModule, LoginModule> = {
|
|
'pwd-login': { label: loginModuleRecord['pwd-login'], component: PwdLogin },
|
|
'code-login': { label: loginModuleRecord['code-login'], component: CodeLogin },
|
|
register: { label: loginModuleRecord.register, component: Register },
|
|
'reset-pwd': { label: loginModuleRecord['reset-pwd'], component: ResetPwd },
|
|
'bind-wechat': { label: loginModuleRecord['bind-wechat'], component: BindWechat }
|
|
};
|
|
|
|
const activeModule = computed(() => moduleMap[props.module || 'pwd-login']);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative min-h-screen w-full flex flex-wrap">
|
|
<div class="hidden min-h-screen w-50% bg-primary-100 lg:block dark:bg-primary-800">
|
|
<div class="size-full flex-center">
|
|
<img class="w-60% sm:w-80%" :src="loginBackground" />
|
|
</div>
|
|
</div>
|
|
<div class="w-full flex-col-center px-24px py-32px lg:w-50%">
|
|
<div class="mx-auto max-w-464px w-full">
|
|
<header class="flex-y-center justify-between">
|
|
<div class="flex-y-center gap-16px">
|
|
<SystemLogo class="text-30px text-primary sm:text-42px" />
|
|
<h3 class="text-24px text-primary font-500 sm:text-32px">{{ $t('system.title') }}</h3>
|
|
</div>
|
|
<div class="flex-y-center">
|
|
<ThemeSchemaSwitch
|
|
:theme-schema="themeStore.themeScheme"
|
|
:show-tooltip="false"
|
|
class="text-20px lt-sm:text-18px"
|
|
@switch="themeStore.toggleThemeScheme"
|
|
/>
|
|
<LangSwitch
|
|
v-if="themeStore.header.multilingual.visible"
|
|
:lang="appStore.locale"
|
|
:lang-options="appStore.localeOptions"
|
|
:show-tooltip="false"
|
|
class="text-20px lt-sm:text-18px"
|
|
@change-lang="appStore.changeLocale"
|
|
/>
|
|
</div>
|
|
</header>
|
|
<main class="pt-24px">
|
|
<div>
|
|
<Transition :name="themeStore.page.animateMode" mode="out-in" appear>
|
|
<component :is="activeModule.component" />
|
|
</Transition>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|