system-clients 4.0.19 → 4.1.1

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.
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-clients",
3
- "version": "4.0.19",
3
+ "version": "4.1.1",
4
4
  "description": "系统基础框架",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -228,6 +228,7 @@
228
228
  rejectMsg: null,
229
229
  resolveMsg: null
230
230
  })
231
+ this.search()
231
232
  },
232
233
  // 批量操作
233
234
  async batchRoot(val) {
@@ -183,7 +183,7 @@ let GetLoginInfoService = {
183
183
  if (cue === undefined || cue === null || cue === '') {
184
184
  cue = true
185
185
  }
186
- Vue.$login.SinglePageToken = cryptJS.AESEncrypt(JSON.stringify({name,password}), "3KMKqvgwR8ULbR8Z")
186
+ Vue.$login.SinglePageToken = cryptJS.AESEncrypt(JSON.stringify({name,password, now: Date.now()}), "3KMKqvgwR8ULbR8Z")
187
187
  return loginGen(name, password, cue)
188
188
  },
189
189