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.
- package/package.json +105 -105
- package/src/components/Main.vue +182 -202
- package/src/components/server/Login.vue +5 -0
- package/src/filiale/dongguan/Main.vue +1 -1
- package/src/filiale/furuike/Main.vue +1 -1
- package/src/filiale/gehua/Main.vue +1 -1
- package/src/filiale/qianneng/Main.vue +1 -1
- package/src/filiale/rizhao/Main.vue +1 -1
- package/src/filiale/wenxi/Main.vue +1 -1
- package/src/filiale/wuhai/LeftTree.vue +17 -6
- package/src/filiale/wuhai/Main.vue +22 -5
- package/src/filiale/yuchuan/Main.vue +773 -869
- package/src/filiale/zhoukou/Main.vue +1 -1
- package/src/plugins/GetLoginInfoService.js +7 -3
@@ -363,7 +363,7 @@ export default {
|
|
363
363
|
}
|
364
364
|
},
|
365
365
|
openUrl() {
|
366
|
-
var url = `http://
|
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
|
-
|
209
|
-
|
210
|
-
|
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
|
|