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

233 lines
6.4 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">
<div class="login-mask" />
<div class="login-form-wrap">
<div class="login-form mx-6">
<div class="login-form__content px-2 py-10">
<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>
2020-10-11 00:05:29 +08:00
<a-form class="mx-auto mt-10" :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-form-item name="verify" v-if="openLoginVerify">
2020-09-28 20:19:10 +08:00
<BasicDragVerify v-model:value="formData.verify" ref="verifyRef" />
</a-form-item> -->
<a-row>
<a-col :span="12">
<a-form-item>
<!-- 未做逻辑需要自行处理 -->
<a-checkbox v-model:checked="autoLogin" size="small">自动登录</a-checkbox>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item :style="{ 'text-align': 'right' }">
<!-- 未做逻辑需要自行处理 -->
<a-button type="link" size="small">忘记密码</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"
>登录</a-button
>
</a-form-item>
</a-form>
</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import {
defineComponent,
reactive,
ref,
unref,
toRaw,
// computed
} from 'vue';
import { Checkbox } from 'ant-design-vue';
import Button from '/@/components/Button/index.vue';
// import { BasicDragVerify, DragVerifyActionType } from '/@/components/Verify/index';
2020-09-28 20:19:10 +08:00
import { userStore } from '/@/store/modules/user';
// import { appStore } from '/@/store/modules/app';
2020-09-28 20:19:10 +08:00
import { useMessage } from '/@/hooks/web/useMessage';
2020-10-11 00:05:29 +08:00
import { useSetting } from '/@/hooks/core/useSetting';
2020-11-03 21:00:14 +08:00
import logo from '/@/assets/images/logo.png';
2020-09-28 20:19:10 +08:00
export default defineComponent({
components: {
// BasicDragVerify,
AButton: Button,
ACheckbox: Checkbox,
},
2020-09-28 20:19:10 +08:00
setup() {
const formRef = ref<any>(null);
const autoLoginRef = ref(false);
// const verifyRef = ref<RefInstanceType<DragVerifyActionType>>(null);
2020-10-11 00:05:29 +08:00
const { globSetting } = useSetting();
2020-09-28 20:19:10 +08:00
const { notification } = useMessage();
// const openLoginVerifyRef = computed(() => appStore.getProjectConfig.openLoginVerify);
2020-09-28 20:19:10 +08:00
const formData = reactive({
2020-10-15 23:08:44 +08:00
account: 'vben',
password: '123456',
// verify: undefined,
2020-09-28 20:19:10 +08:00
});
const formState = reactive({
loading: false,
});
const formRules = reactive({
account: [{ required: true, message: '请输入账号', trigger: 'blur' }],
password: [{ required: true, message: '请输入密码', trigger: 'blur' }],
// verify: unref(openLoginVerifyRef) ? [{ required: true, message: '请通过验证码校验' }] : [],
2020-09-28 20:19:10 +08:00
});
// function resetVerify() {
// const verify = unref(verifyRef);
// if (!verify) return;
// formData.verify && verify.$.resume();
// formData.verify = undefined;
// }
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({
message: '登录成功',
description: `欢迎回来: ${userInfo.realName}`,
duration: 3,
});
}
} catch (error) {
} finally {
// resetVerify();
2020-09-28 20:19:10 +08:00
formState.loading = false;
}
}
return {
formRef,
// verifyRef,
2020-09-28 20:19:10 +08:00
formData,
formState,
formRules,
login: handleLogin,
autoLogin: autoLoginRef,
// openLoginVerify: openLoginVerifyRef,
2020-10-11 00:05:29 +08:00
title: globSetting && globSetting.title,
2020-11-03 21:00:14 +08:00
logo,
2020-09-28 20:19:10 +08:00
};
},
});
</script>
<style lang="less" scoped>
2020-10-11 00:05:29 +08:00
@import (reference) '../../../design/index.less';
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
display: none;
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-10-11 00:05:29 +08:00
.respond-to(xlarge, { display: block;});
2020-09-28 20:19:10 +08:00
}
&-form {
width: 520px;
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;
.respond-to(xlarge, { margin: 0 120px 0 50px});
2020-10-11 00:05:29 +08:00
&-wrap {
position: absolute;
top: 0;
right: 0;
display: flex;
width: 100%;
height: 90%;
2020-10-11 00:05:29 +08:00
justify-content: center;
align-items: center;
.respond-to(large, {
width: 600px;
2020-11-10 22:45:39 +08:00
right: calc(50% - 270px);
});
2020-11-10 22:45:39 +08:00
.respond-to(xlarge, { width: 540px; right:0});
2020-10-11 00:05:29 +08:00
}
&__content {
width: 100%;
height: 100%;
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;
// color: @primary-color;
2020-10-11 00:05:29 +08:00
text-align: center;
}
}
form {
width: 80%;
}
}
2020-09-28 20:19:10 +08:00
}
}
</style>