2023-09-20 21:33:11 +08:00
|
|
|
<template>
|
2024-07-18 15:15:29 +08:00
|
|
|
<div class="login-container flex column mc">
|
2024-07-22 03:07:56 +08:00
|
|
|
<div class="title-container fb l-h-32 flex mac">
|
2025-06-27 16:29:35 +08:00
|
|
|
<font class="f1 f-s-22">鲲鹏堂 / KPT-SP</font>
|
2023-09-20 21:33:11 +08:00
|
|
|
<font class="f2 f-s-10 m-l-5" style="vertical-align :top">v.1.0.1</font>
|
|
|
|
</div>
|
|
|
|
<el-form ref="loginForm" :model="loginForm" class="login-form" auto-complete="on" label-position="left">
|
2025-06-27 16:29:35 +08:00
|
|
|
<h3 class="f-s-30 m-b-15 fc">运载无机监管平台</h3>
|
2023-09-20 21:33:11 +08:00
|
|
|
<el-form-item prop="username">
|
|
|
|
<span class="svg-container"><i class="iconfont icon-yonghuziliao f-s-24"></i></span>
|
2024-07-18 15:15:29 +08:00
|
|
|
<el-input ref="username" class="usernameBox" v-model="loginForm.username" placeholder="用户" name="username"
|
|
|
|
type="text" tabindex="1" auto-complete="on" />
|
2023-09-20 21:33:11 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item prop="password">
|
|
|
|
<span class="svg-container">
|
|
|
|
<i class="iconfont icon-suoding f-s-24"></i>
|
|
|
|
</span>
|
|
|
|
<el-input :key="passwordType" ref="password" v-model="loginForm.password" :type="passwordType" placeholder="密码"
|
|
|
|
name="password" tabindex="2" auto-complete="on" @keyup.enter.native="handleLogin" />
|
|
|
|
<span class="show-pwd" @click="showPwd">
|
|
|
|
<i class="f-s-24"
|
|
|
|
:class="passwordType === 'password' ? 'iconfont icon-biyanjing' : 'iconfont icon-yanjing'"></i>
|
|
|
|
</span>
|
|
|
|
</el-form-item>
|
|
|
|
<el-button icon="el-icon-user" :loading="loading" type="primary" style="width:100%;margin-bottom:30px;"
|
2023-11-03 20:57:12 +08:00
|
|
|
@keyup.enter.native="handleLogin" @click.native.prevent="handleLogin">登录</el-button>
|
2023-09-20 21:33:11 +08:00
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'Login',
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
loginForm: {
|
|
|
|
username: '',
|
|
|
|
password: ''
|
|
|
|
},
|
|
|
|
loading: false,
|
|
|
|
passwordType: 'password'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/**
|
|
|
|
* @description: 显示密码
|
|
|
|
*/
|
|
|
|
showPwd () {
|
|
|
|
if (this.passwordType === 'password') {
|
|
|
|
this.passwordType = ''
|
|
|
|
} else {
|
|
|
|
this.passwordType = 'password'
|
|
|
|
}
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs.password.focus()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @description:提交登陆
|
|
|
|
*/
|
|
|
|
handleLogin () {
|
2023-10-18 15:58:44 +08:00
|
|
|
this.$store.dispatch('user/fetchLogin', { username: this.loginForm.username, password: this.loginForm.password })
|
2023-09-20 21:33:11 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
created () {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
$bg: #283443;
|
|
|
|
$light_gray: #fff;
|
|
|
|
$cursor: #fff;
|
|
|
|
|
|
|
|
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
|
|
|
|
.login-container .el-input input {
|
|
|
|
color: $cursor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reset element-ui css */
|
|
|
|
.login-container {
|
|
|
|
.el-input {
|
|
|
|
display: inline-block;
|
|
|
|
height: 47px;
|
|
|
|
width: 85%;
|
|
|
|
|
|
|
|
input {
|
|
|
|
background: transparent;
|
|
|
|
border: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
padding: 12px 5px 12px 15px;
|
|
|
|
color: $light_gray;
|
|
|
|
height: 47px;
|
|
|
|
caret-color: $cursor;
|
|
|
|
|
|
|
|
&:-webkit-autofill {
|
|
|
|
box-shadow: 0 0 0px 1000px $bg inset !important;
|
|
|
|
-webkit-text-fill-color: $cursor !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-form-item {
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #454545;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
$bg: #2d3a4b;
|
|
|
|
$dark_gray: #889aa4;
|
2023-11-10 16:52:17 +08:00
|
|
|
$light_gray: #efefef;
|
2023-09-20 21:33:11 +08:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
color: $light_gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-container {
|
|
|
|
min-height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-color: $bg;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.login-form {
|
|
|
|
position: relative;
|
2024-07-22 03:07:56 +08:00
|
|
|
max-width: 90vw;
|
2024-07-18 15:15:29 +08:00
|
|
|
width: 500px;
|
2023-09-20 21:33:11 +08:00
|
|
|
margin: 0 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tips {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #fff;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
&:first-of-type {
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-container {
|
|
|
|
padding: 6px 5px 6px 15px;
|
|
|
|
color: $dark_gray;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-container {
|
|
|
|
color: $light_gray;
|
2024-07-18 15:15:29 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
left: 20px;
|
2023-09-20 21:33:11 +08:00
|
|
|
|
|
|
|
img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.f2 {
|
|
|
|
vertical-align: top;
|
|
|
|
color: $dark_gray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.show-pwd {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 7px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $dark_gray;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|