mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 12:52:26 +00:00
refactor(base_crud): 优化数据权限过滤逻辑 fix(user): 修正用户详情部门查询错误 feat(menu): 添加菜单标题字段并优化路由更新 style(auth): 优化登录页面背景样式 fix(profile): 修复表单样式问题 perf(redis): 优化缓存清除逻辑 fix(role): 移除默认角色操作限制 chore: 清理无用导入和注释
301 lines
8.0 KiB
Vue
301 lines
8.0 KiB
Vue
<template>
|
|
<div>
|
|
<h3 text-center m-0 mb-20px>{{ t("login.login") }}</h3>
|
|
<el-form
|
|
ref="loginFormRef"
|
|
:model="loginForm"
|
|
:rules="loginRules"
|
|
size="large"
|
|
:validate-on-rule-change="false"
|
|
>
|
|
<!-- 用户名 -->
|
|
<el-form-item prop="username">
|
|
<el-input v-model.trim="loginForm.username" :placeholder="t('login.username')" clearable>
|
|
<template #prefix>
|
|
<el-icon><User /></el-icon>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
|
|
<!-- 密码 -->
|
|
<el-tooltip :visible="isCapsLock" :content="t('login.capsLock')" placement="right">
|
|
<el-form-item prop="password">
|
|
<el-input
|
|
v-model.trim="loginForm.password"
|
|
:placeholder="t('login.password')"
|
|
type="password"
|
|
show-password
|
|
clearable
|
|
@keyup="checkCapsLock"
|
|
@keyup.enter="handleLoginSubmit"
|
|
>
|
|
<template #prefix>
|
|
<el-icon><Lock /></el-icon>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-tooltip>
|
|
|
|
<!-- 验证码 -->
|
|
<el-form-item v-if="captchaState.enable" prop="captcha">
|
|
<div flex>
|
|
<el-input v-model.trim="loginForm.captcha" :placeholder="t('login.captchaCode')" clearable @keyup.enter="handleLoginSubmit" >
|
|
<template #prefix>
|
|
<div class="i-svg:captcha" />
|
|
</template>
|
|
</el-input>
|
|
<div cursor-pointer flex-center ml-10px >
|
|
<el-icon v-if="codeLoading" class="is-loading">
|
|
<Loading />
|
|
</el-icon>
|
|
<el-image v-else object-cover :src="captchaState.img_base" @click="getCaptcha" />
|
|
</div>
|
|
</div>
|
|
</el-form-item>
|
|
|
|
<div class="flex-x-between w-full">
|
|
<el-checkbox v-model="loginForm.remember">{{ t("login.rememberMe") }}</el-checkbox>
|
|
<el-link type="primary" underline="never" @click="toOtherForm('resetPwd')">
|
|
{{ t("login.forgetPassword") }}
|
|
</el-link>
|
|
</div>
|
|
|
|
<!-- 登录按钮 -->
|
|
<el-form-item>
|
|
<el-button :loading="loading" type="primary" class="w-full" @click="handleLoginSubmit">
|
|
{{ t("login.login") }}
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<div flex-center gap-10px>
|
|
<el-text size="default">{{ t("login.noAccount") }}</el-text>
|
|
<el-link type="primary" underline="never" @click="toOtherForm('register')">
|
|
{{ t("login.reg") }}
|
|
</el-link>
|
|
</div>
|
|
|
|
<!-- 第三方登录 -->
|
|
<div class="third-party-login">
|
|
<div class="divider-container">
|
|
<div class="divider-line"></div>
|
|
<span class="divider-text">{{ t("login.otherLoginMethods") }}</span>
|
|
<div class="divider-line"></div>
|
|
</div>
|
|
<div class="flex-center gap-x-5 w-full text-[var(--el-text-color-secondary)]">
|
|
<CommonWrapper>
|
|
<div text-20px class="i-svg:wechat" />
|
|
</CommonWrapper>
|
|
<CommonWrapper>
|
|
<div text-20px cursor-pointer class="i-svg:qq" />
|
|
</CommonWrapper>
|
|
<CommonWrapper>
|
|
<div text-20px cursor-pointer class="i-svg:github" />
|
|
</CommonWrapper>
|
|
<CommonWrapper>
|
|
<div text-20px cursor-pointer class="i-svg:gitee" />
|
|
</CommonWrapper>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import type { FormInstance } from "element-plus";
|
|
import { LocationQuery, RouteLocationRaw, useRoute, useRouter } from "vue-router";
|
|
import { useI18n } from "vue-i18n";
|
|
import { onActivated, onMounted, watch } from "vue";
|
|
import AuthAPI, {type LoginFormData, type CaptchaInfo } from "@/api/system/auth";
|
|
import { useAppStore, useUserStore } from "@/store";
|
|
import CommonWrapper from "@/components/CommonWrapper/index.vue";
|
|
|
|
const { t } = useI18n();
|
|
const userStore = useUserStore();
|
|
const appStore = useAppStore();
|
|
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
|
|
// 组件挂载时获取验证码
|
|
onMounted(() => getCaptcha());
|
|
|
|
// 组件激活时获取验证码(适用于KeepAlive缓存的情况)
|
|
onActivated(() => {
|
|
getCaptcha();
|
|
// 重置登录表单
|
|
loginForm.captcha = '';
|
|
});
|
|
|
|
// 监听路由变化,确保每次进入登录页面都有最新验证码
|
|
watch(
|
|
() => route.fullPath,
|
|
() => {
|
|
getCaptcha();
|
|
loginForm.captcha = '';
|
|
}
|
|
);
|
|
|
|
const loginFormRef = ref<FormInstance>();
|
|
const loading = ref(false);
|
|
// 是否大写锁定
|
|
const isCapsLock = ref(false);
|
|
|
|
|
|
const loginForm = reactive<LoginFormData>({
|
|
username: "",
|
|
password: "",
|
|
captcha: "",
|
|
captcha_key: "",
|
|
remember: true
|
|
});
|
|
|
|
const captchaState = reactive<CaptchaInfo>({
|
|
enable: true,
|
|
key: "",
|
|
img_base: ""
|
|
});
|
|
|
|
const loginRules = computed(() => {
|
|
return {
|
|
username: [
|
|
{
|
|
required: true,
|
|
trigger: "blur",
|
|
message: t("login.message.username.required"),
|
|
},
|
|
],
|
|
password: [
|
|
{
|
|
required: true,
|
|
trigger: "blur",
|
|
message: t("login.message.password.required"),
|
|
},
|
|
{
|
|
min: 6,
|
|
message: t("login.message.password.min"),
|
|
trigger: "blur",
|
|
},
|
|
],
|
|
captcha: [
|
|
{
|
|
required: true,
|
|
trigger: "blur",
|
|
message: t("login.message.captchaCode.required"),
|
|
},
|
|
],
|
|
};
|
|
});
|
|
|
|
// 获取验证码
|
|
const codeLoading = ref(false);
|
|
async function getCaptcha() {
|
|
try {
|
|
codeLoading.value = true;
|
|
const response = await AuthAPI.getCaptcha()
|
|
loginForm.captcha_key = response.data.data.key;
|
|
captchaState.img_base = response.data.data.img_base;
|
|
} finally {
|
|
codeLoading.value = false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 登录提交
|
|
*/
|
|
async function handleLoginSubmit() {
|
|
try {
|
|
// 1. 表单验证
|
|
const valid = await loginFormRef.value?.validate();
|
|
if (!valid) return;
|
|
|
|
loading.value = true;
|
|
|
|
// 2. 执行登录
|
|
await userStore.login(loginForm);
|
|
|
|
// 3. 登录成功,让路由守卫处理跳转逻辑
|
|
// 解析目标地址,但不直接跳转
|
|
const redirect = resolveRedirectTarget(route.query);
|
|
|
|
// 通过替换当前路由触发路由守卫,让守卫处理后续的路由生成和跳转
|
|
await router.replace(redirect);
|
|
|
|
// 4. 记住我功能已实现,根据用户选择决定token的存储方式:
|
|
// - 选中"记住我": token存储在localStorage中,浏览器关闭后仍然有效
|
|
// - 未选中"记住我": token存储在sessionStorage中,浏览器关闭后失效
|
|
|
|
// 登录成功后自动开启项目引导
|
|
appStore.showGuide(true);
|
|
|
|
} catch (error) {
|
|
// 5. 统一错误处理
|
|
getCaptcha(); // 刷新验证码
|
|
} finally {
|
|
loading.value = false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 解析重定向目标
|
|
*
|
|
* @param query 路由查询参数
|
|
* @returns 标准化后的路由地址
|
|
*/
|
|
function resolveRedirectTarget(query: LocationQuery): RouteLocationRaw {
|
|
// 默认跳转路径
|
|
const defaultPath = "/";
|
|
|
|
// 获取原始重定向路径
|
|
const rawRedirect = (query.redirect as string) || defaultPath;
|
|
|
|
try {
|
|
// 6. 使用Vue Router解析路径
|
|
const resolved = router.resolve(rawRedirect);
|
|
return {
|
|
path: resolved.path,
|
|
query: resolved.query,
|
|
};
|
|
} catch {
|
|
// 7. 异常处理:返回安全路径
|
|
return { path: defaultPath };
|
|
}
|
|
}
|
|
|
|
// 检查输入大小写
|
|
function checkCapsLock(event: KeyboardEvent) {
|
|
// 防止浏览器密码自动填充时报错
|
|
if (event instanceof KeyboardEvent) {
|
|
isCapsLock.value = event.getModifierState("CapsLock");
|
|
}
|
|
}
|
|
|
|
const emit = defineEmits(["update:modelValue"]);
|
|
function toOtherForm(type: "register" | "resetPwd") {
|
|
emit("update:modelValue", type);
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.third-party-login {
|
|
.divider-container {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 20px 0;
|
|
|
|
.divider-line {
|
|
flex: 1;
|
|
height: 1px;
|
|
background: linear-gradient(to right, transparent, var(--el-border-color-light), transparent);
|
|
}
|
|
|
|
.divider-text {
|
|
padding: 0 16px;
|
|
font-size: 12px;
|
|
color: var(--el-text-color-regular);
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
</style>
|