|
@@ -75,7 +75,9 @@
|
|
|
/>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="手机号登录" name="mobileModel">
|
|
|
- <MobileModel ref="mobileModel"/>
|
|
|
+ <MobileModel ref="mobileModel"
|
|
|
+ :areaCode="areaCode"
|
|
|
+ />
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="邮箱登录" name="emailModel">
|
|
|
<EmailModel ref="emailModel"/>
|
|
@@ -94,6 +96,27 @@
|
|
|
@changeModel="activeModel = '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"/>
|
|
|
+ </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" @click="isCheckDialogShow = false">提 交</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -141,17 +164,32 @@ export default {
|
|
|
accountForbidden:false,//账号被禁用
|
|
|
mobileCheck:false,//手机号未绑定
|
|
|
emailCheck:false,//邮箱未绑定
|
|
|
+ areaCode:[],
|
|
|
+
|
|
|
+ isCheckDialogShow:false,
|
|
|
+ checkActiveModel:'checkMobileModel'
|
|
|
|
|
|
};
|
|
|
},
|
|
|
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;
|
|
|
+ this.getPhoneCode();//获取手机号区号
|
|
|
+ },
|
|
|
+ mounted(){
|
|
|
+ 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.ruleForm.account = this.b.decode(userAccount);
|
|
|
+ this.ruleForm.checkPass = this.b.decode(userCheckPass);
|
|
|
+ this.checked = true; */
|
|
|
+ this.$refs.ordinaryModel.form = {
|
|
|
+ account:this.b.decode(userAccount),
|
|
|
+ checkPass:this.b.decode(userCheckPass),
|
|
|
+ checked:true
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -160,7 +198,8 @@ export default {
|
|
|
document.onkeydown = (e) => {
|
|
|
let keyval = window.event.keyCode;
|
|
|
if (keyval === 13) {
|
|
|
- this.handleSubmit2();
|
|
|
+ //this.handleSubmit2();
|
|
|
+ this.handleClick()
|
|
|
}
|
|
|
};
|
|
|
},
|
|
@@ -249,24 +288,112 @@ 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()
|
|
|
},
|
|
|
handleLogin(){
|
|
|
//先进行判空的表单验证
|
|
|
this.$refs[this.activeModel].$refs.modelForm.validate((valid)=>{
|
|
|
if(valid){
|
|
|
//根据activeName 调用不同的登陆接口
|
|
|
- //账号密码错误 将loginCheck置为true
|
|
|
- //账号异常 将accountCheck置为true
|
|
|
- this.loginCheck = !this.loginCheck
|
|
|
- //都Ok就进系统
|
|
|
+ //账号密码
|
|
|
+ if(this.activeModel==='ordinaryModel'){
|
|
|
+ const {account,checkPass,checked} = this.$refs.ordinaryModel.form
|
|
|
+ departInterence.userLogin({
|
|
|
+ LoginType:1,
|
|
|
+ Username:account,
|
|
|
+ Password:md5.hex_md5(checkPass)
|
|
|
+ }).then(res=>{
|
|
|
+ //账号异常 将accountCheck置为true
|
|
|
+ if(res.Ret===4011){
|
|
|
+ this.accountCheck = true
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //账号密码错误 将loginCheck置为true
|
|
|
+ if(res.Ret===402){
|
|
|
+ this.loginCheck = true
|
|
|
+ }
|
|
|
+ if(res.Ret!==200) 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)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ //this.loginCheck = !this.loginCheck
|
|
|
+ //都Ok就进系统
|
|
|
+ //this.isCheckDialogShow = true
|
|
|
+ //手机号登录
|
|
|
+ //邮箱登录
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
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){
|
|
|
+ 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 });
|
|
|
}
|
|
|
+
|
|
|
},
|
|
|
destroyed() {
|
|
|
document.onkeydown = null;
|
|
@@ -285,6 +412,23 @@ export default {
|
|
|
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>
|
|
@@ -338,7 +482,7 @@ export default {
|
|
|
}
|
|
|
.submit_btn {
|
|
|
width: 100%;
|
|
|
- height: 60px;
|
|
|
+ height: 50px;
|
|
|
background: #3654C1;
|
|
|
font-size: 20px;
|
|
|
border-radius: 5px;
|