system-clients 3.2.65-wuhai → 3.2.66-wuhai

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -205,9 +205,13 @@ let loginGen = async function (name, password, cue) {
205
205
  }
206
206
 
207
207
  } else {
208
- let error = {status: 401, data: getLogin.data.states}
209
- // 抛出错误
210
- throw error
208
+ if(getLogin.data.states.includes('您的密码已经使用超过')){
209
+ throw {status: 789, data: getLogin.data.states}
210
+ }else{
211
+ let error = {status: 401, data: getLogin.data.states}
212
+ // 抛出错误
213
+ throw error
214
+ }
211
215
  }
212
216
  }
213
217