system-clients 3.2.47 → 3.2.49
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/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/package.json +1 -1
- package/src/components/server/Login.vue +567 -567
- package/src/filiale/chengtou/system.js +5 -5
- package/src/filiale/furuike/Login.vue +6 -0
- package/src/filiale/furuike/Main.vue +815 -815
- package/src/filiale/qianneng/system.js +8 -8
- package/src/filiale/tongchuan/Login.vue +561 -559
- package/src/filiale/zhoukou/Main.vue +806 -806
- package/src/filiale/zhoukou/system.js +6 -6
@@ -1,5 +1,5 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
|
3
|
-
exports.specialComp = {
|
4
|
-
'login': (resolve) => require(['./Login'], resolve)
|
5
|
-
}
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
|
3
|
+
exports.specialComp = {
|
4
|
+
'login': (resolve) => require(['./Login'], resolve)
|
5
|
+
}
|
@@ -275,6 +275,12 @@ export default {
|
|
275
275
|
// this.$showMessage("re----" + JSON.stringify(this.model))
|
276
276
|
let gen = saveGen(this)
|
277
277
|
return co(gen)
|
278
|
+
} else {
|
279
|
+
this.$showMessage('此账户不存在,请重试!!!', ['confirm']).then((res) => {
|
280
|
+
if(res === 'confirm') {
|
281
|
+
this.showlogin = true
|
282
|
+
}
|
283
|
+
})
|
278
284
|
}
|
279
285
|
})
|
280
286
|
} else {
|