|
@@ -3,7 +3,7 @@
|
|
|
<div id="login_wrapper">
|
|
|
<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 />
|
|
|
- <el-form
|
|
|
+ <!-- <el-form
|
|
|
:model="ruleForm"
|
|
|
:rules="rules"
|
|
|
ref="ruleForm"
|
|
@@ -71,8 +71,70 @@
|
|
|
>登录</el-button
|
|
|
>
|
|
|
</el-form-item>
|
|
|
- </el-form>
|
|
|
+ </el-form> -->
|
|
|
+ <div class="login-box" id="login-container" v-if="activeModel!=='forgetPassModel'">
|
|
|
+ <h1 style="font-size: 38px;text-align: center;color: #333;margin-bottom: 30px;">
|
|
|
+ 运营管理系统
|
|
|
+ </h1>
|
|
|
+ <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>
|
|
|
|
|
@@ -80,7 +142,12 @@
|
|
|
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"
|
|
|
export default {
|
|
|
+ components: { OrdinaryModel, MobileModel, EmailModel, ForgetPassModel },
|
|
|
data() {
|
|
|
return {
|
|
|
b: new http.Base64(),
|
|
@@ -107,17 +174,33 @@ 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'
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
this.keyupSubmit() //回车登录
|
|
|
- let userAccount = localStorage.getItem('account') || null
|
|
|
+ /* 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;
|
|
|
- }
|
|
|
+ } */
|
|
|
+ this.getPhoneCode();//获取手机号区号
|
|
|
+ },
|
|
|
+ mounted(){
|
|
|
+ this.getRememberedInfo()
|
|
|
},
|
|
|
methods: {
|
|
|
keyupSubmit() {
|
|
@@ -125,7 +208,8 @@ export default {
|
|
|
document.onkeydown = e => {
|
|
|
let keyval = window.event.keyCode
|
|
|
if (keyval === 13) {
|
|
|
- this.handleSubmit2()
|
|
|
+ //this.handleSubmit2()
|
|
|
+ !this.logining&&this.handleLogin()
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -221,6 +305,189 @@ export default {
|
|
|
}
|
|
|
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())
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ //判断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 = await this.getOtherRolePath('myCalendar');
|
|
|
+ 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
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
destroyed(){
|
|
@@ -228,7 +495,19 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-
|
|
|
+<style lang="scss">
|
|
|
+#login{
|
|
|
+ .el-tabs__nav {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+ .el-tabs__item{
|
|
|
+ font-size: 18px;
|
|
|
+ flex: 1;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
<style lang="scss" scoped>
|
|
|
#login {
|
|
|
width: 100%;
|
|
@@ -262,7 +541,7 @@ export default {
|
|
|
width: 8%;
|
|
|
}
|
|
|
|
|
|
- #login-container {
|
|
|
+ #login-container,.login-box{
|
|
|
width: 31%;
|
|
|
max-width: 570px;
|
|
|
box-sizing: border-box;
|
|
@@ -280,7 +559,7 @@ export default {
|
|
|
}
|
|
|
.submit_btn {
|
|
|
width: 100%;
|
|
|
- height: 40px;
|
|
|
+ height: 50px;
|
|
|
background: #007eff;
|
|
|
font-size: 16px;
|
|
|
border-radius: 5px;
|