|
@@ -3,11 +3,11 @@
|
|
|
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
|
|
|
<div class="title-container">
|
|
|
<h3 class="title">{{ $t('login.title') }}</h3>
|
|
|
- <lang-select class="set-language" />
|
|
|
+ <lang-select class="set-language"/>
|
|
|
</div>
|
|
|
<el-form-item prop="username">
|
|
|
<el-input v-model="loginForm.username" type="text" auto-complete="off" :placeholder="$t('login.username')">
|
|
|
- <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">
|
|
@@ -18,24 +18,27 @@
|
|
|
:placeholder="$t('login.password')"
|
|
|
@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">-->
|
|
|
-<!-- <el-input-->
|
|
|
-<!-- v-model="loginForm.code"-->
|
|
|
-<!-- auto-complete="off"-->
|
|
|
-<!-- :placeholder="$t('login.code')"-->
|
|
|
-<!-- style="width: 63%"-->
|
|
|
-<!-- @keyup.enter.native="handleLogin"-->
|
|
|
-<!-- >-->
|
|
|
-<!-- <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"/>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </el-form-item>-->
|
|
|
- <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">{{ $t('login.rememberPassword') }}</el-checkbox>
|
|
|
+ <!-- <el-form-item prop="code">-->
|
|
|
+ <!-- <el-input-->
|
|
|
+ <!-- v-model="loginForm.code"-->
|
|
|
+ <!-- auto-complete="off"-->
|
|
|
+ <!-- :placeholder="$t('login.code')"-->
|
|
|
+ <!-- style="width: 63%"-->
|
|
|
+ <!-- @keyup.enter.native="handleLogin"-->
|
|
|
+ <!-- >-->
|
|
|
+ <!-- <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"/>-->
|
|
|
+ <!-- </div>-->
|
|
|
+ <!-- </el-form-item>-->
|
|
|
+ <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">{{
|
|
|
+ $t('login.rememberPassword')
|
|
|
+ }}
|
|
|
+ </el-checkbox>
|
|
|
<el-form-item style="width:100%;">
|
|
|
<el-button
|
|
|
:loading="loading"
|
|
@@ -48,18 +51,18 @@
|
|
|
<span v-else>{{ $t('login.loading') }}</span>
|
|
|
</el-button>
|
|
|
</el-form-item>
|
|
|
- <el-form-item style="width:100%;">
|
|
|
- <el-button
|
|
|
- :loading="loading"
|
|
|
- size="medium"
|
|
|
- type="primary"
|
|
|
- style="width:100%;"
|
|
|
- @click.native.prevent="doSocialLogin"
|
|
|
- >
|
|
|
- <span v-if="!loading"> 员工卡登录 </span>
|
|
|
- <span v-else>{{ $t('login.loading') }}</span>
|
|
|
- </el-button>
|
|
|
- </el-form-item>
|
|
|
+<!-- <el-form-item style="width:100%;">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- :loading="loading"-->
|
|
|
+<!-- size="medium"-->
|
|
|
+<!-- type="primary"-->
|
|
|
+<!-- style="width:100%;"-->
|
|
|
+<!-- @click.native.prevent="doSocialLogin"-->
|
|
|
+<!-- >-->
|
|
|
+<!-- <span v-if="!loading"> 员工卡登录 </span>-->
|
|
|
+<!-- <span v-else>{{ $t('login.loading') }}</span>-->
|
|
|
+<!-- </el-button>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
<el-form-item style="width:100%;">
|
|
|
<el-button
|
|
|
:loading="loading"
|
|
@@ -81,14 +84,14 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { getCodeImg } from "@/api/login";
|
|
|
+import {getCodeImg} from "@/api/login";
|
|
|
import Cookies from "js-cookie";
|
|
|
-import { encrypt, decrypt } from '@/utils/jsencrypt'
|
|
|
+import {encrypt, decrypt} from '@/utils/jsencrypt'
|
|
|
import LangSelect from '@/components/LangSelect'
|
|
|
|
|
|
export default {
|
|
|
name: "Login",
|
|
|
- components: { LangSelect },
|
|
|
+ components: {LangSelect},
|
|
|
data() {
|
|
|
return {
|
|
|
codeUrl: "",
|
|
@@ -102,12 +105,12 @@ export default {
|
|
|
},
|
|
|
loginRules: {
|
|
|
username: [
|
|
|
- { required: true, trigger: "blur", message: this.$t('login.usernameNotEmpty') }
|
|
|
+ {required: true, trigger: "blur", message: this.$t('login.usernameNotEmpty')}
|
|
|
],
|
|
|
password: [
|
|
|
- { required: true, trigger: "blur", message: this.$t('login.passwordNotEmpty')}
|
|
|
+ {required: true, trigger: "blur", message: this.$t('login.passwordNotEmpty')}
|
|
|
],
|
|
|
- code: [{ required: true, trigger: "change", message: this.$t('login.codeNotEmpty') }]
|
|
|
+ code: [{required: true, trigger: "change", message: this.$t('login.codeNotEmpty')}]
|
|
|
},
|
|
|
loading: false,
|
|
|
redirect: undefined
|
|
@@ -115,13 +118,14 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
$route: {
|
|
|
- handler: function(route) {
|
|
|
+ handler: function (route) {
|
|
|
this.redirect = route.query && route.query.redirect;
|
|
|
},
|
|
|
immediate: true
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
+ console.log(window.location)
|
|
|
let code = window.location.search.replace("?code=" , '');
|
|
|
if (code) {
|
|
|
code = code.substring(0, code.indexOf("&"));
|
|
@@ -130,7 +134,7 @@ export default {
|
|
|
}
|
|
|
this.getCode();
|
|
|
this.getCookie();
|
|
|
- if (!this.$store.getters.language){
|
|
|
+ if (!this.$store.getters.language) {
|
|
|
console.log("默认中文")
|
|
|
this.$i18n.locale = 'zh'
|
|
|
this.$store.dispatch('app/setLanguage', 'zh')
|
|
@@ -158,9 +162,9 @@ export default {
|
|
|
if (valid) {
|
|
|
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");
|
|
@@ -169,7 +173,7 @@ export default {
|
|
|
this.$store
|
|
|
.dispatch("Login", this.loginForm)
|
|
|
.then(() => {
|
|
|
- this.$router.push({ path: this.redirect || "/404" });
|
|
|
+ this.$router.push({path: this.redirect || "/404"});
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.loading = false;
|
|
@@ -179,11 +183,11 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
doSocialLogin() {
|
|
|
- window.location.href = 'https://gitee.com/oauth/authorize?client_id=e7faeabf239846288ee07e6c40066cbd0dcc46cb1c1dea37c602c29a2368c6b8&redirect_uri=http%3A%2F%2Flocalhost%2Fcpms%2Findex.html%23%2FsocialLogin&response_type=code';
|
|
|
+ window.location.href = 'https://gitee.com/oauth/authorize?client_id=e7faeabf239846288ee07e6c40066cbd0dcc46cb1c1dea37c602c29a2368c6b8&redirect_uri=http%3A%2F%2Flocalhost%2Fcpms%2Findex.html%23%2FsocialLogin&response_type=code';
|
|
|
},
|
|
|
/** Azure登录 */
|
|
|
doAzureLogin() {
|
|
|
- window.location.href = 'https://login.microsoftonline.com/7503e40a-97ec-4eb9-bf6d-2836e57e882d/oauth2/v2.0/authorize?client_id=3db6f125-db4d-456b-a76e-a6d03182e845&redirect_uri=http%3A%2F%2Flocalhost%2Fcpms%2Findex.html%23%2FazureLogin&scope=api://3db6f125-db4d-456b-a76e-a6d03182e845/User.Read&response_type=code';
|
|
|
+ window.location.href = 'https://login.microsoftonline.com/7503e40a-97ec-4eb9-bf6d-2836e57e882d/oauth2/v2.0/authorize?client_id=3db6f125-db4d-456b-a76e-a6d03182e845&redirect_uri=http%3A%2F%2Flocalhost%2Fcpms%2Findex.html%23%2FazureLogin&scope=api://3db6f125-db4d-456b-a76e-a6d03182e845/User.Read&response_type=code';
|
|
|
},
|
|
|
}
|
|
|
};
|
|
@@ -195,10 +199,11 @@ export default {
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
height: 100%;
|
|
|
- //background-image: url("../assets/image/CPMS20210107.jpg");
|
|
|
- background-image: url("../assets/image/cpms-test.jpg");
|
|
|
+ background-image: url("../assets/image/CPMS20210107.jpg");
|
|
|
+ //background-image: url("../assets/image/cpms-test.jpg");
|
|
|
background-size: cover;
|
|
|
}
|
|
|
+
|
|
|
.title {
|
|
|
margin: 0px auto 15px auto;
|
|
|
text-align: center;
|
|
@@ -206,49 +211,58 @@ export default {
|
|
|
}
|
|
|
|
|
|
.login-form {
|
|
|
- position:absolute;
|
|
|
- top:50%;
|
|
|
- left:50%;
|
|
|
- transform:translate(-50%,-50%);
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
/*实现块元素百分比下居中*/
|
|
|
- width:450px;
|
|
|
- padding:50px;
|
|
|
+ width: 450px;
|
|
|
+ padding: 50px;
|
|
|
background: #2a8db9db;
|
|
|
- box-sizing:border-box;
|
|
|
- box-shadow: 0px 15px 25px rgba(0,0,0,.5);
|
|
|
- border-radius:15px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ box-shadow: 0px 15px 25px rgba(0, 0, 0, .5);
|
|
|
+ border-radius: 15px;
|
|
|
+
|
|
|
.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-dropdown {
|
|
|
color: #ffffff;
|
|
|
}
|
|
|
+
|
|
|
.el-checkbox {
|
|
|
color: #ffffff;
|
|
|
}
|
|
|
+
|
|
|
.el-login-footer {
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
@@ -261,6 +275,7 @@ export default {
|
|
|
font-size: 12px;
|
|
|
letter-spacing: 1px;
|
|
|
}
|
|
|
+
|
|
|
.login-code-img {
|
|
|
height: 38px;
|
|
|
}
|
|
@@ -268,14 +283,14 @@ export default {
|
|
|
</style>
|
|
|
|
|
|
<style scoped>
|
|
|
- .el-button--primary {
|
|
|
- color: #FFFFFF;
|
|
|
- background-color: #40a9ff;
|
|
|
- border-color: #40a9ff;
|
|
|
- }
|
|
|
+.el-button--primary {
|
|
|
+ color: #FFFFFF;
|
|
|
+ background-color: #40a9ff;
|
|
|
+ border-color: #40a9ff;
|
|
|
+}
|
|
|
|
|
|
- .el-button:hover, .el-button:focus {
|
|
|
- border-color: #6abfff;
|
|
|
- background-color: #6abfff;
|
|
|
- }
|
|
|
+.el-button:hover, .el-button:focus {
|
|
|
+ border-color: #6abfff;
|
|
|
+ background-color: #6abfff;
|
|
|
+}
|
|
|
</style>
|