system-clients 3.1.93-aode → 3.1.94-aode
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/.npmignore +10 -0
- package/build/.npmignore +1 -0
- package/package-lock.json +10507 -0
- package/package.json +1 -1
- package/src/.npmignore +1 -0
- package/src/plugins/GetLoginInfoService.js +5 -5
package/package.json
CHANGED
package/src/.npmignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
/main.js
|
@@ -181,11 +181,11 @@ let loginGen = async function (name, password) {
|
|
181
181
|
//暂时不出现不出现异地登录校验
|
182
182
|
http.load('POST', `rs/user/access/${Vue.$login.f.id}`, {}, {resolveMsg: null, rejectMsg: null}).then((req) => {
|
183
183
|
if(req.data.status==710){
|
184
|
-
Vue.showMessage(req.data.msg+",您将被强制退出系统", ['confirm']).then((res) => {
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
})
|
184
|
+
// Vue.showMessage(req.data.msg+",您将被强制退出系统", ['confirm']).then((res) => {
|
185
|
+
// if (res === 'confirm') {
|
186
|
+
// location.reload()
|
187
|
+
// }
|
188
|
+
// })
|
189
189
|
}
|
190
190
|
})
|
191
191
|
}, 2 * 60 * 1000)
|