285 lines
11 KiB
Vue
285 lines
11 KiB
Vue
|
<script lang="ts" setup>
|
||
|
import { useI18n } from "vue-i18n";
|
||
|
import Motion from "./utils/motion";
|
||
|
import { useRouter } from "vue-router";
|
||
|
import { message } from "@/utils/message";
|
||
|
import { loginRules } from "./utils/rule";
|
||
|
import TypeIt from "@/components/ReTypeit";
|
||
|
import { debounce, useGlobal } from "@pureadmin/utils";
|
||
|
import { useNav } from "@/layout/hooks/useNav";
|
||
|
import { useEventListener } from "@vueuse/core";
|
||
|
import type { FormInstance } from "element-plus";
|
||
|
import { $t, transformI18n } from "@/plugins/i18n";
|
||
|
import { operates, thirdParty } from "./utils/enums";
|
||
|
import { useLayout } from "@/layout/hooks/useLayout";
|
||
|
import LoginPhone from "./components/LoginPhone.vue";
|
||
|
import LoginRegist from "./components/LoginRegist.vue";
|
||
|
import LoginUpdate from "./components/LoginUpdate.vue";
|
||
|
import LoginQrCode from "./components/LoginQrCode.vue";
|
||
|
import { useUserStoreHook } from "@/store/modules/user";
|
||
|
import { getTopMenu, initRouter } from "@/router/utils";
|
||
|
import { avatar, bg, illustration } from "./utils/static";
|
||
|
import { ReImageVerify } from "@/components/ReImageVerify";
|
||
|
import { computed, reactive, ref, toRaw, watch } from "vue";
|
||
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||
|
import { useTranslationLang } from "@/layout/hooks/useTranslationLang";
|
||
|
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
||
|
import dayIcon from "@/assets/svg/day.svg?component";
|
||
|
import darkIcon from "@/assets/svg/dark.svg?component";
|
||
|
import globalization from "@/assets/svg/globalization.svg?component";
|
||
|
import Lock from "@iconify-icons/ri/lock-fill";
|
||
|
import Check from "@iconify-icons/ep/check";
|
||
|
import User from "@iconify-icons/ri/user-3-fill";
|
||
|
import Info from "@iconify-icons/ri/information-line";
|
||
|
|
||
|
defineOptions({ name: "Login" });
|
||
|
|
||
|
const imgCode = ref("");
|
||
|
const loginDay = ref(7);
|
||
|
const router = useRouter();
|
||
|
const loading = ref(false);
|
||
|
const checked = ref(false);
|
||
|
const disabled = ref(false);
|
||
|
const ruleFormRef = ref<FormInstance>();
|
||
|
const currentPage = computed(() => {
|
||
|
return useUserStoreHook().currentPage;
|
||
|
});
|
||
|
|
||
|
const { t } = useI18n();
|
||
|
const { $storage, $config } = useGlobal<GlobalPropertiesApi>();
|
||
|
const { initStorage } = useLayout();
|
||
|
initStorage();
|
||
|
const { dataTheme, overallStyle, dataThemeChange } = useDataThemeChange();
|
||
|
dataThemeChange(overallStyle.value);
|
||
|
const { title, copyright, getDropdownItemStyle, getDropdownItemClass } = useNav();
|
||
|
const { locale, translationCh, translationEn } = useTranslationLang();
|
||
|
|
||
|
const ruleForm = reactive({
|
||
|
username: "admin",
|
||
|
password: "admin123",
|
||
|
verifyCode: ""
|
||
|
});
|
||
|
|
||
|
const onLogin = async (formEl: FormInstance | undefined) => {
|
||
|
if (!formEl) return;
|
||
|
await formEl.validate(valid => {
|
||
|
if (valid) {
|
||
|
loading.value = true;
|
||
|
useUserStoreHook()
|
||
|
.loginByUsername({ username: ruleForm.username, password: "admin123" })
|
||
|
.then(res => {
|
||
|
if (res.success) {
|
||
|
// 获取后端路由
|
||
|
return initRouter().then(() => {
|
||
|
disabled.value = true;
|
||
|
router
|
||
|
.push(getTopMenu(true).path)
|
||
|
.then(() => {
|
||
|
message(t("login.pureLoginSuccess"), { type: "success" });
|
||
|
})
|
||
|
.finally(() => (disabled.value = false));
|
||
|
});
|
||
|
} else {
|
||
|
message(t("login.pureLoginFail"), { type: "error" });
|
||
|
}
|
||
|
})
|
||
|
.finally(() => (loading.value = false));
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
const immediateDebounce: any = debounce(formRef => onLogin(formRef), 1000, true);
|
||
|
|
||
|
useEventListener(document, "keypress", ({ code }) => {
|
||
|
if (code === "Enter" && !disabled.value && !loading.value) immediateDebounce(ruleFormRef.value);
|
||
|
});
|
||
|
|
||
|
watch(imgCode, value => {
|
||
|
useUserStoreHook().SET_VERIFYCODE(value);
|
||
|
});
|
||
|
watch(checked, bool => {
|
||
|
useUserStoreHook().SET_ISREMEMBERED(bool);
|
||
|
});
|
||
|
watch(loginDay, value => {
|
||
|
useUserStoreHook().SET_LOGINDAY(value);
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="select-none">
|
||
|
<img :src="bg" alt="" class="wave" />
|
||
|
<div class="flex-c absolute right-5 top-3">
|
||
|
<!-- 主题 -->
|
||
|
<el-switch v-model="dataTheme" :active-icon="dayIcon" :inactive-icon="darkIcon" inline-prompt @change="dataThemeChange" />
|
||
|
<!-- 国际化 -->
|
||
|
<el-dropdown trigger="click">
|
||
|
<globalization class="hover:text-primary hover:!bg-[transparent] w-[20px] h-[20px] ml-1.5 cursor-pointer outline-none duration-300" />
|
||
|
<template #dropdown>
|
||
|
<el-dropdown-menu class="translation">
|
||
|
<el-dropdown-item :class="['dark:!text-white', getDropdownItemClass(locale, 'zh')]" :style="getDropdownItemStyle(locale, 'zh')" @click="translationCh">
|
||
|
<IconifyIconOffline v-show="locale === 'zh'" :icon="Check" class="check-zh" />
|
||
|
简体中文
|
||
|
</el-dropdown-item>
|
||
|
<el-dropdown-item :class="['dark:!text-white', getDropdownItemClass(locale, 'en')]" :style="getDropdownItemStyle(locale, 'en')" @click="translationEn">
|
||
|
<span v-show="locale === 'en'" class="check-en">
|
||
|
<IconifyIconOffline :icon="Check" />
|
||
|
</span>
|
||
|
English
|
||
|
</el-dropdown-item>
|
||
|
</el-dropdown-menu>
|
||
|
</template>
|
||
|
</el-dropdown>
|
||
|
</div>
|
||
|
<div class="login-container">
|
||
|
<div class="img">
|
||
|
<component :is="toRaw(illustration)" />
|
||
|
</div>
|
||
|
<div class="login-box">
|
||
|
<div class="login-form">
|
||
|
<avatar class="avatar" />
|
||
|
<Motion>
|
||
|
<h2 class="outline-none">
|
||
|
<TypeIt :options="{ strings: [title], cursor: false, speed: 100 }" />
|
||
|
</h2>
|
||
|
</Motion>
|
||
|
|
||
|
<el-form v-if="currentPage === 0" ref="ruleFormRef" :model="ruleForm" :rules="loginRules" size="large">
|
||
|
<Motion :delay="100">
|
||
|
<el-form-item
|
||
|
:rules="[
|
||
|
{
|
||
|
required: true,
|
||
|
message: transformI18n($t('login.pureUsernameReg')),
|
||
|
trigger: 'blur'
|
||
|
}
|
||
|
]"
|
||
|
prop="username"
|
||
|
>
|
||
|
<el-input v-model="ruleForm.username" :placeholder="t('login.pureUsername')" :prefix-icon="useRenderIcon(User)" clearable />
|
||
|
</el-form-item>
|
||
|
</Motion>
|
||
|
|
||
|
<Motion :delay="150">
|
||
|
<el-form-item prop="password">
|
||
|
<el-input v-model="ruleForm.password" :placeholder="t('login.purePassword')" :prefix-icon="useRenderIcon(Lock)" clearable show-password />
|
||
|
</el-form-item>
|
||
|
</Motion>
|
||
|
|
||
|
<Motion :delay="200">
|
||
|
<el-form-item prop="verifyCode">
|
||
|
<el-input v-model="ruleForm.verifyCode" :placeholder="t('login.pureVerifyCode')" :prefix-icon="useRenderIcon('ri:shield-keyhole-line')" clearable>
|
||
|
<template v-slot:append>
|
||
|
<ReImageVerify v-model:code="imgCode" />
|
||
|
</template>
|
||
|
</el-input>
|
||
|
</el-form-item>
|
||
|
</Motion>
|
||
|
|
||
|
<Motion :delay="250">
|
||
|
<el-form-item>
|
||
|
<div class="w-full h-[20px] flex justify-between items-center">
|
||
|
<el-checkbox v-model="checked">
|
||
|
<span class="flex">
|
||
|
<select
|
||
|
v-model="loginDay"
|
||
|
:style="{
|
||
|
width: loginDay < 10 ? '10px' : '16px',
|
||
|
outline: 'none',
|
||
|
background: 'none',
|
||
|
appearance: 'none'
|
||
|
}"
|
||
|
>
|
||
|
<option value="1">1</option>
|
||
|
<option value="7">7</option>
|
||
|
<option value="30">30</option>
|
||
|
</select>
|
||
|
{{ t("login.pureRemember") }}
|
||
|
<IconifyIconOffline
|
||
|
v-tippy="{
|
||
|
content: t('login.pureRememberInfo'),
|
||
|
placement: 'top'
|
||
|
}"
|
||
|
:icon="Info"
|
||
|
class="ml-1"
|
||
|
/>
|
||
|
</span>
|
||
|
</el-checkbox>
|
||
|
<el-button link type="primary" @click="useUserStoreHook().SET_CURRENTPAGE(4)">
|
||
|
{{ t("login.pureForget") }}
|
||
|
</el-button>
|
||
|
</div>
|
||
|
<el-button :disabled="disabled" :loading="loading" class="w-full mt-4" size="default" type="primary" @click="onLogin(ruleFormRef)">
|
||
|
{{ t("login.pureLogin") }}
|
||
|
</el-button>
|
||
|
</el-form-item>
|
||
|
</Motion>
|
||
|
|
||
|
<Motion :delay="300">
|
||
|
<el-form-item>
|
||
|
<div class="w-full h-[20px] flex justify-between items-center">
|
||
|
<el-button v-for="(item, index) in operates" :key="index" class="w-full mt-4" size="default" @click="useUserStoreHook().SET_CURRENTPAGE(index + 1)">
|
||
|
{{ t(item.title) }}
|
||
|
</el-button>
|
||
|
</div>
|
||
|
</el-form-item>
|
||
|
</Motion>
|
||
|
</el-form>
|
||
|
|
||
|
<Motion v-if="currentPage === 0" :delay="350">
|
||
|
<el-form-item>
|
||
|
<el-divider>
|
||
|
<p class="text-gray-500 text-xs">
|
||
|
{{ t("login.pureThirdLogin") }}
|
||
|
</p>
|
||
|
</el-divider>
|
||
|
<div class="w-full flex justify-evenly">
|
||
|
<span v-for="(item, index) in thirdParty" :key="index" :title="t(item.title)">
|
||
|
<IconifyIconOnline :icon="`ri:${item.icon}-fill`" class="cursor-pointer text-gray-500 hover:text-blue-400" width="20" />
|
||
|
</span>
|
||
|
</div>
|
||
|
</el-form-item>
|
||
|
</Motion>
|
||
|
<!-- 手机号登录 -->
|
||
|
<LoginPhone v-if="currentPage === 1" />
|
||
|
<!-- 二维码登录 -->
|
||
|
<LoginQrCode v-if="currentPage === 2" />
|
||
|
<!-- 注册 -->
|
||
|
<LoginRegist v-if="currentPage === 3" />
|
||
|
<!-- 忘记密码 -->
|
||
|
<LoginUpdate v-if="currentPage === 4" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="w-full flex-c absolute bottom-3 text-sm text-[rgba(0,0,0,0.6)] dark:text-[rgba(220,220,242,0.8)]">
|
||
|
{{ $config.Copyright }}
|
||
|
<a class="hover:text-primary" href="https://github.com/pure-admin" target="_blank"> {{ title }} </a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
@import url("@/style/login.css");
|
||
|
</style>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
:deep(.el-input-group__append, .el-input-group__prepend) {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.translation {
|
||
|
::v-deep(.el-dropdown-menu__item) {
|
||
|
padding: 5px 40px;
|
||
|
}
|
||
|
|
||
|
.check-zh {
|
||
|
position: absolute;
|
||
|
left: 20px;
|
||
|
}
|
||
|
|
||
|
.check-en {
|
||
|
position: absolute;
|
||
|
left: 20px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|