system-clients 3.2.67 → 3.2.68-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.
@@ -363,7 +363,7 @@ export default {
363
363
  }
364
364
  },
365
365
  openUrl() {
366
- var url = `http://123.60.214.109:8406/submitTicket?personName=${this.$login.f.name}&orgName=${this.$login.f.orgs}`
366
+ var url = `http://aote-office.8866.org:8406/submitTicket?personName=${this.$login.f.name}&orgName=${this.$login.f.orgs}`
367
367
  window.open(url, '_blank')
368
368
  },
369
369
  hindsetting() {
@@ -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