Login.vue
3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<template>
<el-form :model="ruleForm2" :rules="rules2" ref="ruleForm2" label-position="left" label-width="0px" class="demo-ruleForm login-container">
<h3 class="title">系统登录</h3>
<el-form-item prop="account">
<el-input type="text" v-model="ruleForm2.account" auto-complete="off" placeholder="账号"></el-input>
</el-form-item>
<el-form-item prop="checkPass">
<el-input type="password" v-model="ruleForm2.checkPass" auto-complete="off" placeholder="密码"></el-input>
</el-form-item>
<el-checkbox v-model="checked" checked class="remember">记住密码</el-checkbox>
<el-form-item style="width:100%;">
<el-button type="primary" style="width:100%;" @click.native.prevent="handleSubmit2" :loading="logining">登录</el-button>
<!--<el-button @click.native.prevent="handleReset2">重置</el-button>-->
</el-form-item>
</el-form>
</template>
<script>
import { requestLogin } from "../api/api";
import NProgress from "nprogress";
export default {
data() {
return {
logining: false,
ruleForm2: {
account: "admin",
checkPass: "123456"
},
rules2: {
account: [
{ required: true, message: "请输入账号", trigger: "blur" }
//{ validator: validaePass }
],
checkPass: [
{ required: true, message: "请输入密码", trigger: "blur" }
//{ validator: validaePass2 }
]
},
checked: true
};
},
methods: {
handleReset2() {
this.$refs.ruleForm2.resetFields();
},
handleSubmit2(ev) {
var _this = this
this.$refs.ruleForm2.validate(valid => {
if (valid) {
//_this.$router.replace('/table');
// this.logining = true
// NProgress.start()
var loginParams = {
username: this.ruleForm2.account,
password: this.ruleForm2.checkPass
}
if (
loginParams.username == 'admin' &&
loginParams.password == '123456'
) {
let user = loginParams
sessionStorage.setItem('user', JSON.stringify(user))
this.$router.push({ path: "/" })
} else {
this.$notify({
title: '错误',
message: '密码错误',
type: 'error'
})
}
// requestLogin(loginParams).then(data => {
// this.logining = false;
// NProgress.done();
// let { msg, code, user } = data;
// if (code !== 200) {
// this.$notify({
// title: "错误",
// message: msg,
// type: "error"
// });
// } else {
// sessionStorage.setItem("user", JSON.stringify(user));
// this.$router.push({ path: "/" });
// }
// });
} else {
console.log('error submit!!')
return false
}
})
}
}
};
</script>
<style lang="less" scoped>
.login-container {
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-border-radius: 5px;
background-clip: padding-box;
margin-bottom: 20px;
background-color: #f9fafc;
margin: 180px auto;
border: 2px solid #8492a6;
width: 350px;
padding: 35px 35px 15px 35px;
.title {
margin: 0px auto 40px auto;
text-align: center;
color: #505458;
}
.remember {
margin: 0px 0px 35px 0px;
}
}
</style>