@das-fed/utils 7.0.0 → 7.0.1-beta.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.
- package/api-services/modules/app-manage/index.js +719 -733
- package/api-services/modules/app-manage/index.js.gz +0 -0
- package/api-services/modules/authentication/index.js +717 -735
- package/api-services/modules/authentication/index.js.gz +0 -0
- package/api-services/modules/bems/index.js +747 -765
- package/api-services/modules/bems/index.js.gz +0 -0
- package/api-services/modules/contract/index.js +717 -735
- package/api-services/modules/contract/index.js.gz +0 -0
- package/api-services/modules/duty-manage/index.js +759 -745
- package/api-services/modules/duty-manage/index.js.gz +0 -0
- package/api-services/modules/enterpriseright/index.js +735 -717
- package/api-services/modules/enterpriseright/index.js.gz +0 -0
- package/api-services/modules/justauth/index.js +763 -745
- package/api-services/modules/justauth/index.js.gz +0 -0
- package/api-services/modules/space-manage/index.js +717 -735
- package/api-services/modules/space-manage/index.js.gz +0 -0
- package/api-services/modules/supplier/index.js +764 -746
- package/api-services/modules/supplier/index.js.gz +0 -0
- package/api-services/src/create-service/index.js +734 -716
- package/api-services/src/create-service/index.js.gz +0 -0
- package/common-info/type.d.ts +11 -7
- package/common-tools/get-url-params/index.d.ts +1 -1
- package/create-api-service/index.js +716 -734
- package/create-api-service/index.js.gz +0 -0
- package/create-api-service/sso/index.js +411 -412
- package/create-api-service/sso/index.js.gz +0 -0
- package/package.json +4 -4
|
Binary file
|
package/common-info/type.d.ts
CHANGED
|
@@ -175,17 +175,21 @@ export interface ProjectMessage {
|
|
|
175
175
|
|
|
176
176
|
export interface SubAppsInfo {
|
|
177
177
|
/** 所有应用信息 */
|
|
178
|
-
appcategorys
|
|
178
|
+
appcategorys: any[]
|
|
179
179
|
/** 当前应用完整信息 */
|
|
180
|
-
currentSubApp
|
|
181
|
-
|
|
182
|
-
|
|
180
|
+
currentSubApp: {
|
|
181
|
+
/** 当前菜单code */
|
|
182
|
+
currentMenuCode: string
|
|
183
|
+
/** 当前应用下的菜单数据 */
|
|
184
|
+
menus: any[]
|
|
185
|
+
[key: string]: any
|
|
186
|
+
}
|
|
183
187
|
/** 当前应用code */
|
|
184
|
-
currentSubAppCode
|
|
188
|
+
currentSubAppCode: string
|
|
185
189
|
/** 当前打开的应用 */
|
|
186
|
-
subAppList
|
|
190
|
+
subAppList: any[]
|
|
187
191
|
/** 当前菜单折叠的应用key集合 */
|
|
188
|
-
menuCollapses
|
|
192
|
+
menuCollapses: any[]
|
|
189
193
|
}
|
|
190
194
|
|
|
191
195
|
interface TabItem {
|
|
@@ -13,7 +13,7 @@ export declare const getUrlParams: (allUrl?: string, queryName?: string) => any;
|
|
|
13
13
|
*/
|
|
14
14
|
export declare const getFullPath: (url: string, queryObj?: any) => string;
|
|
15
15
|
/**
|
|
16
|
-
* 删除url中指定的参数,并返回最终的url
|
|
16
|
+
* 删除url中指定的参数,并返回最终的url(废弃,暂留)
|
|
17
17
|
* @param queryNames 数组,需要删除的参数名集合
|
|
18
18
|
* @param url 指定url
|
|
19
19
|
* @returns
|