@das-fed/utils 7.0.0 → 7.0.1-beta.2

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.
Files changed (37) hide show
  1. package/api-services/modules/authentication/index.js +717 -735
  2. package/api-services/modules/authentication/index.js.gz +0 -0
  3. package/api-services/modules/bems/index.js +747 -765
  4. package/api-services/modules/bems/index.js.gz +0 -0
  5. package/api-services/modules/contract/index.js +719 -733
  6. package/api-services/modules/contract/index.js.gz +0 -0
  7. package/api-services/modules/duty-manage/index.js +759 -745
  8. package/api-services/modules/duty-manage/index.js.gz +0 -0
  9. package/api-services/modules/enterpriseright/index.js +735 -717
  10. package/api-services/modules/enterpriseright/index.js.gz +0 -0
  11. package/api-services/modules/index.js +819 -837
  12. package/api-services/modules/index.js.gz +0 -0
  13. package/api-services/modules/justauth/index.js +763 -745
  14. package/api-services/modules/justauth/index.js.gz +0 -0
  15. package/api-services/modules/knowledge/index.js +717 -735
  16. package/api-services/modules/knowledge/index.js.gz +0 -0
  17. package/api-services/modules/link/index.js +717 -735
  18. package/api-services/modules/link/index.js.gz +0 -0
  19. package/api-services/modules/platformManage/index.js +747 -765
  20. package/api-services/modules/platformManage/index.js.gz +0 -0
  21. package/api-services/modules/portal/index.js +717 -735
  22. package/api-services/modules/portal/index.js.gz +0 -0
  23. package/api-services/modules/space-manage/index.js +719 -733
  24. package/api-services/modules/space-manage/index.js.gz +0 -0
  25. package/api-services/modules/supplier/index.js +764 -746
  26. package/api-services/modules/supplier/index.js.gz +0 -0
  27. package/api-services/modules/tool/index.js +717 -735
  28. package/api-services/modules/tool/index.js.gz +0 -0
  29. package/api-services/src/create-service/index.js +734 -716
  30. package/api-services/src/create-service/index.js.gz +0 -0
  31. package/common-info/type.d.ts +11 -7
  32. package/common-tools/get-url-params/index.d.ts +1 -1
  33. package/create-api-service/index.js +716 -734
  34. package/create-api-service/index.js.gz +0 -0
  35. package/create-api-service/sso/index.js +411 -412
  36. package/create-api-service/sso/index.js.gz +0 -0
  37. package/package.json +4 -4
@@ -175,17 +175,21 @@ export interface ProjectMessage {
175
175
 
176
176
  export interface SubAppsInfo {
177
177
  /** 所有应用信息 */
178
- appcategorys?: any[]
178
+ appcategorys: any[]
179
179
  /** 当前应用完整信息 */
180
- currentSubApp?: any
181
- /** 所有应用 */
182
- flatSubAppList?: any[]
180
+ currentSubApp: {
181
+ /** 当前菜单code */
182
+ currentMenuCode: string
183
+ /** 当前应用下的菜单数据 */
184
+ menus: any[]
185
+ [key: string]: any
186
+ }
183
187
  /** 当前应用code */
184
- currentSubAppCode?: string
188
+ currentSubAppCode: string
185
189
  /** 当前打开的应用 */
186
- subAppList?: any[]
190
+ subAppList: any[]
187
191
  /** 当前菜单折叠的应用key集合 */
188
- menuCollapses?: any[]
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