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 +1 -1
- package/src/utils/auth-api.js +3 -3
- package/src/utils/auth.js +2 -2
package/package.json
CHANGED
package/src/utils/auth-api.js
CHANGED
|
@@ -109,11 +109,11 @@ function setCurrentUser(userInfo) {
|
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
111
|
* 获得缓存的key。判断运行平台还是开发平台
|
|
112
|
-
* @param {}
|
|
112
|
+
* @param {} orrCacheKey
|
|
113
113
|
* @returns
|
|
114
114
|
*/
|
|
115
|
-
function getRunInfoKey(
|
|
116
|
-
let newKey =
|
|
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