项目初始化
This commit is contained in:
480
src/views/login.vue
Normal file
480
src/views/login.vue
Normal file
@@ -0,0 +1,480 @@
|
||||
<template>
|
||||
<div class="loginView" v-loading="loginView">
|
||||
<div class="wrapper-content" v-if="showLogin">
|
||||
<!-- <div class="content-nav">
|
||||
<div class="nav-left">
|
||||
<img src="../assets/logo/logo.png" />
|
||||
<div>多人互动白板</div>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="login-form">
|
||||
<div class="selected-rectangle"></div>
|
||||
<el-form ref="loginRef" class="form-info" :model="loginForm" :rules="loginRules">
|
||||
<h3 class="title">欢迎登录</h3>
|
||||
<el-form-item prop="username">
|
||||
<el-input v-model="loginForm.username" auto-complete="off" placeholder="请输入您的账号" size="large"
|
||||
type="text"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item prop="password">
|
||||
<el-input v-model="loginForm.password" auto-complete="off" placeholder="请输入密码" size="large"
|
||||
type="password" @keyup.enter="handleLogin"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button :loading="loading" size="large" class="button-login" type="primary"
|
||||
@click.prevent="handleLogin">
|
||||
<span v-if="!loading">登 录</span>
|
||||
<span v-else>登录中...</span>
|
||||
</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<!-- 底部 -->
|
||||
<!-- <div class="el-login-footer">
|
||||
<span>{{ $t('Copyright') }}</span>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import useUserStore from '@/stores/modules/user'
|
||||
import { watch, ref, getCurrentInstance, onMounted } from 'vue'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { ElNotification } from 'element-plus'
|
||||
import { getInfo } from "@/api/login";
|
||||
|
||||
const userStore = useUserStore()
|
||||
const router = useRouter()
|
||||
const route = useRoute()
|
||||
const { proxy } = getCurrentInstance()
|
||||
const showLogin = ref(false)
|
||||
|
||||
const redirect = ref(undefined);
|
||||
const loginView = ref(false)
|
||||
|
||||
watch(() => router.currentRoute.value, (newRoute) => {
|
||||
redirect.value = newRoute.query && newRoute.query.redirect;
|
||||
}, { immediate: true });
|
||||
|
||||
const loginForm = ref({
|
||||
username: '',
|
||||
password: '',
|
||||
})
|
||||
|
||||
const loginRules = {
|
||||
username: [{ required: true, trigger: 'blur', message: '请输入用户名' }],
|
||||
password: [{ required: true, trigger: 'blur', message: '请输入密码' }],
|
||||
}
|
||||
|
||||
const loading = ref(false)
|
||||
|
||||
|
||||
function handleLogin() {
|
||||
proxy.$refs.loginRef.validate((valid) => {
|
||||
if (valid) {
|
||||
loading.value = true
|
||||
// 调用action的登录方法
|
||||
userStore
|
||||
.login({
|
||||
password: loginForm.value.password,
|
||||
username: loginForm.value.username,
|
||||
})
|
||||
.then(async (res) => {
|
||||
const userInfo = JSON.parse(localStorage.getItem('userData'))
|
||||
router.push({
|
||||
path: '/whiteboard',
|
||||
query: { room_uid: 'nxst-ok4j' }
|
||||
})
|
||||
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log('登录失败', e)
|
||||
loading.value = false
|
||||
})
|
||||
}
|
||||
})
|
||||
requestNotificationPermission()
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 请求浏览器的通知权限
|
||||
* @returns {*}
|
||||
*/
|
||||
function requestNotificationPermission() {
|
||||
if ('Notification' in window) {
|
||||
Notification.requestPermission().then(() => { })
|
||||
} else {
|
||||
console.log('浏览器不支持通知')
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
onMounted(async () => {
|
||||
try {
|
||||
loginView.value = true
|
||||
await getInfo("self");
|
||||
showLogin.value = false;
|
||||
router.push({
|
||||
path: '/whiteboard',
|
||||
query: { room_uid: 'nxst-ok4j' }
|
||||
})
|
||||
loginView.value = false
|
||||
} catch (err) {
|
||||
if (err.code === 401) {
|
||||
showLogin.value = true;
|
||||
} else {
|
||||
showLogin.value = false;
|
||||
console.warn("⚠️ 用户信息校验失败:", err);
|
||||
}
|
||||
} finally {
|
||||
loginView.value = false
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.loginView {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.wrapper-content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
background-image: url('@/assets/images/loginBg.png');
|
||||
background-size: cover;
|
||||
padding: 0 50px;
|
||||
|
||||
.content-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 1111;
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
box-shadow: 0px 2px 5px 0px rgba(153, 153, 153, 0.2);
|
||||
padding: 0 35px;
|
||||
background-color: #fff;
|
||||
|
||||
.nav-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #fff;
|
||||
box-sizing: border-box;
|
||||
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
div {
|
||||
padding-left: 12px;
|
||||
font-size: 22px;
|
||||
color: #051435;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-input__wrapper) {
|
||||
border-radius: 35px;
|
||||
background: #f5f7fa;
|
||||
font-size: 18px;
|
||||
border: 1px solid #c9d4e6;
|
||||
color: #051435;
|
||||
padding: 0 30px;
|
||||
|
||||
input {
|
||||
height: 50px;
|
||||
color: #051435;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-form-item__error) {
|
||||
font-size: 15px;
|
||||
font-weight: 20px;
|
||||
}
|
||||
|
||||
// ::v-deep .el-input__inner::placeholder {
|
||||
// color: #051435;
|
||||
// }
|
||||
|
||||
.login-form {
|
||||
border-radius: 20px;
|
||||
width: 600px;
|
||||
height: 600px;
|
||||
background-color: rgba(255, 255, 255, .3);
|
||||
background-size: cover;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
position: relative;
|
||||
|
||||
.selected-rectangle {
|
||||
width: 24px;
|
||||
height: 20px;
|
||||
border: 4px solid white;
|
||||
border-radius: 4px;
|
||||
position: absolute;
|
||||
top: -11px;
|
||||
left: 290px;
|
||||
animation: floatRotate 2s ease-in-out infinite;
|
||||
transform-origin: center center;
|
||||
}
|
||||
|
||||
@keyframes floatRotate {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
25% {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.el-login-footer {
|
||||
position: absolute;
|
||||
bottom: -30px;
|
||||
left: -5%;
|
||||
width: 110%;
|
||||
text-align: center;
|
||||
color: #687898;
|
||||
font-family: Arial;
|
||||
font-size: 16px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.form-info {
|
||||
margin-right: 50px;
|
||||
width: 550px;
|
||||
height: 530px;
|
||||
border-radius: 25px;
|
||||
padding: 75px 50px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.el-form-item {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
margin: 0 auto;
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
color: #051435;
|
||||
line-height: 32px;
|
||||
}
|
||||
|
||||
.button-login {
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
margin-top: 35px;
|
||||
border-radius: 35px;
|
||||
font-size: 22px;
|
||||
background: #00C8C4;
|
||||
color: #fff;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.button-ok {
|
||||
width: 100%;
|
||||
margin-top: 35px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #fff;
|
||||
height: 30px;
|
||||
cursor: pointer;
|
||||
|
||||
img {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-left: 13px;
|
||||
font-size: 16px;
|
||||
color: #687898;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-input) {
|
||||
height: 70px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.input-icon {
|
||||
height: 40px;
|
||||
width: 32px;
|
||||
margin-left: 0px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 765px) {
|
||||
.wrapper-content {
|
||||
padding: 0 20px;
|
||||
|
||||
.content-nav {
|
||||
height: 60px;
|
||||
padding: 0 15px;
|
||||
|
||||
.nav-left {
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
div {
|
||||
padding-left: 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-input__wrapper) {
|
||||
padding: 0 30px;
|
||||
|
||||
input {
|
||||
height: 40px;
|
||||
color: #051435;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
// ::v-deep .el-input__inner::placeholder {
|
||||
// color: #051435;
|
||||
// }
|
||||
.login-form {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
padding: 60px 30px;
|
||||
height: auto;
|
||||
|
||||
.selected-rectangle {
|
||||
width: 24px;
|
||||
height: 20px;
|
||||
border: 4px solid white;
|
||||
border-radius: 4px;
|
||||
position: absolute;
|
||||
top: -11px;
|
||||
left: 170px;
|
||||
animation: floatRotate 2s ease-in-out infinite;
|
||||
transform-origin: center center;
|
||||
}
|
||||
|
||||
.el-login-footer {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-info {
|
||||
margin-right: 0;
|
||||
width: 300px;
|
||||
height: 400px;
|
||||
background: #ffffff;
|
||||
padding: 25px;
|
||||
height: auto;
|
||||
|
||||
.el-form-item {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
margin: 0 auto;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
color: #051435;
|
||||
line-height: 32px;
|
||||
}
|
||||
|
||||
.button-login {
|
||||
height: 40px;
|
||||
margin-top: 20px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.button-ok {
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #fff;
|
||||
height: 30px;
|
||||
cursor: pointer;
|
||||
|
||||
img {
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-input) {
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.input-icon {
|
||||
height: 40px;
|
||||
width: 32px;
|
||||
margin-left: 0px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.home-link.modern {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 8px 12px;
|
||||
color: #606266;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
||||
}
|
||||
|
||||
.home-link.modern:hover {
|
||||
color: #409EFF;
|
||||
background-color: rgba(64, 158, 255, 0.1);
|
||||
}
|
||||
|
||||
.home-link.modern i {
|
||||
font-size: 16px;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.home-link.modern:hover i {
|
||||
transform: translateX(-2px);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user