mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 16:07:19 +08:00
305 lines
9.3 KiB
Vue
305 lines
9.3 KiB
Vue
<script setup lang="ts">
|
|
import { useI18n } from "vue-i18n";
|
|
import Motion from "./utils/motion";
|
|
import { useRouter } from "vue-router";
|
|
import { loginRules } from "./utils/rule";
|
|
import phone from "./components/phone.vue";
|
|
import qrCode from "./components/qrCode.vue";
|
|
import regist from "./components/regist.vue";
|
|
import update from "./components/update.vue";
|
|
import { initRouter } from "/@/router/utils";
|
|
import { useNav } from "/@/layout/hooks/useNav";
|
|
import { message } from "@pureadmin/components";
|
|
import type { FormInstance } from "element-plus";
|
|
import { storageSession } from "@pureadmin/utils";
|
|
import { $t, transformI18n } from "/@/plugins/i18n";
|
|
import { operates, thirdParty } from "./utils/enums";
|
|
import { useLayout } from "/@/layout/hooks/useLayout";
|
|
import { useUserStoreHook } from "/@/store/modules/user";
|
|
import { bg, avatar, illustration } from "./utils/static";
|
|
import { ref, reactive, watch, computed, toRaw } from "vue";
|
|
import { ReImageVerify } from "/@/components/ReImageVerify";
|
|
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";
|
|
|
|
defineOptions({
|
|
name: "Login"
|
|
});
|
|
const imgCode = ref("");
|
|
const router = useRouter();
|
|
const loading = ref(false);
|
|
const checked = ref(false);
|
|
const ruleFormRef = ref<FormInstance>();
|
|
const currentPage = computed(() => {
|
|
return useUserStoreHook().currentPage;
|
|
});
|
|
|
|
const { initStorage } = useLayout();
|
|
initStorage();
|
|
|
|
const { t } = useI18n();
|
|
const { dataTheme, dataThemeChange } = useDataThemeChange();
|
|
const { title, getDropdownItemStyle, getDropdownItemClass } = useNav();
|
|
const { locale, translationCh, translationEn } = useTranslationLang();
|
|
|
|
const ruleForm = reactive({
|
|
username: "admin",
|
|
password: "admin123",
|
|
verifyCode: ""
|
|
});
|
|
|
|
const onLogin = async (formEl: FormInstance | undefined) => {
|
|
loading.value = true;
|
|
if (!formEl) return;
|
|
await formEl.validate((valid, fields) => {
|
|
if (valid) {
|
|
// 模拟请求,需根据实际开发进行修改
|
|
setTimeout(() => {
|
|
loading.value = false;
|
|
storageSession.setItem("info", {
|
|
username: "admin",
|
|
accessToken: "eyJhbGciOiJIUzUxMiJ9.test"
|
|
});
|
|
initRouter("admin").then(() => {});
|
|
message.success("登录成功");
|
|
router.push("/");
|
|
}, 2000);
|
|
} else {
|
|
loading.value = false;
|
|
return fields;
|
|
}
|
|
});
|
|
};
|
|
|
|
function onHandle(value) {
|
|
useUserStoreHook().SET_CURRENTPAGE(value);
|
|
}
|
|
|
|
watch(imgCode, value => {
|
|
useUserStoreHook().SET_VERIFYCODE(value);
|
|
});
|
|
|
|
dataThemeChange();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="wh-full select-none">
|
|
<img :src="bg" class="wave" />
|
|
<div class="flex-c absolute right-5 top-3">
|
|
<!-- 主题 -->
|
|
<el-switch
|
|
v-model="dataTheme"
|
|
inline-prompt
|
|
:active-icon="dayIcon"
|
|
:inactive-icon="darkIcon"
|
|
@change="dataThemeChange"
|
|
/>
|
|
<!-- 国际化 -->
|
|
<el-dropdown trigger="click">
|
|
<globalization
|
|
class="hover:color-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
|
|
:style="getDropdownItemStyle(locale, 'zh')"
|
|
:class="['!dark:color-white', getDropdownItemClass(locale, 'zh')]"
|
|
@click="translationCh"
|
|
>
|
|
<IconifyIconOffline
|
|
class="check-zh"
|
|
v-show="locale === 'zh'"
|
|
icon="check"
|
|
/>
|
|
简体中文
|
|
</el-dropdown-item>
|
|
<el-dropdown-item
|
|
:style="getDropdownItemStyle(locale, 'en')"
|
|
:class="['!dark:color-white', getDropdownItemClass(locale, 'en')]"
|
|
@click="translationEn"
|
|
>
|
|
<span class="check-en" v-show="locale === '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">{{ title }}</h2>
|
|
</Motion>
|
|
|
|
<el-form
|
|
v-if="currentPage === 0"
|
|
ref="ruleFormRef"
|
|
:model="ruleForm"
|
|
:rules="loginRules"
|
|
size="large"
|
|
@keyup.enter="onLogin(ruleFormRef)"
|
|
>
|
|
<Motion :delay="100">
|
|
<el-form-item
|
|
:rules="[
|
|
{
|
|
required: true,
|
|
message: transformI18n($t('login.usernameReg')),
|
|
trigger: 'blur'
|
|
}
|
|
]"
|
|
prop="username"
|
|
>
|
|
<el-input
|
|
clearable
|
|
v-model="ruleForm.username"
|
|
:placeholder="t('login.username')"
|
|
:prefix-icon="useRenderIcon('user')"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="150">
|
|
<el-form-item prop="password">
|
|
<el-input
|
|
clearable
|
|
show-password
|
|
v-model="ruleForm.password"
|
|
:placeholder="t('login.password')"
|
|
:prefix-icon="useRenderIcon('lock')"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="200">
|
|
<el-form-item prop="verifyCode">
|
|
<el-input
|
|
clearable
|
|
v-model="ruleForm.verifyCode"
|
|
:placeholder="t('login.verifyCode')"
|
|
:prefix-icon="
|
|
useRenderIcon('ri:shield-keyhole-line', { online: true })
|
|
"
|
|
>
|
|
<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">
|
|
{{ t("login.remember") }}
|
|
</el-checkbox>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="useUserStoreHook().SET_CURRENTPAGE(4)"
|
|
>
|
|
{{ t("login.forget") }}
|
|
</el-button>
|
|
</div>
|
|
<el-button
|
|
class="w-full mt-4"
|
|
size="default"
|
|
type="primary"
|
|
:loading="loading"
|
|
@click="onLogin(ruleFormRef)"
|
|
>
|
|
{{ t("login.login") }}
|
|
</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="onHandle(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.thirdLogin") }}</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`"
|
|
width="20"
|
|
class="cursor-pointer text-gray-500 hover:text-blue-400"
|
|
/>
|
|
</span>
|
|
</div>
|
|
</el-form-item>
|
|
</Motion>
|
|
<!-- 手机号登录 -->
|
|
<phone v-if="currentPage === 1" />
|
|
<!-- 二维码登录 -->
|
|
<qrCode v-if="currentPage === 2" />
|
|
<!-- 注册 -->
|
|
<regist v-if="currentPage === 3" />
|
|
<!-- 忘记密码 -->
|
|
<update v-if="currentPage === 4" />
|
|
</div>
|
|
</div>
|
|
</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>
|