|
|
@@ -9,7 +9,7 @@
|
|
|
auto-complete="off"
|
|
|
placeholder="账号"
|
|
|
>
|
|
|
- <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
|
|
+ <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon"/>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="password">
|
|
|
@@ -20,7 +20,7 @@
|
|
|
placeholder="密码"
|
|
|
@keyup.enter.native="handleLogin"
|
|
|
>
|
|
|
- <svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
|
|
|
+ <svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon"/>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="code" v-if="captchaOnOff">
|
|
|
@@ -31,7 +31,7 @@
|
|
|
style="width: 63%"
|
|
|
@keyup.enter.native="handleLogin"
|
|
|
>
|
|
|
- <svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon" />
|
|
|
+ <svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon"/>
|
|
|
</el-input>
|
|
|
<div class="login-code">
|
|
|
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
|
|
|
@@ -62,97 +62,101 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { getCodeImg } from "@/api/login";
|
|
|
-import Cookies from "js-cookie";
|
|
|
+import { getCodeImg } from '@/api/login'
|
|
|
+import Cookies from 'js-cookie'
|
|
|
import { encrypt, decrypt } from '@/utils/jsencrypt'
|
|
|
|
|
|
export default {
|
|
|
- name: "Login",
|
|
|
+ name: 'Login',
|
|
|
data() {
|
|
|
return {
|
|
|
- codeUrl: "",
|
|
|
+ codeUrl: '',
|
|
|
loginForm: {
|
|
|
- username: "admin",
|
|
|
- password: "admin123",
|
|
|
+ username: 'admin',
|
|
|
+ password: 'admin123',
|
|
|
rememberMe: false,
|
|
|
- code: "",
|
|
|
- uuid: ""
|
|
|
+ code: '',
|
|
|
+ uuid: ''
|
|
|
},
|
|
|
loginRules: {
|
|
|
username: [
|
|
|
- { required: true, trigger: "blur", message: "请输入您的账号" }
|
|
|
+ { required: true, trigger: 'blur', message: '请输入您的账号' }
|
|
|
],
|
|
|
password: [
|
|
|
- { required: true, trigger: "blur", message: "请输入您的密码" }
|
|
|
+ { required: true, trigger: 'blur', message: '请输入您的密码' }
|
|
|
],
|
|
|
- code: [{ required: true, trigger: "change", message: "请输入验证码" }]
|
|
|
+ code: [{ required: true, trigger: 'change', message: '请输入验证码' }]
|
|
|
},
|
|
|
loading: false,
|
|
|
// 验证码开关
|
|
|
- captchaOnOff: true,
|
|
|
+ captchaOnOff: false,
|
|
|
// 注册开关
|
|
|
register: false,
|
|
|
redirect: undefined
|
|
|
- };
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
$route: {
|
|
|
handler: function(route) {
|
|
|
- this.redirect = route.query && route.query.redirect;
|
|
|
+ this.redirect = route.query && route.query.redirect
|
|
|
},
|
|
|
immediate: true
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- this.getCode();
|
|
|
- this.getCookie();
|
|
|
+ this.getCode()
|
|
|
+ this.getCookie()
|
|
|
},
|
|
|
methods: {
|
|
|
getCode() {
|
|
|
+ if (!this.captchaOnOff) {
|
|
|
+ return
|
|
|
+ }
|
|
|
getCodeImg().then(res => {
|
|
|
- this.captchaOnOff = res.captchaOnOff === undefined ? true : res.captchaOnOff;
|
|
|
+ this.captchaOnOff = res.captchaOnOff === undefined ? true : res.captchaOnOff
|
|
|
if (this.captchaOnOff) {
|
|
|
- this.codeUrl = "data:image/gif;base64," + res.img;
|
|
|
- this.loginForm.uuid = res.uuid;
|
|
|
+ this.codeUrl = 'data:image/gif;base64,' + res.img
|
|
|
+ this.loginForm.uuid = res.uuid
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
getCookie() {
|
|
|
- const username = Cookies.get("username");
|
|
|
- const password = Cookies.get("password");
|
|
|
+ const username = Cookies.get('username')
|
|
|
+ const password = Cookies.get('password')
|
|
|
const rememberMe = Cookies.get('rememberMe')
|
|
|
this.loginForm = {
|
|
|
username: username === undefined ? this.loginForm.username : username,
|
|
|
password: password === undefined ? this.loginForm.password : decrypt(password),
|
|
|
rememberMe: rememberMe === undefined ? false : Boolean(rememberMe)
|
|
|
- };
|
|
|
+ }
|
|
|
},
|
|
|
handleLogin() {
|
|
|
this.$refs.loginForm.validate(valid => {
|
|
|
if (valid) {
|
|
|
- this.loading = true;
|
|
|
+ this.loading = true
|
|
|
if (this.loginForm.rememberMe) {
|
|
|
- Cookies.set("username", this.loginForm.username, { expires: 30 });
|
|
|
- Cookies.set("password", encrypt(this.loginForm.password), { expires: 30 });
|
|
|
- Cookies.set('rememberMe', this.loginForm.rememberMe, { expires: 30 });
|
|
|
+ Cookies.set('username', this.loginForm.username, { expires: 30 })
|
|
|
+ Cookies.set('password', encrypt(this.loginForm.password), { expires: 30 })
|
|
|
+ Cookies.set('rememberMe', this.loginForm.rememberMe, { expires: 30 })
|
|
|
} else {
|
|
|
- Cookies.remove("username");
|
|
|
- Cookies.remove("password");
|
|
|
- Cookies.remove('rememberMe');
|
|
|
+ Cookies.remove('username')
|
|
|
+ Cookies.remove('password')
|
|
|
+ Cookies.remove('rememberMe')
|
|
|
}
|
|
|
- this.$store.dispatch("Login", this.loginForm).then(() => {
|
|
|
- this.$router.push({ path: this.redirect || "/" }).catch(()=>{});
|
|
|
+ this.$store.dispatch('Login', this.loginForm).then(() => {
|
|
|
+ this.$router.push({ path: this.redirect || '/' }).catch(() => {
|
|
|
+ })
|
|
|
}).catch(() => {
|
|
|
- this.loading = false;
|
|
|
+ this.loading = false
|
|
|
if (this.captchaOnOff) {
|
|
|
- this.getCode();
|
|
|
+ this.getCode()
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
-};
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style rel="stylesheet/scss" lang="scss">
|
|
|
@@ -164,6 +168,7 @@ export default {
|
|
|
background-image: url("../assets/images/login-background.jpg");
|
|
|
background-size: cover;
|
|
|
}
|
|
|
+
|
|
|
.title {
|
|
|
margin: 0px auto 30px auto;
|
|
|
text-align: center;
|
|
|
@@ -175,32 +180,39 @@ export default {
|
|
|
background: #ffffff;
|
|
|
width: 400px;
|
|
|
padding: 25px 25px 5px 25px;
|
|
|
+
|
|
|
.el-input {
|
|
|
height: 38px;
|
|
|
+
|
|
|
input {
|
|
|
height: 38px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.input-icon {
|
|
|
height: 39px;
|
|
|
width: 14px;
|
|
|
margin-left: 2px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.login-tip {
|
|
|
font-size: 13px;
|
|
|
text-align: center;
|
|
|
color: #bfbfbf;
|
|
|
}
|
|
|
+
|
|
|
.login-code {
|
|
|
width: 33%;
|
|
|
height: 38px;
|
|
|
float: right;
|
|
|
+
|
|
|
img {
|
|
|
cursor: pointer;
|
|
|
vertical-align: middle;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-login-footer {
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
@@ -213,6 +225,7 @@ export default {
|
|
|
font-size: 12px;
|
|
|
letter-spacing: 1px;
|
|
|
}
|
|
|
+
|
|
|
.login-code-img {
|
|
|
height: 38px;
|
|
|
}
|