@das-fed/web 6.4.0-dev.60 → 6.4.0-dev.62
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/{index-D6wvy23o.js → index-Bc1IIoKP.js} +1 -1
- package/index-Bc1IIoKP.js.gz +0 -0
- package/index-CsmcL2-s.js +8243 -0
- package/index-CsmcL2-s.js.gz +0 -0
- package/{index-DSodtjfX.js → index-yxVjdRIa.js} +1 -1
- package/index.js +1 -1
- package/package.json +6 -6
- package/packages/main-app-framework/{index-DJS2UJ9p.js → index-B8jAPmN5.js} +1 -1
- package/packages/main-app-framework/{index-VFl407K9.js → index-Ca7RCE2Q.js} +1 -1
- package/packages/main-app-framework/index-Ca7RCE2Q.js.gz +0 -0
- package/packages/main-app-framework/index-DwTe74vJ.js +6861 -0
- package/packages/main-app-framework/index-DwTe74vJ.js.gz +0 -0
- package/packages/main-app-framework/index.js +1 -1
- package/packages/main-app-framework/style.css +1 -1
- package/packages/main-app-framework/style.css.gz +0 -0
- package/style.css +1 -1
- package/style.css.gz +0 -0
- package/types/main-app-framework/components/person-set-dialog/src/api.d.ts +2 -0
- package/types/main-app-framework/components/person-set-dialog/src/components/index.d.ts +2 -0
- package/types/main-app-framework/components/person-set-dialog/src/components/set-home/api.d.ts +20 -0
- package/types/main-app-framework/components/person-set-dialog/src/components/set-home/use-link-form/hooks/use-builtIn-dialog.d.ts +19 -0
- package/types/main-app-framework/components/person-set-dialog/src/components/set-home/use-link-form/hooks/use-notBuiltIn-dialog.d.ts +22 -0
- package/types/main-app-framework/i18n/index.d.ts +20 -0
- package/index-D6wvy23o.js.gz +0 -0
- package/index-DHTeOa5D.js +0 -7623
- package/index-DHTeOa5D.js.gz +0 -0
- package/packages/main-app-framework/index-VFl407K9.js.gz +0 -0
- package/packages/main-app-framework/index-dN-CBG0Y.js +0 -6241
- package/packages/main-app-framework/index-dN-CBG0Y.js.gz +0 -0
package/types/main-app-framework/components/person-set-dialog/src/components/set-home/api.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/** 获取个人门户首页详情 */
|
|
2
|
+
export declare const userHomePageDetailApi: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
3
|
+
/** 删除个人门户首页详情 */
|
|
4
|
+
export declare const deleteUserHomePageApi: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
5
|
+
/** 获取门户首页展示类型 */
|
|
6
|
+
export declare const homePageTypesApi: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
7
|
+
/** 门户管理树懒加载(租户级) */
|
|
8
|
+
export declare const portalTree: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
9
|
+
/** 门户管理树查询 */
|
|
10
|
+
export declare const portalTreeSearch: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
11
|
+
/** 查询设备编排 */
|
|
12
|
+
export declare const deviceOrchestration: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
13
|
+
/** 查询图纸编排 */
|
|
14
|
+
export declare const drawingOrchestration: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
15
|
+
/** 查询数据编排 */
|
|
16
|
+
export declare const dataOrchestration: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
17
|
+
/** 查询轻分析 */
|
|
18
|
+
export declare const workbench: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
19
|
+
/** 查询流程引擎 */
|
|
20
|
+
export declare const formList: (payload?: any, payloadConfig?: import('@das-fed/utils/curring-http/type').CurringConfig) => import('@das-fed/utils/curring-http/type').CurringRes;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
|
|
3
|
+
export declare const useBuiltInDialog: (options: {
|
|
4
|
+
orgInfo: any;
|
|
5
|
+
information: Ref<any>;
|
|
6
|
+
validate: any;
|
|
7
|
+
}) => {
|
|
8
|
+
builtInDialog: Ref<any, any>;
|
|
9
|
+
$typeTree: any;
|
|
10
|
+
treeId: Ref<any, any>;
|
|
11
|
+
treePath: Ref<any, any>;
|
|
12
|
+
keyword: Ref<any, any>;
|
|
13
|
+
treeData: Ref<any, any>;
|
|
14
|
+
openBuiltInDialog: () => void;
|
|
15
|
+
loadChildNode: (nodeData: any) => unknown;
|
|
16
|
+
search: (name: string) => unknown;
|
|
17
|
+
toggleTree: (data: any) => void;
|
|
18
|
+
confirmFormBuiltIn: () => void;
|
|
19
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
|
|
3
|
+
export declare const useNotBuiltInDialog: (options: {
|
|
4
|
+
orgInfo: any;
|
|
5
|
+
information: Ref<any>;
|
|
6
|
+
}) => {
|
|
7
|
+
loading: Ref<any, any>;
|
|
8
|
+
urlDialog: Ref<any, any>;
|
|
9
|
+
urlType: Ref<any, any>;
|
|
10
|
+
urlTypeOptions: Ref<any, any>;
|
|
11
|
+
tableData: Ref<any, any>;
|
|
12
|
+
pageSize: Ref<any, any>;
|
|
13
|
+
pageIndex: Ref<any, any>;
|
|
14
|
+
totalCount: Ref<any, any>;
|
|
15
|
+
tableFilter: Ref<any, any>;
|
|
16
|
+
urlId: Ref<any, any>;
|
|
17
|
+
openUrlDialog: () => void;
|
|
18
|
+
tableChange: (val: string | number, row: any, index: number) => void;
|
|
19
|
+
confirmUrl: () => void;
|
|
20
|
+
changeType: (data: any) => void;
|
|
21
|
+
getTable: () => void;
|
|
22
|
+
};
|
|
@@ -379,6 +379,11 @@ declare const _default: {
|
|
|
379
379
|
en: string;
|
|
380
380
|
_appCode: string;
|
|
381
381
|
};
|
|
382
|
+
个性化设置: {
|
|
383
|
+
'zh-CN': string;
|
|
384
|
+
en: string;
|
|
385
|
+
_appCode: string;
|
|
386
|
+
};
|
|
382
387
|
主题设置: {
|
|
383
388
|
'zh-CN': string;
|
|
384
389
|
en: string;
|
|
@@ -469,5 +474,20 @@ declare const _default: {
|
|
|
469
474
|
en: string;
|
|
470
475
|
_appCode: string;
|
|
471
476
|
};
|
|
477
|
+
展示类型: {
|
|
478
|
+
'zh-CN': string;
|
|
479
|
+
en: string;
|
|
480
|
+
_appCode: string;
|
|
481
|
+
};
|
|
482
|
+
链接: {
|
|
483
|
+
'zh-CN': string;
|
|
484
|
+
en: string;
|
|
485
|
+
_appCode: string;
|
|
486
|
+
};
|
|
487
|
+
别名: {
|
|
488
|
+
'zh-CN': string;
|
|
489
|
+
en: string;
|
|
490
|
+
_appCode: string;
|
|
491
|
+
};
|
|
472
492
|
};
|
|
473
493
|
export default _default;
|
package/index-D6wvy23o.js.gz
DELETED
|
Binary file
|