Browse Source

1、密码过期提示保留一个

hella_online_20240911
bjang03 1 week ago
parent
commit
542dc85c48
  1. 9
      src/views/login/components/LoginForm.vue

9
src/views/login/components/LoginForm.vue

@ -258,19 +258,16 @@
}
console.log('登陆res',res)
try{
await PassWordApi.validateResetTime(res.userId)
}catch (e) {
if (e.code === 1002000010) {
const msg = await PassWordApi.validateResetTime(res.userId)
if(msg){
await ElMessageBox.alert(
'<strong>密码长时间未修改,存在安全隐患,请及时修改</strong>',
'<strong>'+msg+'</strong>',
'重要提示',
{
dangerouslyUseHTMLString: true,
}
)
}
}
if (!res) {
console.log('登录-195')
getCode()

Loading…
Cancel
Save