agilebuilder-ui 1.0.5 → 1.0.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agilebuilder-ui",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./lib/super-ui.js",
@@ -109,11 +109,11 @@ function setCurrentUser(userInfo) {
109
109
  }
110
110
  /**
111
111
  * 获得缓存的key。判断运行平台还是开发平台
112
- * @param {} orgKey
112
+ * @param {} orrCacheKey
113
113
  * @returns
114
114
  */
115
- function getRunInfoKey(orgKey) {
116
- let newKey = orgKey
115
+ function getRunInfoKey(orrCacheKey) {
116
+ let newKey = orrCacheKey
117
117
  let isDevp = isDevpSystem()
118
118
  if(!isDevp) {
119
119
  // 表示不是开发平台功能时,运行平台或直接访问平台功能时
package/src/utils/auth.js CHANGED
@@ -101,6 +101,6 @@ export function isDevpSystem() {
101
101
  return authApi.isDevpSystem()
102
102
  }
103
103
 
104
- export function getRunInfoKey() {
105
- return authApi.getRunInfoKey()
104
+ export function getRunInfoKey(orrCacheKey) {
105
+ return authApi.getRunInfoKey(orrCacheKey)
106
106
  }