Files
vue3-element-admin/src/views/login/index.vue
haoxr 0cf93553b7 refactor: 登录页验证码完善
Former-commit-id: ab872ba2b007b9cd5a2b98e80b46b49563de7298
2023-03-25 01:17:59 +08:00

260 lines
6.1 KiB
Vue

<template>
<div class="login-container">
<el-form
ref="loginFormRef"
:model="loginData"
:rules="loginRules"
class="login-form"
>
<div class="flex text-white items-center py-4">
<span class="text-2xl flex-1 text-center">{{ $t('login.title') }}</span>
<lang-select style="color: #fff" />
</div>
<el-form-item prop="username">
<div class="p-2 text-white">
<svg-icon icon-class="user" />
</div>
<el-input
class="flex-1"
ref="username"
size="large"
v-model="loginData.username"
:placeholder="$t('login.username')"
name="username"
/>
</el-form-item>
<el-tooltip
:disabled="isCapslock === false"
content="Caps lock is On"
placement="right"
>
<el-form-item prop="password">
<span class="p-2 text-white">
<svg-icon icon-class="password" />
</span>
<el-input
class="flex-1"
v-model="loginData.password"
placeholder="密码"
: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="text-white cursor-pointer"
/>
</span>
</el-form-item>
</el-tooltip>
<!-- 验证码 -->
<el-form-item prop="verifyCode">
<span class="p-2 text-white">
<svg-icon icon-class="verify_code" />
</span>
<el-input
v-model="loginData.verifyCode"
auto-complete="off"
:placeholder="$t('login.verifyCode')"
class="w-[60%]"
@keyup.enter="handleLogin"
/>
<div class="captcha">
<img :src="captchaBase64" @click="getCaptcha" />
</div>
</el-form-item>
<el-button
size="default"
:loading="loading"
type="primary"
class="w-full"
@click.prevent="handleLogin"
>{{ $t('login.login') }}
</el-button>
<!-- 账号密码提示 -->
<div class="mt-4 text-white text-sm">
<span>{{ $t('login.username') }}: admin</span>
<span class="ml-4"> {{ $t('login.password') }}: 123456</span>
</div>
</el-form>
</div>
</template>
<script setup lang="ts">
import router from '@/router';
import LangSelect from '@/components/LangSelect/index.vue';
import SvgIcon from '@/components/SvgIcon/index.vue';
// 状态管理依赖
import { useUserStore } from '@/store/modules/user';
// API依赖
import { LocationQuery, LocationQueryValue, useRoute } from 'vue-router';
import { getCaptchaApi } from '@/api/auth';
import { LoginData } from '@/api/auth/types';
const userStore = useUserStore();
const route = useRoute();
const loginFormRef = ref(ElForm);
const loginData = ref<LoginData>({
username: 'admin',
password: '123456'
});
const loginRules = {
username: [{ required: true, trigger: 'blur' }],
password: [{ required: true, trigger: 'blur', validator: validatePassword }],
verifyCode: [{ required: true, trigger: 'blur' }]
};
const passwordVisible = ref(false);
const captchaBase64 = ref();
const loading = ref(false);
function validatePassword(rule: any, value: any, callback: any) {
if (value.length < 6) {
callback(new Error('The password can not be less than 6 digits'));
} else {
callback();
}
}
// 是否大写锁定
const isCapslock = ref(false);
function checkCapslock(e: any) {
const { key } = e;
isCapslock.value = key && key.length === 1 && key >= 'A' && key <= 'Z';
}
/**
* 验证码
*/
function getCaptcha() {
getCaptchaApi().then(({ data }) => {
const { verifyCodeBase64, verifyCodeKey } = data;
loginData.value.verifyCodeKey = verifyCodeKey;
captchaBase64.value = verifyCodeBase64;
});
}
/**
* 登录
*/
function handleLogin() {
loginFormRef.value.validate((valid: boolean) => {
if (valid) {
loading.value = true;
userStore
.login(loginData.value)
.then(() => {
const query: LocationQuery = route.query;
const redirect = (query.redirect as LocationQueryValue) ?? '/';
const otherQueryParams = Object.keys(query).reduce(
(acc: any, cur: string) => {
if (cur !== 'redirect') {
acc[cur] = query[cur];
}
return acc;
},
{}
);
router.push({ path: redirect, query: otherQueryParams });
})
.finally(() => {
loading.value = false;
getCaptcha();
});
}
});
}
onMounted(() => {
getCaptcha();
});
</script>
<style lang="scss" scoped>
.captcha {
position: absolute;
right: 0;
top: 0;
img {
height: 48px;
width: 120px;
cursor: pointer;
}
}
.login-container {
min-height: 100%;
width: 100%;
background-color: #2d3a4b;
overflow: hidden;
.login-form {
width: 520px;
max-width: 100%;
padding: 160px 35px 0;
margin: 0 auto;
overflow: hidden;
}
}
.el-form-item {
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.el-input {
background: transparent;
// 子组件 scoped 无效,使用 :deep
:deep(.el-input__wrapper) {
padding: 0;
background: transparent;
box-shadow: none;
.el-input__inner {
background: transparent;
border: 0px;
border-radius: 0px;
color: #fff;
caret-color: #fff;
&:-webkit-autofill {
box-shadow: 0 0 0 1000px transparent inset !important;
-webkit-text-fill-color: #fff !important;
}
// 设置输入框自动填充的延迟属性
&:-webkit-autofill,
&:-webkit-autofill:hover,
&:-webkit-autofill:focus,
&:-webkit-autofill:active {
-webkit-transition-delay: 99999s;
-webkit-transition: color 99999s ease-out,
background-color 99999s ease-out;
}
}
}
}
</style>