|
|
@ -115,7 +115,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
// 是否禁止网页登录
|
|
|
|
// 是否禁止网页登录
|
|
|
|
/* isProhibited().then((res) => {
|
|
|
|
isProhibited().then((res) => {
|
|
|
|
if (res.data) {
|
|
|
|
if (res.data) {
|
|
|
|
console.log(res.data, 'isProhibited')
|
|
|
|
console.log(res.data, 'isProhibited')
|
|
|
|
if (/wxwork/i.test(navigator.userAgent)) {
|
|
|
|
if (/wxwork/i.test(navigator.userAgent)) {
|
|
|
@ -129,7 +129,7 @@ export default {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}) */
|
|
|
|
})
|
|
|
|
// 租户开关
|
|
|
|
// 租户开关
|
|
|
|
// this.tenantEnable = getTenantEnable();
|
|
|
|
// this.tenantEnable = getTenantEnable();
|
|
|
|
// if (this.tenantEnable) {
|
|
|
|
// if (this.tenantEnable) {
|
|
|
@ -155,15 +155,6 @@ export default {
|
|
|
|
// // 发送code获取成员信息
|
|
|
|
// // 发送code获取成员信息
|
|
|
|
sendCode({ code: this.code, state: this.state, type: 40 })
|
|
|
|
sendCode({ code: this.code, state: this.state, type: 40 })
|
|
|
|
.then(async (res) => {
|
|
|
|
.then(async (res) => {
|
|
|
|
if (res.data.code == 500) {
|
|
|
|
|
|
|
|
/* Toast.loading({
|
|
|
|
|
|
|
|
duration: 3, // 持续展示 toast
|
|
|
|
|
|
|
|
forbidClick: false,
|
|
|
|
|
|
|
|
message: res.data.msg,
|
|
|
|
|
|
|
|
}) */
|
|
|
|
|
|
|
|
this.firstLogin = true
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
await setToken(res.data)
|
|
|
|
await setToken(res.data)
|
|
|
|
await this.$store.dispatch(
|
|
|
|
await this.$store.dispatch(
|
|
|
|
'common/user/setAuthorization',
|
|
|
|
'common/user/setAuthorization',
|
|
|
@ -186,7 +177,16 @@ export default {
|
|
|
|
window.location.href = process.env.VUE_APP_BASE_API + '/#/home'
|
|
|
|
window.location.href = process.env.VUE_APP_BASE_API + '/#/home'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
.catch((error) => {
|
|
|
|
console.log(error, 'error')
|
|
|
|
this.$loading(false)
|
|
|
|
|
|
|
|
Toast({
|
|
|
|
|
|
|
|
duration: 3000, // 持续展示 toast
|
|
|
|
|
|
|
|
forbidClick: false,
|
|
|
|
|
|
|
|
message: '请输入账号密码首次绑定',
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
this.firstLogin = true
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|