mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 22:30:19 +08:00
96 lines
3.2 KiB
Vue
96 lines
3.2 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import type { Component } from 'vue';
|
|
import { getColorPalette, mixColor } from '@sa/utils';
|
|
import { $t } from '@/locales';
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import { loginModuleRecord } from '@/constants/app';
|
|
import PwdLogin from './components/pwd-login.vue';
|
|
import CodeLogin from './components/code-login.vue';
|
|
import Register from './components/register.vue';
|
|
import ResetPwd from './components/reset-pwd.vue';
|
|
import BindWechat from './components/bind-wechat.vue';
|
|
|
|
interface Props {
|
|
/** The login module */
|
|
module?: UnionKey.LoginModule;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
module: 'pwd-login'
|
|
});
|
|
|
|
const appStore = useAppStore();
|
|
const themeStore = useThemeStore();
|
|
|
|
interface LoginModule {
|
|
key: UnionKey.LoginModule;
|
|
label: string;
|
|
component: Component;
|
|
}
|
|
|
|
const modules: LoginModule[] = [
|
|
{ key: 'pwd-login', label: loginModuleRecord['pwd-login'], component: PwdLogin },
|
|
{ key: 'code-login', label: loginModuleRecord['code-login'], component: CodeLogin },
|
|
{ key: 'register', label: loginModuleRecord.register, component: Register },
|
|
{ key: 'reset-pwd', label: loginModuleRecord['reset-pwd'], component: ResetPwd },
|
|
{ key: 'bind-wechat', label: loginModuleRecord['bind-wechat'], component: BindWechat }
|
|
];
|
|
|
|
const activeModule = computed(() => {
|
|
const findItem = modules.find(item => item.key === props.module);
|
|
return findItem || modules[0];
|
|
});
|
|
|
|
const bgThemeColor = computed(() =>
|
|
themeStore.darkMode ? getColorPalette(themeStore.themeColor, 7) : themeStore.themeColor
|
|
);
|
|
|
|
const bgColor = computed(() => {
|
|
const COLOR_WHITE = '#ffffff';
|
|
|
|
const ratio = themeStore.darkMode ? 0.5 : 0.2;
|
|
|
|
return mixColor(COLOR_WHITE, themeStore.themeColor, ratio);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative flex-center wh-full overflow-hidden" :style="{ backgroundColor: bgColor }">
|
|
<WaveBg :theme-color="bgThemeColor" />
|
|
<NCard class="relative w-auto rd-12px z-4">
|
|
<div class="w-400px <sm:w-300px">
|
|
<header class="flex-y-center justify-between">
|
|
<SystemLogo class="text-64px text-primary <sm:text-48px" />
|
|
<h3 class="text-28px font-500 text-primary <sm:text-22px">{{ $t('system.title') }}</h3>
|
|
<div class="i-flex-vertical">
|
|
<ThemeSchemaSwitch
|
|
:theme-schema="themeStore.themeScheme"
|
|
:show-tooltip="false"
|
|
class="text-20px <sm:text-18px"
|
|
@switch="themeStore.toggleThemeScheme"
|
|
/>
|
|
<LangSwitch
|
|
:lang="appStore.locale"
|
|
:lang-options="appStore.localeOptions"
|
|
:show-tooltip="false"
|
|
@change-lang="appStore.changeLocale"
|
|
/>
|
|
</div>
|
|
</header>
|
|
<main class="pt-24px">
|
|
<h3 class="text-18px text-primary font-medium">{{ $t(activeModule.label) }}</h3>
|
|
<div class="pt-24px">
|
|
<Transition :name="themeStore.page.animateMode" mode="out-in" appear>
|
|
<component :is="activeModule.component" />
|
|
</Transition>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</NCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|