|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div id="login">
|
|
<div id="login">
|
|
- <div id="login_wrapper">
|
|
|
|
|
|
+ <div id="login_wrapper" v-if="!isMobile">
|
|
<img class="login-bg" src="https://hzstatic.hzinsights.com/static/hz_crm_web/imgs/login_bg.png" alt />
|
|
<img class="login-bg" src="https://hzstatic.hzinsights.com/static/hz_crm_web/imgs/login_bg.png" alt />
|
|
<img class="login-icon" src="https://hzstatic.hzinsights.com/static/hz_crm_web/imgs/login_logo.png" alt />
|
|
<img class="login-icon" src="https://hzstatic.hzinsights.com/static/hz_crm_web/imgs/login_logo.png" alt />
|
|
<!-- <el-form
|
|
<!-- <el-form
|
|
@@ -109,6 +109,58 @@
|
|
@changeModel="changeModel('ordinaryModel')"/>
|
|
@changeModel="changeModel('ordinaryModel')"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
|
|
+ <!-- 移动端的登录页面跟移动ETA的一模一样 单独整一份 -->
|
|
|
|
+ <div id="login_wrapper_mobile" v-else>
|
|
|
|
+ <template v-if="activeModel!=='forgetPassModel'">
|
|
|
|
+ <div class="login-logo">
|
|
|
|
+ <img src="https://hzstatic.hzinsights.com/static/hz_crm_web/imgs/login_logo.png" >
|
|
|
|
+ </div>
|
|
|
|
+ <div class="login-title">sign in to continue</div>
|
|
|
|
+ <OrdinaryModel ref="ordinaryModelMobile"
|
|
|
|
+ :loginCheck="loginCheck"
|
|
|
|
+ :accountCheck="accountCheck"
|
|
|
|
+ :isMobile="isMobile"
|
|
|
|
+ @clearnHint="clearnHint"
|
|
|
|
+ @changeModel="changeModel('forgetPassModel')"
|
|
|
|
+ v-show="activeModel=='ordinaryModel'"
|
|
|
|
+ />
|
|
|
|
+ <MobileModel ref="mobileModelMobile"
|
|
|
|
+ :areaCode="areaCode" :isMobile="isMobile"
|
|
|
|
+ v-show="activeModel=='mobileModel'"
|
|
|
|
+ />
|
|
|
|
+ <EmailModel ref="emailModelMobile" :isMobile="isMobile" v-show="activeModel=='emailModel'" />
|
|
|
|
+
|
|
|
|
+ <el-button type="primary" @click.native="handleLogin"
|
|
|
|
+ :loading="logining" class="submit_btn_mobile">登录</el-button>
|
|
|
|
+ <div class="login-type-box">
|
|
|
|
+ <div class="login-type-item" @click="activeModel='ordinaryModel';handleClick({name:'ordinaryModelMobile'})"
|
|
|
|
+ v-show="activeModel!=='ordinaryModel'">
|
|
|
|
+ <img src="~@/assets/img/icons/account-login-type.png">
|
|
|
|
+ <span>账号密码登录</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="login-type-item" @click="activeModel='mobileModel';handleClick({name:'mobileModelMobile'})"
|
|
|
|
+ v-show="activeModel!=='mobileModel'">
|
|
|
|
+ <img src="~@/assets/img/icons/phone-login-type.png">
|
|
|
|
+ <span>手机号登录</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="login-type-item" v-show="activeModel!=='emailModel'"
|
|
|
|
+ @click="activeModel='emailModel';handleClick({name:'emailModelMobile'})">
|
|
|
|
+ <img src="~@/assets/img/icons/email-login-type.png">
|
|
|
|
+ <span>邮箱登录</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ <div class="login-box" v-else>
|
|
|
|
+ <!-- 忘记密码就不重新搞了,太麻烦了,就写一起吧 -->
|
|
|
|
+ <ForgetPassModel
|
|
|
|
+ ref="forgetPassModelMobile"
|
|
|
|
+ :isMobile="isMobile"
|
|
|
|
+ :autoAccount="$refs.ordinaryModelMobile?$refs.ordinaryModelMobile.form.account:''"
|
|
|
|
+ @changeModel="changeModel('ordinaryModel')"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
<!-- 验证弹窗 -->
|
|
<!-- 验证弹窗 -->
|
|
<el-dialog
|
|
<el-dialog
|
|
class="check-dialog"
|
|
class="check-dialog"
|
|
@@ -185,7 +237,34 @@ export default {
|
|
areaCode:[],
|
|
areaCode:[],
|
|
|
|
|
|
isCheckDialogShow:false,
|
|
isCheckDialogShow:false,
|
|
- checkActiveModel:'checkMobileModel'
|
|
|
|
|
|
+ checkActiveModel:'checkMobileModel',
|
|
|
|
+ isMobile:false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ computed:{
|
|
|
|
+ activeModelForm(){
|
|
|
|
+ return this.isMobile?this.activeModel+'Mobile':this.activeModel
|
|
|
|
+ },
|
|
|
|
+ ordinaryModelForm(){
|
|
|
|
+ return this.isMobile?'ordinaryModelMobile':'ordinaryModel'
|
|
|
|
+ },
|
|
|
|
+ mobileModelForm(){
|
|
|
|
+ return this.isMobile?'mobileModelMobile':'mobileModel'
|
|
|
|
+ },
|
|
|
|
+ emailModelForm(){
|
|
|
|
+ return this.isMobile?'emailModelMobile':'emailModel'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ watch:{
|
|
|
|
+ isMobile(value){
|
|
|
|
+ // 移动端变PC或相反的情况监听
|
|
|
|
+ // 重新获取验证码
|
|
|
|
+ this.$nextTick(()=>{
|
|
|
|
+ // console.log(this.activeModelForm);
|
|
|
|
+ if((this.activeModel=="mobileModel" || this.activeModel=="emailModel")&&
|
|
|
|
+ (!this.$refs[this.activeModelForm].picSrc))
|
|
|
|
+ this.$refs[this.activeModelForm].getCodePic()
|
|
|
|
+ })
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -201,8 +280,16 @@ export default {
|
|
},
|
|
},
|
|
mounted(){
|
|
mounted(){
|
|
this.getRememberedInfo()
|
|
this.getRememberedInfo()
|
|
|
|
+ this.isMobile=!(window.innerWidth>650)
|
|
|
|
+ window.addEventListener('resize',this.setIsMobile)
|
|
|
|
+ },
|
|
|
|
+ beforeDestroy() {
|
|
|
|
+ window.removeEventListener('resize',this.setIsMobile)
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ setIsMobile(){
|
|
|
|
+ this.isMobile=!(window.innerWidth>650)
|
|
|
|
+ },
|
|
keyupSubmit() {
|
|
keyupSubmit() {
|
|
//回车登录
|
|
//回车登录
|
|
document.onkeydown = e => {
|
|
document.onkeydown = e => {
|
|
@@ -332,7 +419,7 @@ export default {
|
|
},
|
|
},
|
|
handleLogin(){
|
|
handleLogin(){
|
|
//先进行判空的表单验证
|
|
//先进行判空的表单验证
|
|
- this.$refs[this.activeModel].$refs.modelForm.validate((valid)=>{
|
|
|
|
|
|
+ this.$refs[this.activeModelForm].$refs.modelForm.validate((valid)=>{
|
|
if(valid){
|
|
if(valid){
|
|
this.logining = true
|
|
this.logining = true
|
|
//根据activeName 调用不同的登陆接口
|
|
//根据activeName 调用不同的登陆接口
|
|
@@ -364,7 +451,7 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
ordinaryModelLogin(){
|
|
ordinaryModelLogin(){
|
|
- const {account,checkPass,checked} = this.$refs.ordinaryModel.form
|
|
|
|
|
|
+ const {account,checkPass,checked} = this.$refs[this.ordinaryModelForm].form
|
|
departInterence.userLogin({
|
|
departInterence.userLogin({
|
|
LoginType:1,
|
|
LoginType:1,
|
|
Username:account,
|
|
Username:account,
|
|
@@ -401,7 +488,7 @@ export default {
|
|
this.loginSys(res)
|
|
this.loginSys(res)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- mobileModelLogin(model='mobileModel'){
|
|
|
|
|
|
+ mobileModelLogin(model=this.mobileModelForm){
|
|
const {mobile,checkCode} = this.$refs[model].form
|
|
const {mobile,checkCode} = this.$refs[model].form
|
|
departInterence.userLogin({
|
|
departInterence.userLogin({
|
|
LoginType:2,
|
|
LoginType:2,
|
|
@@ -412,15 +499,15 @@ export default {
|
|
//刷新图形验证码
|
|
//刷新图形验证码
|
|
this.$refs[model].getCodePic()
|
|
this.$refs[model].getCodePic()
|
|
this.$refs[model].form.picCode = ''
|
|
this.$refs[model].form.picCode = ''
|
|
- model==='mobileModel'&&(this.logining = false)
|
|
|
|
- model!=='mobileModel'&&(this.checkLogining = false)
|
|
|
|
|
|
+ model===this.mobileModelForm&&(this.logining = false)
|
|
|
|
+ model!==this.mobileModelForm&&(this.checkLogining = false)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
this.setLoginInfo(res)
|
|
this.setLoginInfo(res)
|
|
this.loginSys(res)
|
|
this.loginSys(res)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- emailModelLogin(model='emailModel'){
|
|
|
|
|
|
+ emailModelLogin(model=this.emailModelForm){
|
|
const {email,checkCode} = this.$refs[model].form
|
|
const {email,checkCode} = this.$refs[model].form
|
|
departInterence.userLogin({
|
|
departInterence.userLogin({
|
|
LoginType:3,
|
|
LoginType:3,
|
|
@@ -431,8 +518,8 @@ export default {
|
|
//刷新图形验证码
|
|
//刷新图形验证码
|
|
this.$refs[model].getCodePic()
|
|
this.$refs[model].getCodePic()
|
|
this.$refs[model].form.picCode = ''
|
|
this.$refs[model].form.picCode = ''
|
|
- model==='emailModel'&&(this.logining = false)
|
|
|
|
- model!=='emailModel'&&(this.checkLogining = false)
|
|
|
|
|
|
+ model===this.emailModelForm&&(this.logining = false)
|
|
|
|
+ model!==this.emailModelForm&&(this.checkLogining = false)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
this.setLoginInfo(res)
|
|
this.setLoginInfo(res)
|
|
@@ -515,6 +602,7 @@ export default {
|
|
background: #fff;
|
|
background: #fff;
|
|
position: relative;
|
|
position: relative;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
|
+ overflow-y: auto;
|
|
#login_wrapper {
|
|
#login_wrapper {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
@@ -609,20 +697,65 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .remember-cont {
|
|
|
|
- position: relative;
|
|
|
|
- margin-bottom: 20px;
|
|
|
|
- .warn-check-tip {
|
|
|
|
- position: absolute;
|
|
|
|
- min-width: 300px;
|
|
|
|
- left: 130px;
|
|
|
|
- top: 0;
|
|
|
|
- padding: 2px 10px;
|
|
|
|
- border: 1px solid #D1433A;
|
|
|
|
- background: #FFEAE9;
|
|
|
|
- color: #B72E18;
|
|
|
|
- font-size: 14px;
|
|
|
|
|
|
+ @media screen and (max-width:650px) {
|
|
|
|
+ #login_wrapper_mobile{
|
|
|
|
+ // display: block;
|
|
|
|
+ padding: 15% 40px 20px;
|
|
|
|
+ .login-logo{
|
|
|
|
+ margin-bottom: 30px;
|
|
|
|
+ img{
|
|
|
|
+ width: 250px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .login-title{
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #999999;
|
|
|
|
+ }
|
|
|
|
+ .submit_btn_mobile{
|
|
|
|
+ height: 44px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ border-radius: 44px;
|
|
|
|
+ }
|
|
|
|
+ .login-type-box{
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ width: 54%;
|
|
|
|
+ margin: 0 auto;
|
|
|
|
+ .login-type-item{
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+ margin-top: 50px;
|
|
|
|
+ img{
|
|
|
|
+ height: 40px;
|
|
|
|
+ width: 40px;
|
|
|
|
+ margin-bottom: 4px;
|
|
|
|
+ }
|
|
|
|
+ span{
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ color: #666666;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ // .remember-cont {
|
|
|
|
+ // position: relative;
|
|
|
|
+ // margin-bottom: 20px;
|
|
|
|
+ // .warn-check-tip {
|
|
|
|
+ // position: absolute;
|
|
|
|
+ // min-width: 300px;
|
|
|
|
+ // left: 130px;
|
|
|
|
+ // top: 0;
|
|
|
|
+ // padding: 2px 10px;
|
|
|
|
+ // border: 1px solid #D1433A;
|
|
|
|
+ // background: #FFEAE9;
|
|
|
|
+ // color: #B72E18;
|
|
|
|
+ // font-size: 14px;
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|
|
|
|
+
|