Files
admin-govern/src/views/user/login.vue

290 lines
7.7 KiB
Vue
Raw Normal View History

2023-12-22 10:22:22 +08:00
<template>
2024-01-29 13:57:52 +08:00
<div @keyup.enter="onSubmit(formRef)">
<div @contextmenu.stop="" id="bubble" class="bubble">
<canvas id="bubble-canvas" class="bubble-canvas"></canvas>
2023-12-26 09:51:16 +08:00
</div>
2024-01-29 13:57:52 +08:00
<div class="login-image"></div>
<div class="login-container-form">
<div class="title-container">
<div class="title">
<span style="font-size: 28px">电能质量数据监测云平台</span>
2023-12-22 10:22:22 +08:00
</div>
2023-12-26 08:45:15 +08:00
</div>
2024-01-29 13:57:52 +08:00
<el-form :rules="rules" ref="formRef" size="large" class="login-form" :model="form">
<el-form-item prop="username">
2024-10-17 15:48:11 +08:00
<el-input ref="usernameRef" v-model="form.username" type="text" clearable style="width: 368px"
placeholder="用户名" autocomplete="off">
2023-12-26 09:51:16 +08:00
<template #prefix>
2024-01-29 13:57:52 +08:00
<span class="iconfont icon-yonghu" style="color: #003078"></span>
2023-12-26 09:51:16 +08:00
</template>
</el-input>
</el-form-item>
2024-01-29 13:57:52 +08:00
<el-form-item prop="password">
2024-10-17 15:48:11 +08:00
<el-input ref="passwordRef" v-model="form.password" type="password" placeholder="密码" show-password
style="width: 368px" autocomplete="off">
2023-12-26 09:51:16 +08:00
<template #prefix>
2024-01-29 13:57:52 +08:00
<span class="iconfont icon-mima" style="color: #003078"></span>
2023-12-26 09:51:16 +08:00
</template>
</el-input>
</el-form-item>
<el-form-item>
2024-10-17 15:48:11 +08:00
<el-button :loading="state.submitLoading" class="submit-btn" round style="width: 368px" type="info"
@click="onSubmit(formRef)">
2023-12-26 09:51:16 +08:00
登录
</el-button>
</el-form-item>
</el-form>
</div>
2024-01-29 13:57:52 +08:00
<div class="copy-right">
2023-12-26 09:51:16 +08:00
<span>版权所有 @ 南京灿能电力自动化股份有限公司</span>
<br />
2024-01-29 13:57:52 +08:00
<img style="width: 20px; height: 20px; position: absolute" src="@/assets/login/jhui.png" />
2023-12-26 08:45:15 +08:00
2023-12-26 09:51:16 +08:00
<span>  苏公网安备 32011502011902</span>
2023-12-22 10:22:22 +08:00
</div>
2024-01-29 13:57:52 +08:00
<PopupUpdatePwd ref="popupUpdatePwdRef"></PopupUpdatePwd>
2023-12-22 10:22:22 +08:00
</div>
</template>
2024-01-29 13:57:52 +08:00
<script setup lang="ts">
2023-12-22 10:22:22 +08:00
import { onMounted, onBeforeUnmount, reactive, ref, nextTick } from 'vue'
import * as pageBubble from '@/utils/pageBubble'
2023-12-26 09:51:16 +08:00
import { ElMessage } from 'element-plus'
2024-01-22 14:21:31 +08:00
import { gongkey, login } from '@/api/user-boot/user'
2023-12-26 09:51:16 +08:00
import { useAdminInfo } from '@/stores/adminInfo'
2023-12-26 08:45:15 +08:00
import type { FormInstance, InputInstance, FormRules } from 'element-plus'
2023-12-26 09:51:16 +08:00
import { useRouter } from 'vue-router'
2024-01-03 14:04:56 +08:00
import { ADMIN_INFO } from '@/stores/constant/cacheKey'
import { Local } from '@/utils/storage'
2024-01-29 13:57:52 +08:00
import PopupUpdatePwd from './popupUpdatePwd.vue'
2024-01-29 14:57:49 +08:00
import { encrypt } from '@/assets/commjs/sm2.js';
2024-01-25 11:04:07 +08:00
2023-12-26 09:51:16 +08:00
const router = useRouter()
2023-12-22 10:22:22 +08:00
let timer: number
2024-01-29 13:57:52 +08:00
const popupUpdatePwdRef = ref()
2023-12-22 10:22:22 +08:00
const formRef = ref<FormInstance>()
const usernameRef = ref<InputInstance>()
const passwordRef = ref<InputInstance>()
2024-01-03 14:04:56 +08:00
const userInfo = useAdminInfo()
Local.remove(ADMIN_INFO)
userInfo.removeToken()
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
interface RuleForm {
username: string
password: string
}
2024-01-25 11:04:07 +08:00
2023-12-22 10:22:22 +08:00
const state = reactive({
showCaptcha: false,
submitLoading: false
})
const form = reactive({
username: '',
2023-12-26 08:45:15 +08:00
password: ''
2023-12-22 10:22:22 +08:00
})
2023-12-26 08:45:15 +08:00
const rules = reactive<FormRules<RuleForm>>({
username: [{ required: true, trigger: 'blur', message: '请输入用户名' }],
password: [{ required: true, trigger: 'blur', message: '请输入密码' }]
})
2023-12-22 10:22:22 +08:00
const focusInput = () => {
if (form.username === '') {
usernameRef.value!.focus()
} else if (form.password === '') {
passwordRef.value!.focus()
}
}
onMounted(() => {
timer = window.setTimeout(() => {
pageBubble.init()
2023-12-26 08:45:15 +08:00
}, 0)
2023-12-22 10:22:22 +08:00
})
onBeforeUnmount(() => {
clearTimeout(timer)
pageBubble.removeListeners()
})
2023-12-26 08:45:15 +08:00
const onSubmit = async (formEl: FormInstance | undefined) => {
if (!formEl) return
await formEl.validate((valid, fields) => {
if (valid) {
2023-12-26 09:51:16 +08:00
state.submitLoading = true
2024-01-29 14:57:49 +08:00
login({
username: form.username,
password: form.password,
grant_type: 'captcha',
imageCode: '',
verifyCode: 0
2023-12-26 08:45:15 +08:00
})
2024-01-29 14:57:49 +08:00
.then(res => {
userInfo.dataFill(res.data)
state.submitLoading = false
router.push({
path: '/'
})
})
.catch(err => {
if (err.code === 'A0101' && err.message === '登录认证,密码失效,请重置') {
popupUpdatePwdRef.value.open(form.username)
}
})
2023-12-27 15:06:23 +08:00
setTimeout(() => {
state.submitLoading = false
}, 500)
2023-12-26 08:45:15 +08:00
}
})
2023-12-22 10:22:22 +08:00
}
</script>
2024-01-29 13:57:52 +08:00
<style scoped lang="scss">
2023-12-22 10:22:22 +08:00
.bubble {
2023-12-26 08:45:15 +08:00
position: relative;
width: 100%;
min-height: 100%;
2023-12-22 10:22:22 +08:00
overflow: hidden;
2023-12-26 08:45:15 +08:00
background-color: #003078 !important;
background-position: center 110px;
background-repeat: repeat;
background-size: 100%;
background-image: url(https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg);
}
.login-image {
position: absolute;
top: 50%;
left: 20%;
2023-12-26 09:51:16 +08:00
min-width: 45%;
min-height: 80%;
2023-12-26 08:45:15 +08:00
background: url('../../assets/login/login2.png') no-repeat center center;
background-size: contain;
transform: translate(-15%, -50%);
// box-shadow: 0 0 0 #011b2bab;
2023-12-22 10:22:22 +08:00
}
.form-item-icon {
height: auto;
}
2023-12-26 08:45:15 +08:00
.login-container-form {
2023-12-22 10:22:22 +08:00
position: absolute;
2023-12-26 08:45:15 +08:00
top: 50%;
left: 85%;
width: 500px;
height: auto;
border-radius: 30px;
transform: translate(-85%, -50%);
box-shadow: 3px 3px 2px 2px #011b2bab;
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.title-container {
position: relative;
width: 398px;
max-width: 100%;
padding: 20px 0 0;
margin: 0 auto;
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.title {
margin-bottom: 20px;
font-size: 33px;
font-weight: 600;
color: rgba(255, 255, 255, 0.85);
text-align: center;
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
& :v-deep .svg-icon {
// color: $;
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.logo {
width: 46px;
height: 46px;
margin-right: 10px;
vertical-align: middle;
}
2023-12-22 10:22:22 +08:00
}
}
2023-12-26 08:45:15 +08:00
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.login-form {
position: relative;
width: 368px;
max-width: 100%;
//padding: 20px 0 0;
margin: 0 auto;
margin-bottom: 20px;
overflow: hidden;
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
&.el-input {
input {
height: 40px;
padding-right: 40px;
padding-left: 40px;
line-height: 40px;
border-radius: 5px;
2023-12-22 10:22:22 +08:00
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.el-input__prefix,
.el-input__suffix {
width: 40px;
line-height: 40px;
2023-12-22 10:22:22 +08:00
2023-12-26 08:45:15 +08:00
.svg-icon {
font-size: 16px;
vertical-align: -0.25em;
}
2023-12-22 10:22:22 +08:00
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.el-input__prefix {
left: 0;
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.el-input__suffix {
right: 0;
2023-12-22 10:22:22 +08:00
}
}
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.copy-right {
position: absolute;
bottom: 10px;
width: 100%;
font-size: 14px;
color: rgb(233, 229, 229);
text-align: center;
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
:v-deep.el-form-item--large {
margin-bottom: 15px;
}
2024-01-25 11:04:07 +08:00
2023-12-26 08:45:15 +08:00
.submit-btn {
width: 100%;
margin-top: 0px;
margin-bottom: 20px;
background: #4d6ea1;
border-radius: 0;
}
2024-01-25 11:04:07 +08:00
2023-12-22 10:22:22 +08:00
@media screen and (max-width: 720px) {
.login {
display: flex;
align-items: center;
justify-content: center;
.login-box {
width: 340px;
margin-top: 0;
}
}
}
@media screen and (max-height: 800px) {
.login .login-box {
margin-bottom: 0;
}
}
</style>