system-phone 3.1.84 → 3.1.86
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 +1 -1
- package/src/components/LoginApp.vue +31 -38
package/package.json
CHANGED
|
@@ -243,11 +243,26 @@ export default {
|
|
|
243
243
|
data = '$' + cryptJS.RSAEncrypt(JSON.stringify(data))
|
|
244
244
|
const getLogin = await Vue.resetpost(`${this.$androidUtil.getProxyUrl()}/rs/logic/getLogin`, data, {resolveMsg: null, rejectMsg: null})
|
|
245
245
|
if (getLogin.data.states === '登录成功'){
|
|
246
|
-
//
|
|
247
|
-
Vue.$login.
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
246
|
+
// 初始化 Vue.$login
|
|
247
|
+
Vue.$login = Vue.prototype.$login = {
|
|
248
|
+
jwt: getLogin.data.jwt,
|
|
249
|
+
jwtNew: getLogin.data.jwtNew,
|
|
250
|
+
'v3-session-key': getLogin.data.s ? cryptJS.RSADecrypt(getLogin.data.s) : '',
|
|
251
|
+
toStandardDateString() {
|
|
252
|
+
const dt = new Date()
|
|
253
|
+
const month = dt.getMonth() + 1
|
|
254
|
+
const date = dt.getDate()
|
|
255
|
+
return `${dt.getFullYear()}-${month < 10 ? '0' + month : month}-${date < 10 ? '0' + date : date}`
|
|
256
|
+
},
|
|
257
|
+
toStandardTimeString() {
|
|
258
|
+
const dt = new Date()
|
|
259
|
+
const month = dt.getMonth() + 1
|
|
260
|
+
const date = dt.getDate()
|
|
261
|
+
const hour = dt.getHours()
|
|
262
|
+
const min = dt.getMinutes()
|
|
263
|
+
const sec = dt.getSeconds()
|
|
264
|
+
return `${dt.getFullYear()}-${month < 10 ? '0' + month : month}-${date < 10 ? '0' + date : date} ${hour < 10 ? '0' + hour : hour}:${min < 10 ? '0' + min : min}:${sec < 10 ? '0' + sec : sec}`
|
|
265
|
+
}
|
|
251
266
|
}
|
|
252
267
|
// 调用远程登录服务,获取所有有权访问的功能
|
|
253
268
|
data = {username: this.ename, password: this.password}
|
|
@@ -265,9 +280,9 @@ export default {
|
|
|
265
280
|
}
|
|
266
281
|
// 设置登录人
|
|
267
282
|
if ((JSON.stringify(ret.data).startsWith("{") || JSON.stringify(ret.data).data.startsWith("[")) && ret.data.code && ret.data.msg && ret.data.code === 200) {
|
|
268
|
-
Vue.user = Util.f = ret.data.data
|
|
283
|
+
Vue.user = Vue.$login.f = Util.f = ret.data.data
|
|
269
284
|
} else {
|
|
270
|
-
Vue.user = Util.f = ret.data
|
|
285
|
+
Vue.user = Vue.$login.f = Util.f = ret.data
|
|
271
286
|
}
|
|
272
287
|
// 功能排序
|
|
273
288
|
if ((JSON.stringify(ret.data).startsWith("{") || JSON.stringify(ret.data).data.startsWith("[")) && ret.data.code && ret.data.msg && ret.data.code === 200) {
|
|
@@ -276,11 +291,15 @@ export default {
|
|
|
276
291
|
Vue.functions = this.sortFunctions(ret.data.functions)
|
|
277
292
|
}
|
|
278
293
|
}else {
|
|
294
|
+
Vue.$login.s = null
|
|
295
|
+
Vue.$login['v3-session-key'] = null
|
|
279
296
|
this.loaderShow = false
|
|
280
297
|
this.$showMessage(getLogin.data.states)
|
|
281
298
|
return
|
|
282
299
|
}
|
|
283
300
|
}catch (e) {
|
|
301
|
+
Vue.$login.s = null
|
|
302
|
+
Vue.$login['v3-session-key'] = null
|
|
284
303
|
if (Vue.android) {
|
|
285
304
|
this.loaderShow = false
|
|
286
305
|
this.$showMessage(e.message ? e.message : '登录失败!用户名或密码错误!')
|
|
@@ -288,42 +307,16 @@ export default {
|
|
|
288
307
|
return
|
|
289
308
|
}
|
|
290
309
|
}
|
|
291
|
-
//
|
|
292
|
-
let jwt = ''
|
|
293
|
-
let access_token = ''
|
|
294
|
-
let sessionKey = ''
|
|
310
|
+
// 更新 jwt(Vue.$login 已在 getLogin 成功后初始化)
|
|
295
311
|
if(Vue.isafsystem){
|
|
296
|
-
jwt = loginData.id
|
|
297
|
-
|
|
312
|
+
Vue.$login.jwt = loginData.id
|
|
313
|
+
Vue.$login.jwtNew = ret.data.access_token
|
|
298
314
|
}else{
|
|
299
315
|
console.log("ret", ret)
|
|
300
316
|
if ((JSON.stringify(ret.data).startsWith("{") || JSON.stringify(ret.data).startsWith("[")) && ret.data.code && ret.data.msg && ret.data.code === 200) {
|
|
301
|
-
jwt = ret.data.data.id
|
|
317
|
+
Vue.$login.jwt = ret.data.data.id
|
|
302
318
|
}else{
|
|
303
|
-
jwt = ret.data.id
|
|
304
|
-
}
|
|
305
|
-
sessionKey = Vue.$login ? Vue.$login['v3-session-key'] : ''
|
|
306
|
-
access_token = Vue.$login ? Vue.$login.jwtNew : ''
|
|
307
|
-
}
|
|
308
|
-
// 初始化 Vue.$login
|
|
309
|
-
Vue.$login = Vue.prototype.$login = {
|
|
310
|
-
jwt: jwt,
|
|
311
|
-
jwtNew: access_token,
|
|
312
|
-
'v3-session-key': sessionKey,
|
|
313
|
-
toStandardDateString() {
|
|
314
|
-
const dt = new Date()
|
|
315
|
-
const month = dt.getMonth() + 1
|
|
316
|
-
const date = dt.getDate()
|
|
317
|
-
return `${dt.getFullYear()}-${month < 10 ? '0' + month : month}-${date < 10 ? '0' + date : date}`
|
|
318
|
-
},
|
|
319
|
-
toStandardTimeString() {
|
|
320
|
-
const dt = new Date()
|
|
321
|
-
const month = dt.getMonth() + 1
|
|
322
|
-
const date = dt.getDate()
|
|
323
|
-
const hour = dt.getHours()
|
|
324
|
-
const min = dt.getMinutes()
|
|
325
|
-
const sec = dt.getSeconds()
|
|
326
|
-
return `${dt.getFullYear()}-${month < 10 ? '0' + month : month}-${date < 10 ? '0' + date : date} ${hour < 10 ? '0' + hour : hour}:${min < 10 ? '0' + min : min}:${sec < 10 ? '0' + sec : sec}`
|
|
319
|
+
Vue.$login.jwt = ret.data.id
|
|
327
320
|
}
|
|
328
321
|
}
|
|
329
322
|
// 对资源菜单进行排序
|