|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
- <div id="login">
|
|
|
+ <div id="login">
|
|
|
<div id="login_wrapper">
|
|
|
|
|
|
<img class="login-bg" :src="isTrail?global.login_bg:$setting.login_bg" alt />
|
|
|
- <img class="login-icon" :src="isTrail?global.login_logo:$setting.login_logo" v-if="isTrail?global.login_logo:$setting.login_logo">
|
|
|
- <el-form
|
|
|
+ <img class="login-icon" :src="isTrail?global.login_logo:$setting.login_logo" v-if="isTrail?global.login_logo:$setting.login_logo">
|
|
|
+ <!-- <el-form
|
|
|
:model="ruleForm"
|
|
|
:rules="rules"
|
|
|
ref="ruleForm"
|
|
@@ -63,8 +63,68 @@
|
|
|
>登录</el-button
|
|
|
>
|
|
|
</el-form-item>
|
|
|
- </el-form>
|
|
|
+ </el-form> -->
|
|
|
+ <div class="login-box" id="login-container" v-if="activeModel!=='forgetPassModel'">
|
|
|
+ <span class="login-title">ETA — 让投研领先市场半步</span>
|
|
|
+ <el-tabs v-model="activeModel" @tab-click="handleClick">
|
|
|
+ <el-tab-pane label="账号登录" name="ordinaryModel">
|
|
|
+ <OrdinaryModel ref="ordinaryModel"
|
|
|
+ :loginCheck="loginCheck"
|
|
|
+ :accountCheck="accountCheck"
|
|
|
+ @clearnHint="clearnHint"
|
|
|
+ @changeModel="changeModel('forgetPassModel')"
|
|
|
+ />
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="手机号登录" name="mobileModel">
|
|
|
+ <MobileModel ref="mobileModel"
|
|
|
+ :areaCode="areaCode"
|
|
|
+ />
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="邮箱登录" name="emailModel">
|
|
|
+ <EmailModel ref="emailModel"/>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="medium"
|
|
|
+ @click.native="handleLogin"
|
|
|
+ :loading="logining"
|
|
|
+ class="submit_btn"
|
|
|
+ >登录</el-button>
|
|
|
+ </div>
|
|
|
+ <div class="login-box" v-else>
|
|
|
+ <ForgetPassModel
|
|
|
+ ref="forgetPassModel"
|
|
|
+ :autoAccount="$refs.ordinaryModel?$refs.ordinaryModel.form.account:''"
|
|
|
+ @changeModel="changeModel('ordinaryModel')"/>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+ <!-- 验证弹窗 -->
|
|
|
+ <el-dialog
|
|
|
+ class="check-dialog"
|
|
|
+ :visible.sync="isCheckDialogShow"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :modal-append-to-body="false"
|
|
|
+ width="30%"
|
|
|
+ @close="isCheckDialogShow = false"
|
|
|
+ >
|
|
|
+ <el-tabs v-model="checkActiveModel" @tab-click="handleClick">
|
|
|
+ <el-tab-pane label="手机号验证" name="checkMobileModel">
|
|
|
+ <MobileModel ref="checkMobileModel"
|
|
|
+ :areaCode="areaCode"
|
|
|
+ />
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="邮箱验证" name="checkEmailModel">
|
|
|
+ <EmailModel ref="checkEmailModel"/>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :loading="checkLogining"
|
|
|
+ @click="submitCheck">提 交</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -72,9 +132,14 @@
|
|
|
import { userLogin, departInterence } from "@/api/api.js";
|
|
|
import http from "@/api/http.js";
|
|
|
import md5 from "@/utils/md5.js";
|
|
|
+import EmailModel from "./login_manage/EmailModel.vue";
|
|
|
+import ForgetPassModel from "./login_manage/ForgetPassModel.vue";
|
|
|
+import MobileModel from "./login_manage/MobileModel.vue";
|
|
|
+import OrdinaryModel from "./login_manage/OrdinaryModel.vue";
|
|
|
import global from '@/config/setting'
|
|
|
import {openLoginTimer} from "@/utils/TimeOnPage.js"
|
|
|
export default {
|
|
|
+ components: { OrdinaryModel, MobileModel, EmailModel, ForgetPassModel },
|
|
|
data() {
|
|
|
return {
|
|
|
global,
|
|
@@ -102,6 +167,18 @@ export default {
|
|
|
},
|
|
|
checked: false, //是否保持登录状态
|
|
|
visible: true, //密码输入类型
|
|
|
+
|
|
|
+ activeModel: 'ordinaryModel',
|
|
|
+ /* form check 错误提示标识*/
|
|
|
+ loginCheck:false, //账号或密码错误
|
|
|
+ accountCheck:false,//账号异常:多次输错密码、长时间未登录
|
|
|
+ accountForbidden:false,//账号被禁用
|
|
|
+ mobileCheck:false,//手机号未绑定
|
|
|
+ emailCheck:false,//邮箱未绑定
|
|
|
+ areaCode:[],
|
|
|
+
|
|
|
+ isCheckDialogShow:false,
|
|
|
+ checkActiveModel:'checkMobileModel'
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -110,135 +187,347 @@ export default {
|
|
|
return this.$store.state.businessCode == this.$store.state.TRIAL_CODE
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
- this.keyupSubmit(); //回车登录
|
|
|
- let userAccount = localStorage.getItem("account") || null;
|
|
|
- let userCheckPass = localStorage.getItem("checkPass") || null;
|
|
|
- if (userAccount) {
|
|
|
- this.ruleForm.account = this.b.decode(userAccount);
|
|
|
- this.ruleForm.checkPass = this.b.decode(userCheckPass);
|
|
|
- this.checked = true;
|
|
|
- }
|
|
|
- },
|
|
|
- methods: {
|
|
|
- keyupSubmit() {
|
|
|
- //回车登录
|
|
|
- document.onkeydown = (e) => {
|
|
|
- let keyval = window.event.keyCode;
|
|
|
- if (keyval === 13) {
|
|
|
- this.handleSubmit2();
|
|
|
- }
|
|
|
- };
|
|
|
+ created() {
|
|
|
+ this.keyupSubmit(); //回车登录
|
|
|
+ this.getPhoneCode();//获取手机号区号
|
|
|
+ },
|
|
|
+ mounted(){
|
|
|
+ this.getRememberedInfo()
|
|
|
},
|
|
|
- handleSubmit2() {
|
|
|
- //登录
|
|
|
- let that = this;
|
|
|
- this.$refs.ruleForm.validate((valid) => {
|
|
|
- if (valid) {
|
|
|
- that.logining = true;
|
|
|
- var loginParams = {
|
|
|
- Username: that.ruleForm.account,
|
|
|
- Password: md5.hex_md5(that.ruleForm.checkPass),
|
|
|
- IsRemember: this.checked,
|
|
|
- };
|
|
|
- userLogin(loginParams).then(async (res) => {
|
|
|
- if (res.Ret === 200) {
|
|
|
- localStorage.setItem("auth", res.Data.Authorization);
|
|
|
- localStorage.setItem("userName", res.Data.RealName);
|
|
|
- localStorage.setItem("Role", res.Data.RoleTypeCode);
|
|
|
- localStorage.setItem("RoleIdentity", res.Data.SysRoleTypeCode);
|
|
|
- localStorage.setItem("RoleType", res.Data.ProductName);
|
|
|
- localStorage.setItem("ManageType", res.Data.Authority);
|
|
|
- localStorage.setItem("AdminId", res.Data.AdminId);
|
|
|
- localStorage.setItem("AdminName", res.Data.AdminName);
|
|
|
- // 打开登录计时
|
|
|
- if(this.isTrail){
|
|
|
- openLoginTimer()
|
|
|
- }
|
|
|
-
|
|
|
- if (this.checked) {
|
|
|
- localStorage.setItem(
|
|
|
- "account",
|
|
|
- this.b.encode(this.ruleForm.account)
|
|
|
- );
|
|
|
- localStorage.setItem(
|
|
|
- "checkPass",
|
|
|
- this.b.encode(this.ruleForm.checkPass)
|
|
|
- );
|
|
|
- } else {
|
|
|
- localStorage.removeItem("account");
|
|
|
- localStorage.removeItem("checkPass");
|
|
|
- }
|
|
|
+ methods: {
|
|
|
+ keyupSubmit() {
|
|
|
+ //回车登录
|
|
|
+ document.onkeydown = (e) => {
|
|
|
+ let keyval = window.event.keyCode;
|
|
|
+ if (keyval === 13) {
|
|
|
+ //this.handleSubmit2();
|
|
|
+ !this.logining&&this.handleLogin()
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ handleSubmit2() {
|
|
|
+ //登录
|
|
|
+ let that = this;
|
|
|
+ this.$refs.ruleForm.validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ that.logining = true;
|
|
|
+ var loginParams = {
|
|
|
+ Username: that.ruleForm.account,
|
|
|
+ Password: md5.hex_md5(that.ruleForm.checkPass),
|
|
|
+ IsRemember: this.checked,
|
|
|
+ };
|
|
|
+ userLogin(loginParams).then(async (res) => {
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ localStorage.setItem("auth", res.Data.Authorization);
|
|
|
+ localStorage.setItem("userName", res.Data.RealName);
|
|
|
+ localStorage.setItem("Role", res.Data.RoleTypeCode);
|
|
|
+ localStorage.setItem("RoleIdentity", res.Data.SysRoleTypeCode);
|
|
|
+ localStorage.setItem("RoleType", res.Data.ProductName);
|
|
|
+ localStorage.setItem("ManageType", res.Data.Authority);
|
|
|
+ localStorage.setItem("AdminId", res.Data.AdminId);
|
|
|
+ localStorage.setItem("AdminName", res.Data.AdminName);
|
|
|
+ if (this.checked) {
|
|
|
+ localStorage.setItem("account", this.b.encode(this.ruleForm.account));
|
|
|
+ localStorage.setItem("checkPass", this.b.encode(this.ruleForm.checkPass));
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ localStorage.removeItem("account");
|
|
|
+ localStorage.removeItem("checkPass");
|
|
|
+ }
|
|
|
+ let path = "";
|
|
|
+ switch (res.Data.RoleTypeCode) {
|
|
|
+ case "rai_researcher":
|
|
|
+ case "ficc_researcher":
|
|
|
+ case "researcher":
|
|
|
+ path = "/reportlist";
|
|
|
+ break;
|
|
|
+ case "compliance": //合规
|
|
|
+ path = "/contractapprovallist";
|
|
|
+ break;
|
|
|
+ case "special_researcher": //特邀研究员
|
|
|
+ path = "/dataList";
|
|
|
+ break;
|
|
|
+ case "special_ficc_seller":
|
|
|
+ path = "/meetingCalendar";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ path = await this.getOtherRolePath("myCalendar");
|
|
|
+ }
|
|
|
+ this.$router.push({ path });
|
|
|
+ }
|
|
|
+ that.logining = false;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ changePass(value) {
|
|
|
+ //密码输入格式切换
|
|
|
+ this.visible = !(value === "show");
|
|
|
+ },
|
|
|
+ getOtherRolePath(pathVal) {
|
|
|
+ return departInterence.getMenu().then((res) => {
|
|
|
+ let resolvePath = "";
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ let menuList = res.Data.List || [];
|
|
|
+ if (!menuList.length) {
|
|
|
+ this.$message.error('该账号没有任何菜单权限,请联系管理员');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 是否已经拿到菜单信息
|
|
|
+ sessionStorage.setItem("hasGetMenu", "true");
|
|
|
+ sessionStorage.setItem("MenuList", JSON.stringify(menuList));
|
|
|
+ /* 是否有数据报表权限 */
|
|
|
+ this.$store.commit("SET_DATA_AUTH", menuList.some((item) => item.name === "数据报表"));
|
|
|
+ for (let i = 0; i < menuList.length; i++) {
|
|
|
+ const arr = menuList[i].children || [];
|
|
|
+ if (arr.some(it => it.path == pathVal)) {
|
|
|
+ resolvePath = "/" + pathVal;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return resolvePath || "/" + menuList[0].children[0].path;
|
|
|
+ }
|
|
|
+ return "/" + pathVal;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getPhoneCode(){
|
|
|
+ departInterence.getPhoneAreaCode().then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.areaCode = res.Data||[]
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleClick(tab) {
|
|
|
+ //调用对应model的init方法
|
|
|
+ this.$refs[tab.name]&&this.$refs[tab.name].modelInit()
|
|
|
+ this.$refs[tab.name]&&this.$refs[tab.name].$refs.modelForm.clearValidate()
|
|
|
+ if(tab.name==='ordinaryModel'){
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.getRememberedInfo()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ changeModel(model){
|
|
|
+ this.activeModel = model
|
|
|
+ if(model!=='forgetPassModel'){
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.getRememberedInfo()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleLogin(){
|
|
|
+ //先进行判空的表单验证
|
|
|
+ this.$refs[this.activeModel].$refs.modelForm.validate((valid)=>{
|
|
|
+ if(valid){
|
|
|
+ this.logining = true
|
|
|
+ //根据activeName 调用不同的登陆接口
|
|
|
+ //账号密码
|
|
|
+ if(this.activeModel==='ordinaryModel'){
|
|
|
+ this.ordinaryModelLogin()
|
|
|
+ }
|
|
|
+ //手机号登录
|
|
|
+ if(this.activeModel==='mobileModel'){
|
|
|
+ this.mobileModelLogin()
|
|
|
+ }
|
|
|
+ //邮箱登录
|
|
|
+ if(this.activeModel==='emailModel'){
|
|
|
+ this.emailModelLogin()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ submitCheck(){
|
|
|
+ this.$refs[this.checkActiveModel].$refs.modelForm.validate((valid)=>{
|
|
|
+ if(valid){
|
|
|
+ this.checkLogining = true
|
|
|
+ if(this.checkActiveModel==='checkMobileModel'){
|
|
|
+ this.mobileModelLogin('checkMobileModel')
|
|
|
+ }else{
|
|
|
+ this.emailModelLogin('checkEmailModel')
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ ordinaryModelLogin(){
|
|
|
+ const {account,checkPass,checked} = this.$refs.ordinaryModel.form
|
|
|
+ departInterence.userLogin({
|
|
|
+ LoginType:1,
|
|
|
+ Username:account,
|
|
|
+ Password:md5.hex_md5(checkPass)
|
|
|
+ }).then(res=>{
|
|
|
+ //this.logining = false
|
|
|
+ //账号异常 将accountCheck置为true
|
|
|
+ if(res.Ret===4011){
|
|
|
+ this.accountCheck = true
|
|
|
+ this.isCheckDialogShow = true
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.$refs[this.checkActiveModel].getCodePic()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ //账号密码错误 将loginCheck置为true
|
|
|
+ if(res.Ret===4012){
|
|
|
+ this.loginCheck = true
|
|
|
+ }
|
|
|
+ if(res.Ret!==200){
|
|
|
+ this.logining = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //登录成功,若设置了保存密码,在localStorage内存储一个时间戳
|
|
|
+ if(checked){
|
|
|
+ this.setLoginDate(1)
|
|
|
+ localStorage.setItem("account", this.b.encode(account));
|
|
|
+ localStorage.setItem("checkPass", this.b.encode(checkPass));
|
|
|
+ }else {
|
|
|
+ this.setLoginDate(0)
|
|
|
+ localStorage.removeItem("account");
|
|
|
+ localStorage.removeItem("checkPass");
|
|
|
+ }
|
|
|
+ this.setLoginInfo(res)
|
|
|
+ this.loginSys(res)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ mobileModelLogin(model='mobileModel'){
|
|
|
+ const {mobile,checkCode} = this.$refs[model].form
|
|
|
+ departInterence.userLogin({
|
|
|
+ LoginType:2,
|
|
|
+ Mobile:mobile,
|
|
|
+ VerifyCode:checkCode
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200){
|
|
|
+ //刷新图形验证码
|
|
|
+ this.$refs[model].getCodePic()
|
|
|
+ this.$refs[model].form.picCode = ''
|
|
|
+ model==='mobileModel'&&(this.logining = false)
|
|
|
+ model!=='mobileModel'&&(this.checkLogining = false)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.setLoginInfo(res)
|
|
|
+ this.loginSys(res)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ emailModelLogin(model='emailModel'){
|
|
|
+ const {email,checkCode} = this.$refs[model].form
|
|
|
+ departInterence.userLogin({
|
|
|
+ LoginType:3,
|
|
|
+ Email:email,
|
|
|
+ VerifyCode:checkCode
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200){
|
|
|
+ //刷新图形验证码
|
|
|
+ this.$refs[model].getCodePic()
|
|
|
+ this.$refs[model].form.picCode = ''
|
|
|
+ model==='emailModel'&&(this.logining = false)
|
|
|
+ model!=='emailModel'&&(this.checkLogining = false)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.setLoginInfo(res)
|
|
|
+ this.loginSys(res)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ clearnHint(){
|
|
|
+ this.loginCheck = false
|
|
|
+ this.accountCheck = false
|
|
|
+ },
|
|
|
+ setLoginDate(type){
|
|
|
+ if(type===0){
|
|
|
+ localStorage.removeItem('timeKey')
|
|
|
+ }else{
|
|
|
+ localStorage.setItem('timeKey',Date.now())
|
|
|
+ }
|
|
|
|
|
|
- let path = "";
|
|
|
- switch (res.Data.RoleTypeCode) {
|
|
|
+ },
|
|
|
+ //判断timeKey有没有过期,目前设定的是60天,也就是5184000秒
|
|
|
+ checkTimeKey(timeKey){
|
|
|
+ const nowKey = Date.now()
|
|
|
+ return Math.floor((nowKey-timeKey)/1000)<5184000
|
|
|
+ },
|
|
|
+ //存储登录的信息
|
|
|
+ setLoginInfo(res){
|
|
|
+ localStorage.setItem("auth", res.Data.Authorization);
|
|
|
+ localStorage.setItem("userName", res.Data.RealName);
|
|
|
+ localStorage.setItem("Role", res.Data.RoleTypeCode);
|
|
|
+ localStorage.setItem("RoleIdentity", res.Data.SysRoleTypeCode);
|
|
|
+ localStorage.setItem("RoleType", res.Data.ProductName);
|
|
|
+ localStorage.setItem("ManageType", res.Data.Authority);
|
|
|
+ localStorage.setItem("AdminId", res.Data.AdminId);
|
|
|
+ localStorage.setItem("AdminName", res.Data.AdminName);
|
|
|
+ },
|
|
|
+ //根据角色判断应该进入系统的哪个页面,进入系统
|
|
|
+ async loginSys(res){
|
|
|
+ let path = ''
|
|
|
+ switch (res.Data.RoleTypeCode) {
|
|
|
case "rai_researcher":
|
|
|
case "ficc_researcher":
|
|
|
case "researcher":
|
|
|
- path = "/reportlist";
|
|
|
- break;
|
|
|
+ path = "/reportlist";
|
|
|
+ break;
|
|
|
case "compliance": //合规
|
|
|
- path = "/contractapprovallist";
|
|
|
- break;
|
|
|
+ path = "/contractapprovallist";
|
|
|
+ break;
|
|
|
case "special_researcher": //特邀研究员
|
|
|
- path = "/dataList";
|
|
|
- break;
|
|
|
+ path = "/dataList";
|
|
|
+ break;
|
|
|
case "special_ficc_seller":
|
|
|
- path = "/meetingCalendar";
|
|
|
- break;
|
|
|
+ path = "/meetingCalendar";
|
|
|
+ break;
|
|
|
default:
|
|
|
- path = await this.getOtherRolePath("myCalendar");
|
|
|
- }
|
|
|
- this.$router.push({ path });
|
|
|
+ path = await this.getOtherRolePath("myCalendar");
|
|
|
}
|
|
|
- that.logining = false;
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- changePass(value) {
|
|
|
- //密码输入格式切换
|
|
|
- this.visible = !(value === "show");
|
|
|
- },
|
|
|
- getOtherRolePath(pathVal) {
|
|
|
- return departInterence.getMenu().then((res) => {
|
|
|
- let resolvePath = "";
|
|
|
- if (res.Ret === 200) {
|
|
|
- let menuList = res.Data.List || [];
|
|
|
- if(!menuList.length){
|
|
|
- this.$message.error('该账号没有任何菜单权限,请联系管理员')
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- // 是否已经拿到菜单信息
|
|
|
- sessionStorage.setItem("hasGetMenu", "true");
|
|
|
- sessionStorage.setItem("MenuList", JSON.stringify(menuList));
|
|
|
- /* 是否有数据报表权限 */
|
|
|
- this.$store.commit(
|
|
|
- "SET_DATA_AUTH",
|
|
|
- menuList.some((item) => item.name === "数据报表")
|
|
|
- );
|
|
|
-
|
|
|
- for (let i = 0; i < menuList.length; i++) {
|
|
|
- const arr=menuList[i].children||[]
|
|
|
-
|
|
|
- if(arr.some(it => it.path == pathVal)){
|
|
|
- resolvePath = "/" + pathVal;
|
|
|
- break;
|
|
|
+ path&&this.$router.push({ path });
|
|
|
+ this.loading = false
|
|
|
+ this.checkLogining = false
|
|
|
+ },
|
|
|
+ //获取用户记住的账号密码 如果有
|
|
|
+ getRememberedInfo(){
|
|
|
+ const timeKey = localStorage.getItem("timeKey")
|
|
|
+ if(timeKey&&this.checkTimeKey(Number(timeKey))){
|
|
|
+ let userAccount = localStorage.getItem("account") || null;
|
|
|
+ let userCheckPass = localStorage.getItem("checkPass") || null;
|
|
|
+ if (userAccount) {
|
|
|
+ this.$refs.ordinaryModel.form = {
|
|
|
+ account:this.b.decode(userAccount),
|
|
|
+ checkPass:this.b.decode(userCheckPass),
|
|
|
+ checked:true
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- return resolvePath || "/" + menuList[0].children[0].path;
|
|
|
}
|
|
|
- return "/" + pathVal;
|
|
|
- });
|
|
|
},
|
|
|
- },
|
|
|
- destroyed() {
|
|
|
- document.onkeydown = null;
|
|
|
- },
|
|
|
+ destroyed() {
|
|
|
+ document.onkeydown = null;
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
+<style lang="scss">
|
|
|
+#login{
|
|
|
+ .el-tabs__nav {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+ .el-tabs__item{
|
|
|
+ font-size: 18px;
|
|
|
+ flex: 1;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .check-dialog{
|
|
|
+ .el-dialog{
|
|
|
+ border-radius: 8px;
|
|
|
+ .el-dialog__header{
|
|
|
+ background-color: transparent;
|
|
|
+ .el-dialog__headerbtn>i{
|
|
|
+ color: #C0C4CC;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-input{
|
|
|
+ width:100%;
|
|
|
+ }
|
|
|
+ .el-dialog__footer{
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
<style lang="scss" scoped>
|
|
|
#login {
|
|
|
width: 100%;
|
|
@@ -264,22 +553,22 @@ export default {
|
|
|
|
|
|
.login-icon {
|
|
|
position: absolute;
|
|
|
- top: 40px;
|
|
|
+ top: 40px;
|
|
|
right: 40px;
|
|
|
}
|
|
|
.login-title {
|
|
|
color: #333;
|
|
|
- font-size: 30px;
|
|
|
+ font-size: 38px;
|
|
|
display: block;
|
|
|
- text-align: center;
|
|
|
- margin-bottom: 30px;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 60px;
|
|
|
}
|
|
|
|
|
|
- #login-container {
|
|
|
+ #login-container ,.login-box{
|
|
|
box-sizing: border-box;
|
|
|
border-radius: 10px;
|
|
|
position: absolute;
|
|
|
- top: 31%;
|
|
|
+ top: 27%;
|
|
|
right: 12%;
|
|
|
z-index: 100;
|
|
|
input::-webkit-input-placeholder {
|
|
@@ -290,7 +579,7 @@ export default {
|
|
|
}
|
|
|
.submit_btn {
|
|
|
width: 100%;
|
|
|
- height: 60px;
|
|
|
+ height: 50px;
|
|
|
background: #3654C1;
|
|
|
font-size: 20px;
|
|
|
border-radius: 5px;
|
|
@@ -343,15 +632,15 @@ export default {
|
|
|
.login-bg{
|
|
|
display: block;
|
|
|
}
|
|
|
- #login-container {
|
|
|
- width: 31%;
|
|
|
+ #login-container ,.login-box{
|
|
|
+ width: 33%;
|
|
|
}
|
|
|
}
|
|
|
@media screen and (max-width: 1200px){
|
|
|
.login-bg{
|
|
|
display: none;
|
|
|
}
|
|
|
- #login-container {
|
|
|
+ #login-container ,.login-box{
|
|
|
width: 70%;
|
|
|
}
|
|
|
}
|