You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/views/Login.vue

259 lines
7.1 KiB
Vue

2 years ago
<template>
<div class="login-wrap">
2 years ago
<p class="blurBox"></p>
2 years ago
<div class="loginFilter">
2 years ago
<div class="leftPic">
<h3>视频监控可视化平台</h3>
<p>Video surveillance visualization platform</p>
</div>
2 years ago
<div class="ms-login">
<div class="ms-title">
2 years ago
<h3>登录</h3>
2 years ago
</div>
2 years ago
<el-form
:model="userInfo"
:rules="rules"
ref="loginForm"
label-width="0px"
class="ms-content"
size="medium"
>
<el-form-item prop="userName">
<el-input v-model="userInfo.userName" placeholder="用户名">
2 years ago
<el-button slot="prepend" icon="el-icon-user"></el-button>
</el-input>
</el-form-item>
<el-form-item prop="password">
<el-input
type="password"
placeholder="密码"
show-password
v-model="userInfo.password"
@keyup.enter.native="submitForm()"
>
<el-button slot="prepend" icon="el-icon-lock"></el-button>
</el-input>
</el-form-item>
2 years ago
<!-- <el-form-item prop="verificationCode" class="verifyItem">
<el-input
v-model="userInfo.verificationCode"
placeholder="请输入验证码"
>
<el-button slot="prepend" icon="el-icon-unlock"></el-button>
</el-input>
<div @click="refreshCode" class="verifyBox">
2 years ago
<s-identify :identifyCode="identifyCode"></s-identify>
</div>
2 years ago
</el-form-item> -->
2 years ago
<div class="login-btn">
<el-button type="primary" @click="submitForm()"></el-button>
</div>
<!-- <p class="login-tips">Tips : 用户名和密码随便填</p> -->
</el-form>
</div>
2 years ago
</div>
<p class="webInfo">© 2023 视频监控可视化平台.All right reserved.</p>
</div>
2 years ago
</template>
<script>
import { mapMutations } from "vuex";
2 years ago
import { loginJoggle } from "@/utils/api/index";
//import SIdentify from "./components/SIdentify";
2 years ago
export default {
components: {
2 years ago
//SIdentify,
},
data: function () {
return {
2 years ago
userInfo: {
userName: "",
password: "",
2 years ago
//verificationCode: "",
},
rules: {
userName: [
{ required: true, message: "请输入用户名", trigger: "blur" },
],
password: [
{ required: true, message: "请输入密码", trigger: "blur" },
2 years ago
{ min: 6, max: 8, message: "请输入6-8位字符", trigger: "blur" },
],
2 years ago
// verificationCode: [
// { required: true, message: "验证码不能为空", trigger: "blur" },
// ],
},
2 years ago
token: "",
2 years ago
// identifyCode: "",
// identifyCodes: "1234567890abcdefjhijklinopqrsduvwxyz",
};
},
2 years ago
computed: {
...mapMutations(["SET_TOKEN", "SET_USERINFO"]),
},
methods: {
submitForm() {
2 years ago
this.$refs.loginForm.validate((valid) => {
if (valid) {
2 years ago
// this.userInfo.password = this.$md5(this.userInfo.password); //密码加密
2 years ago
// this.$store.commit("SET_TOKEN", "asdadadadadsadas"); //将token保存在vuex中
// this.$store.commit("SET_USERINFO", "xytest"); //将用户信息保存在vuex中
// this.$router.push("/realTimeMonitor");
// this.$message.success("登录成功");
loginJoggle(this.userInfo)
.then((res) => {
if (res.code == 200) {
this.$store.commit("SET_TOKEN", res.data.sessionId); //将token保存在vuex中
this.$store.commit("SET_USERINFO", res.data); //将用户信息保存在vuex中
this.$router.push("/realTimeMonitor");
2 years ago
this.$message({
showClose: true,
message: "登录成功",
type: "success",
});
2 years ago
} else {
this.$message.error(res.msg);
}
})
.catch((err) => {});
} else {
this.$message.error("请输入账号和密码");
console.log("error submit!!");
return false;
2 years ago
}
});
2 years ago
},
getLogin() {},
// 刷新验证码
2 years ago
// refreshCode() {
// this.identifyCode = "";
// this.makeCode(this.identifyCodes, 4);
// },
// makeCode(o, l) {
// for (let i = 0; i < l; i++) {
// this.identifyCode +=
// this.identifyCodes[this.randomNum(0, this.identifyCodes.length)];
// }
// },
// randomNum(min, max) {
// return Math.floor(Math.random() * (max - min) + min);
// },
},
2 years ago
created() {},
mounted() {
// 初始化验证码
2 years ago
// this.identifyCode = "";
// this.makeCode(this.identifyCodes, 4);
},
2 years ago
};
</script>
<style lang="less">
2 years ago
.login-wrap {
position: relative;
width: 100%;
height: 100%;
2 years ago
background: url(../assets/img/logo.jpg) no-repeat center center;
background-size: cover;
2 years ago
overflow: hidden;
2 years ago
.blurBox {
position: absolute;
2 years ago
width: 100%;
2 years ago
height: 100%;
2 years ago
background: rgba(0, 0, 0, 0.6);
2 years ago
}
.loginFilter {
2 years ago
width: 800px;
height: 450px;
2 years ago
background: #fff;
2 years ago
box-shadow: 0px 4px 12px 0px rgba(51, 51, 51, 0.15);
2 years ago
border-radius: 20px;
2 years ago
left: 50%;
top: 50%;
transform: translate(-50%;-50%);
position: absolute;
2 years ago
display: flex;
2 years ago
overflow: hidden;
.leftPic {
width: 50%;
background: url(../assets/img/logo.jpg);
background-size: 120% 100%;
position: relative;
h3 {
font-size: 30px;
text-align: center;
margin-top: 60px;
color: #fff;
font-weight: normal;
}
p {
color: #fff;
text-align: center;
font-size: 12px;
margin-top: 8px;
}
}
2 years ago
.ms-login {
2 years ago
width: 50%;
height: 448px;
2 years ago
border-radius: 5px;
overflow: hidden;
background-size: 100%;
2 years ago
//background: @color-white;
2 years ago
.ms-title {
text-align: center;
2 years ago
//border-bottom: 1px solid #dcdfe6;
2 years ago
padding: 40px 16px;
2 years ago
h3 {
font-size: 30px;
2 years ago
//background: linear-gradient(0deg, #86b7ff, #4293fd 99.46289%);
// background-clip: text;
color: @color-text-primary;
font-weight: normal;
2 years ago
}
2 years ago
}
2 years ago
.ms-content {
padding: 40px 40px;
.el-form-item {
margin-bottom: 30px;
}
.verifyItem {
.el-form-item__content {
display: flex;
align-items: center;
justify-content: space-between;
}
}
2 years ago
.login-btn {
text-align: center;
button {
width: 100%;
height: 36px;
margin-bottom: 10px;
}
}
}
2 years ago
// .login-tips {
// font-size: 12px;
// line-height: 30px;
// color: @color-white;
// }
}
}
2 years ago
.webInfo {
bottom: 5%;
left: 50%;
transform: translate(-50%;-50%);
position: absolute;
font-size: 12px;
font-weight: 400;
color: @color-white;
}
2 years ago
}
</style>