vue3-element-admin/src/views/login/index.vue

356 lines
9.1 KiB
Vue
Raw Normal View History

<template>
2022-05-08 13:06:12 +08:00
<div class="login-container">
<!-- 顶部 -->
<div class="absolute top-0 flex items-center justify-end px-5 h-20 w-full">
<el-switch
v-model="isDark"
inline-prompt
:active-icon="IconEpMoon"
:inactive-icon="IconEpSunny"
active-color="var(--el-fill-color-dark)"
inactive-color="var(--el-color-primary)"
@change="handleThemeChange"
/>
<lang-select class="ml-2 cursor-pointer" />
</div>
<!-- 登录表单 -->
<el-card
class="z-1 !border-none w-100 !bg-transparent !rounded-4% <sm:w-83"
2023-03-25 01:17:59 +08:00
>
<div class="text-center relative">
<h2>{{ title }}</h2>
<el-tag class="ml-2 absolute top-0 right-0">{{ version }}</el-tag>
</div>
<el-form
ref="loginFormRef"
:model="loginData"
:rules="loginRules"
class="login-form"
2023-03-25 01:17:59 +08:00
>
<el-form-item prop="username">
<div class="p-2">
<svg-icon icon-class="user" />
</div>
2023-03-25 01:17:59 +08:00
<el-input
ref="username"
v-model="loginData.username"
class="flex-1"
2023-03-25 01:17:59 +08:00
size="large"
:placeholder="$t('login.username')"
name="username"
2023-03-25 01:17:59 +08:00
/>
2022-05-08 13:06:12 +08:00
</el-form-item>
<el-tooltip
:disabled="isCapslock === false"
content="Caps lock is On"
placement="right"
>
<el-form-item prop="password">
<span class="p-2">
<svg-icon icon-class="password" />
</span>
<el-input
v-model="loginData.password"
class="flex-1"
:placeholder="$t('login.password')"
:type="passwordVisible === false ? 'password' : 'input'"
size="large"
name="password"
@keyup="checkCapslock"
@keyup.enter="handleLogin"
/>
<span class="mr-2" @click="passwordVisible = !passwordVisible">
<svg-icon
:icon-class="passwordVisible === false ? 'eye' : 'eye-open'"
class="cursor-pointer"
/>
</span>
</el-form-item>
</el-tooltip>
<!-- 验证码 -->
<el-form-item prop="verifyCode">
<span class="p-2">
<svg-icon icon-class="verify-code" />
</span>
2023-03-24 22:40:29 +08:00
<el-input
v-model="loginData.verifyCode"
auto-complete="off"
:placeholder="$t('login.verifyCode')"
class="w-[60%]"
@keyup.enter="handleLogin"
/>
2023-03-24 22:40:29 +08:00
<div class="captcha">
2023-11-03 17:27:09 +08:00
<el-image
:src="captchaBase64"
@click="getCaptcha"
class="w-[120px] h-[48px] cursor-pointer"
>
<template #error>
<div class="image-slot">
<i-ep-picture />
</div>
</template>
</el-image>
</div>
</el-form-item>
2022-05-08 13:06:12 +08:00
<el-button
:loading="loading"
type="primary"
class="w-full"
@click.prevent="handleLogin"
>{{ $t("login.login") }}
</el-button>
<!-- 账号密码提示 -->
<div class="mt-10 text-sm">
<span>{{ $t("login.username") }}: admin</span>
<span class="ml-4"> {{ $t("login.password") }}: 123456</span>
</div>
</el-form>
</el-card>
<!-- ICP备案 -->
<div
class="absolute bottom-1 text-[10px] text-center"
v-show="useAppStore().device == 'desktop'"
>
<p>
Copyright © 2021 - 2023 youlai.tech All Rights Reserved. 有来技术
版权所有
</p>
<p>皖ICP备20006496号-3</p>
</div>
2022-05-08 13:06:12 +08:00
</div>
</template>
<script setup lang="ts">
import { useI18n } from "vue-i18n";
import router from "@/router";
import LangSelect from "@/components/LangSelect/index.vue";
import SvgIcon from "@/components/SvgIcon/index.vue";
import IconEpSunny from "~icons/ep/sunny";
import IconEpMoon from "~icons/ep/moon";
import { useSettingsStore } from "@/store/modules/settings";
// 状态管理依赖
import { useUserStore } from "@/store/modules/user";
import { useAppStore } from "@/store/modules/app";
// API依赖
import { LocationQuery, LocationQueryValue, useRoute } from "vue-router";
import { getCaptchaApi } from "@/api/auth";
import { LoginData } from "@/api/auth/types";
const settingsStore = useSettingsStore();
const { title, version } = settingsStore;
/**
* 明亮/暗黑主题切换
*/
const isDark = ref<boolean>(settingsStore.theme === "dark");
const handleThemeChange = (isDark: any) => {
useToggle(isDark);
settingsStore.changeSetting({
key: "theme",
value: isDark ? "dark" : "light",
});
2023-11-08 22:22:38 +08:00
};
/**
* 根据屏幕宽度切换设备模式
*/
const appStore = useAppStore();
const WIDTH = 992; // 响应式布局容器固定宽度 大屏(>=1200px 中屏(>=992px 小屏(>=768px
const { width } = useWindowSize();
watchEffect(() => {
if (width.value < WIDTH) {
appStore.toggleDevice("mobile");
} else {
appStore.toggleDevice("desktop");
}
});
const loading = ref(false); // 按钮loading
const isCapslock = ref(false); // 是否大写锁定
const passwordVisible = ref(false); // 密码是否可见
const captchaBase64 = ref(); // 验证码图片Base64字符串
const loginFormRef = ref(ElForm); // 登录表单ref
2023-03-01 00:55:41 +08:00
const loginData = ref<LoginData>({
username: "admin",
password: "123456",
2022-03-11 00:07:34 +08:00
});
const { t } = useI18n();
const loginRules = computed(() => {
const prefix = appStore.language === "en" ? "Please enter " : "请输入";
return {
username: [
{
required: true,
trigger: "blur",
message: `${prefix}${t("login.username")}`,
},
],
password: [
{
required: true,
trigger: "blur",
validator: (rule: any, value: any, callback: any) => {
if (value.length < 6) {
callback(new Error("The password can not be less than 6 digits"));
} else {
callback();
}
},
message: `${prefix}${t("login.password")}`,
},
],
verifyCode: [
{
required: true,
trigger: "blur",
message: `${prefix}${t("login.verifyCode")}`,
},
],
};
});
2023-02-06 01:07:35 +08:00
/**
* 检查输入大小写状态
*/
function checkCapslock(e: any) {
2022-05-08 13:06:12 +08:00
const { key } = e;
isCapslock.value = key && key.length === 1 && key >= "A" && key <= "Z";
}
2022-09-13 07:44:55 +08:00
/**
* 获取验证码
2023-03-24 22:40:29 +08:00
*/
function getCaptcha() {
getCaptchaApi().then(({ data }) => {
const { captchaImgBase64, verifyCodeKey } = data;
2023-03-24 22:40:29 +08:00
loginData.value.verifyCodeKey = verifyCodeKey;
captchaBase64.value = captchaImgBase64;
2023-03-24 22:40:29 +08:00
});
}
/**
* 登录
2022-09-13 07:44:55 +08:00
*/
const route = useRoute();
const userStore = useUserStore();
function handleLogin() {
2022-05-08 13:06:12 +08:00
loginFormRef.value.validate((valid: boolean) => {
if (valid) {
2023-02-06 01:07:35 +08:00
loading.value = true;
userStore
2023-02-06 01:07:35 +08:00
.login(loginData.value)
2022-05-08 13:06:12 +08:00
.then(() => {
2023-02-06 01:07:35 +08:00
const query: LocationQuery = route.query;
const redirect = (query.redirect as LocationQueryValue) ?? "/";
2023-02-06 01:07:35 +08:00
const otherQueryParams = Object.keys(query).reduce(
(acc: any, cur: string) => {
if (cur !== "redirect") {
2023-02-06 01:07:35 +08:00
acc[cur] = query[cur];
}
return acc;
},
{}
);
router.push({ path: redirect, query: otherQueryParams });
2022-05-08 13:06:12 +08:00
})
.catch(() => {
// 验证失败,重新生成验证码
getCaptcha();
})
2023-02-06 01:07:35 +08:00
.finally(() => {
loading.value = false;
2022-05-08 13:06:12 +08:00
});
}
});
}
2023-03-24 22:40:29 +08:00
onMounted(() => {
getCaptcha();
// 主题初始化
const theme = useSettingsStore().theme;
useSettingsStore().changeSetting({ key: "theme", value: theme });
if (theme == "dark") {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
2023-03-24 22:40:29 +08:00
});
</script>
<style lang="scss" scoped>
.dark .login-container {
background: url("@/assets/images/login-bg-dark.jpg") no-repeat center right;
}
.login-container {
@apply w-full h-full flex-center;
overflow-y: auto;
background: url("@/assets/images/login-bg.jpg") no-repeat center right;
2023-07-21 18:18:37 +08:00
2023-03-16 23:49:36 +08:00
.login-form {
padding: 30px 10px;
.captcha {
position: absolute;
top: 0;
right: 0;
2023-11-03 17:27:09 +08:00
.image-slot {
display: flex;
align-items: center;
justify-content: right;
width: 100%;
height: 100%;
font-size: 18px;
color: var(--el-text-color-secondary);
background: var(--el-fill-color-light);
svg {
margin-right: 10px;
}
}
}
2023-03-16 23:49:36 +08:00
}
}
2023-03-24 22:40:29 +08:00
2023-02-06 01:07:35 +08:00
.el-form-item {
background: var(--el-input-bg-color);
border: 1px solid var(--el-border-color);
2023-02-06 01:07:35 +08:00
border-radius: 5px;
2022-08-31 23:56:31 +08:00
}
2023-02-21 00:12:39 +08:00
:deep(.el-input) {
.el-input__wrapper {
2023-02-06 01:07:35 +08:00
padding: 0;
background-color: transparent;
2023-02-06 01:07:35 +08:00
box-shadow: none;
2023-03-24 22:40:29 +08:00
&.is-focus,
&:hover {
box-shadow: none !important;
}
input:-webkit-autofill {
transition: background-color 1000s ease-in-out 0s; /* 通过延时渲染背景色变相去除背景颜色 */
2023-02-06 01:07:35 +08:00
}
2022-08-31 23:56:31 +08:00
}
}
</style>