vue-vben-admin/src/views/sys/login/Login.vue

229 lines
6.2 KiB
Vue
Raw Normal View History

2020-09-28 20:19:10 +08:00
<template>
2020-10-11 00:05:29 +08:00
<div class="login">
2021-02-17 22:07:22 +08:00
<div class="opacity-0 login-mask lg:opacity-100"></div>
<div class="justify-center login-form-wrap lg:justify-end">
2021-01-28 23:28:50 +08:00
<div class="mx-6 login-form">
2020-11-26 21:10:21 +08:00
<AppLocalePicker v-if="showLocale" class="login-form__locale" />
2021-01-28 23:28:50 +08:00
<div class="px-2 py-10 login-form__content">
2020-10-11 00:05:29 +08:00
<header>
2020-11-03 21:00:14 +08:00
<img :src="logo" class="mr-4" />
2020-10-11 00:05:29 +08:00
<h1>{{ title }}</h1>
2020-09-28 20:19:10 +08:00
</header>
2021-01-18 23:37:36 +08:00
<a-form class="login-form__main" :model="formData" :rules="formRules" ref="formRef">
2020-09-28 20:19:10 +08:00
<a-form-item name="account">
<a-input size="large" v-model:value="formData.account" placeholder="username: vben" />
2020-09-28 20:19:10 +08:00
</a-form-item>
<a-form-item name="password">
<a-input-password
size="large"
visibilityToggle
v-model:value="formData.password"
placeholder="password: 123456"
2020-09-28 20:19:10 +08:00
/>
</a-form-item>
<a-row>
<a-col :span="12">
<a-form-item>
<!-- No logic, you need to deal with it yourself -->
2020-11-23 00:35:15 +08:00
<a-checkbox v-model:checked="autoLogin" size="small">{{
t('sys.login.autoLogin')
}}</a-checkbox>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item :style="{ 'text-align': 'right' }">
<!-- No logic, you need to deal with it yourself -->
2021-01-28 23:28:50 +08:00
<a-button type="link" size="small">
{{ t('sys.login.forgetPassword') }}
</a-button>
</a-form-item>
</a-col>
</a-row>
2020-09-28 20:19:10 +08:00
<a-form-item>
<a-button
type="primary"
size="large"
class="rounded-sm"
2020-10-31 00:15:14 +08:00
:block="true"
2020-09-28 20:19:10 +08:00
@click="login"
:loading="formState.loading"
>
2021-01-28 23:28:50 +08:00
{{ t('sys.login.loginButton') }}
</a-button>
2020-09-28 20:19:10 +08:00
</a-form-item>
</a-form>
</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent, reactive, ref, unref, toRaw } from 'vue';
2021-01-18 23:37:36 +08:00
import { Checkbox, Form, Input, Row, Col } from 'ant-design-vue';
2020-11-26 21:19:39 +08:00
import { Button } from '/@/components/Button';
2020-11-25 23:20:30 +08:00
import { AppLocalePicker } from '/@/components/Application';
2020-09-28 20:19:10 +08:00
import { userStore } from '/@/store/modules/user';
2020-09-28 20:19:10 +08:00
import { useMessage } from '/@/hooks/web/useMessage';
2020-11-25 23:20:30 +08:00
import { useGlobSetting, useProjectSetting } from '/@/hooks/setting';
2020-11-03 21:00:14 +08:00
import logo from '/@/assets/images/logo.png';
2020-11-25 23:20:30 +08:00
import { useI18n } from '/@/hooks/web/useI18n';
2020-09-28 20:19:10 +08:00
export default defineComponent({
components: {
2021-01-18 23:37:36 +08:00
[Checkbox.name]: Checkbox,
[Form.name]: Form,
[Form.Item.name]: Form.Item,
[Input.name]: Input,
[Input.Password.name]: Input.Password,
AButton: Button,
2020-11-25 23:20:30 +08:00
AppLocalePicker,
2021-01-18 23:37:36 +08:00
[Row.name]: Row,
[Col.name]: Col,
},
2020-09-28 20:19:10 +08:00
setup() {
const formRef = ref<any>(null);
const autoLoginRef = ref(false);
2020-11-23 00:35:15 +08:00
const globSetting = useGlobSetting();
2020-11-25 23:20:30 +08:00
const { locale } = useProjectSetting();
2020-09-28 20:19:10 +08:00
const { notification } = useMessage();
2020-12-01 23:51:39 +08:00
const { t } = useI18n();
2020-09-28 20:19:10 +08:00
const formData = reactive({
2020-10-15 23:08:44 +08:00
account: 'vben',
password: '123456',
2020-09-28 20:19:10 +08:00
});
2020-09-28 20:19:10 +08:00
const formState = reactive({
loading: false,
});
const formRules = reactive({
2020-12-01 23:51:39 +08:00
account: [{ required: true, message: t('sys.login.accountPlaceholder'), trigger: 'blur' }],
password: [
{ required: true, message: t('sys.login.passwordPlaceholder'), trigger: 'blur' },
],
2020-09-28 20:19:10 +08:00
});
async function handleLogin() {
const form = unref(formRef);
if (!form) return;
formState.loading = true;
try {
const data = await form.validate();
const userInfo = await userStore.login(
toRaw({
password: data.password,
username: data.account,
})
);
if (userInfo) {
notification.success({
2020-12-01 23:51:39 +08:00
message: t('sys.login.loginSuccessTitle'),
description: `${t('sys.login.loginSuccessDesc')}: ${userInfo.realName}`,
2020-09-28 20:19:10 +08:00
duration: 3,
});
}
} catch (error) {
} finally {
formState.loading = false;
}
}
return {
formRef,
formData,
formState,
formRules,
login: handleLogin,
autoLogin: autoLoginRef,
2020-10-11 00:05:29 +08:00
title: globSetting && globSetting.title,
2020-11-03 21:00:14 +08:00
logo,
t,
2020-11-25 23:20:30 +08:00
showLocale: locale.show,
2020-09-28 20:19:10 +08:00
};
},
});
</script>
2020-11-26 21:10:21 +08:00
<style lang="less">
.login-form__locale {
position: absolute;
top: 14px;
right: 14px;
z-index: 1;
}
2020-09-28 20:19:10 +08:00
.login {
2020-10-11 00:05:29 +08:00
position: relative;
height: 100vh;
2020-09-28 20:19:10 +08:00
background: url(../../../assets/images/login/login-bg.png) no-repeat;
background-size: 100% 100%;
&-mask {
2020-10-11 00:05:29 +08:00
height: 100%;
2020-09-28 20:19:10 +08:00
background: url(../../../assets/images/login/login-in.png) no-repeat;
2020-11-10 22:45:39 +08:00
background-position: 30% 30%;
background-size: 80% 80%;
2020-09-28 20:19:10 +08:00
}
&-form {
2020-11-26 21:10:21 +08:00
position: relative;
bottom: 60px;
width: 400px;
2020-10-11 00:05:29 +08:00
background: @white;
border: 10px solid rgba(255, 255, 255, 0.5);
border-width: 8px;
2020-10-11 00:05:29 +08:00
border-radius: 4px;
background-clip: padding-box;
2021-01-18 23:37:36 +08:00
&__main {
margin: 30px auto 0 auto !important;
}
2020-10-11 00:05:29 +08:00
&-wrap {
position: absolute;
top: 0;
right: 0;
display: flex;
width: 100%;
2020-11-26 21:10:21 +08:00
height: 100%;
2020-10-11 00:05:29 +08:00
align-items: center;
2020-11-23 00:35:15 +08:00
}
2020-10-11 00:05:29 +08:00
&__content {
2020-11-23 00:35:15 +08:00
position: relative;
2020-10-11 00:05:29 +08:00
width: 100%;
height: 100%;
2020-11-26 21:10:21 +08:00
padding: 60px 0 40px 0;
2020-10-11 00:05:29 +08:00
border: 1px solid #999;
border-radius: 2px;
header {
display: flex;
justify-content: center;
align-items: center;
img {
display: inline-block;
width: 48px;
2020-10-11 00:05:29 +08:00
}
h1 {
margin-bottom: 0;
font-size: 24px;
text-align: center;
}
}
form {
width: 80%;
}
}
2020-09-28 20:19:10 +08:00
}
}
</style>