@quickbi/bi-types 3.0.51 → 3.0.52-beta.0
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/cjs/index.d.ts +1001 -834
- package/cjs/index.js +224 -18
- package/esm/index.d.ts +1001 -834
- package/esm/index.mjs +224 -18
- package/package.json +1 -1
package/esm/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// ../../../../../react
|
|
4
4
|
|
|
5
5
|
declare module '@quickbi/bi-types' {
|
|
6
|
-
export { CommonCompInputAreaTypeEnum, DataConfig, DataConfigAreaItemColumn, DataPanelDataSchema, DataSchemaAreaItem, OperationMenuItem, DropdownMenuItem, OperationTypes, Aggregators, FieldConfigTypes, ContrastTypes, AdvanceCalTypes, AdvanceCalcDateTypes, NumberFormats, AlignTypes, VerticalAlignTypes, AlignmentCategory, SortTypes, FieldChartTypes, ImageSizes, CUSTOM_FIELD_TYPES, FieldType, QueryAxisType, DropDownMenuType, SecondFieldType, ChartStatus, StackedSortType, ResultMode, RetainAreaId, ConfigCellType, ConfigColumnType, CheckBoxState, FieldGroupType, DataSchemaRule, TableType, TableDirection, ProportionType, AccumulateCalcType, FieldCollectionType, LnglatGroupChildFlags, FieldGroupSelectorType, VirtualFieldOperation, NumberValueType, } from '@quickbi/bi-types/data-panel';
|
|
6
|
+
export { CommonCompInputAreaTypeEnum, DataConfig, DataConfigAreaItemColumn, DataPanelDataSchema, DataSchemaAreaItem, OperationMenuItem, DropdownMenuItem, OperationTypes, Aggregators, FieldConfigTypes, ContrastTypes, AdvanceCalTypes, AdvanceCalcDateTypes, NumberFormats, AlignTypes, VerticalAlignTypes, AlignmentCategory, SortTypes, FieldChartTypes, ImageSizes, CUSTOM_FIELD_TYPES, FieldType, QueryAxisType, DropDownMenuType, SecondFieldType, ChartStatus, StackedSortType, ResultMode, RetainAreaId, ConfigCellType, ConfigColumnType, CheckBoxState, FieldGroupType, DataSchemaRule, TableType, TableDirection, ProportionType, AccumulateCalcType, FieldCollectionType, LnglatGroupChildFlags, FieldGroupSelectorType, VirtualFieldOperation, NumberValueType, ContrastType, } from '@quickbi/bi-types/data-panel';
|
|
7
7
|
export type { CommonCompInputAreaType, FieldConfigs, FieldInfo, ChildFieldInfo, DropDownMenuFieldConfig, AlignConfig, AggregationConfig, AdvancedCalculationConfig, ContrastConfig, NumberFormatConfig, FieldRuntime, CompFieldConfig, LabelConfig, TimeTypeFilter, CommonCompInputComplexFilter, CommonCompInputComplexFilterItem, AreaMapItem, AreaMap, VirtualFieldInfo, ResetFieldConfigType, ResetMenuType, SortConfig, Message, OnFreshComponentType, OnFreshComponentOptions, OnChangeCubeOptions, ConfigCellOption, FieldConfigRow, FieldMenuConfig, ChangeFieldMenuConfigs, ColumnFieldInfo, FieldCollectionInfo, ValidateResult, TableCalculateParam, CalcOrder, TopNParams, AuxiliaryFieldConfig, EmptyValueDisplayFieldConfig, CountParams, PercentileParams, RankParams, CompareParams, DateAccumulateParams, ProportionParams, DifferenceParams, MovingCalculationParams, } from '@quickbi/bi-types/data-panel';
|
|
8
8
|
export { ComponentType, ChartType, ScreenComponentType, ScreenComponentCode } from '@quickbi/bi-types/component-type';
|
|
9
9
|
export { OlapResponseBase, CellMeta, RowColumnMeta, CrossTableColumnType, CrossTableColumnModel, CrossTableFieldSetting, CrossTableRowModel, CrossTableRowType, CrossTableTotalConfig, } from '@quickbi/bi-types/cross-table';
|
|
@@ -26,12 +26,12 @@ declare module '@quickbi/bi-types' {
|
|
|
26
26
|
export type { MenuMeta, MenuProps, MenuSchema, MenuSchemaBase, MenuSchemaItem } from '@quickbi/bi-types/open/menus/menu-schema';
|
|
27
27
|
export * from '@quickbi/bi-types/open/menus/menu-props';
|
|
28
28
|
export type { EmbedBaseSrc, EmbedBaseFeature, EmbedBaseEventMessageDTO, EmbedBaseEventMessageContent, EmbedBaseEventListener, EmbedBaseEventListenerReturn, } from '@quickbi/bi-types/open/embed/core';
|
|
29
|
-
export
|
|
29
|
+
export { OpenPageTypeEnum } from '@quickbi/bi-types/open/common/page-types';
|
|
30
30
|
export { OpenEventTypeEnum } from '@quickbi/bi-types/open/common/event-types';
|
|
31
31
|
export type { OpenDeviceTypeEnum } from '@quickbi/bi-types/open/common/misc';
|
|
32
32
|
export type { EnumAsUnion, Implements } from '@quickbi/bi-types/open/common/tools';
|
|
33
33
|
export { RouteKey } from '@quickbi/bi-types/router/route-key';
|
|
34
|
-
export { ROUTE_TREE, ROUTE_PATH_MAP,
|
|
34
|
+
export { ROUTE_TREE, ROUTE_PATH_MAP, PATH_ROUTE_MAP, DYNAMIC_PATH_ROUTE_MAP, MOBILE_PATH_ROUTE_MAP, } from '@quickbi/bi-types/router/route-tree';
|
|
35
35
|
export type { RouteTreeNode } from '@quickbi/bi-types/router/route-tree';
|
|
36
36
|
export { PermissionPageType } from '@quickbi/bi-types/permission-type';
|
|
37
37
|
}
|
|
@@ -40,11 +40,11 @@ declare module '@quickbi/bi-types/data-panel' {
|
|
|
40
40
|
import type { CommonCompInputAreaType, ConfigCellOption, FieldConfigRow } from '@quickbi/bi-types/data-panel/base';
|
|
41
41
|
import { CommonCompInputAreaTypeEnum, QueryAxisType, FieldType, CUSTOM_FIELD_TYPES, SecondFieldType, ChartStatus, StackedSortType, ResultMode, RetainAreaId, ConfigCellType, ConfigColumnType, CheckBoxState, FieldGroupType, FieldCollectionType, LnglatGroupChildFlags } from '@quickbi/bi-types/data-panel/base';
|
|
42
42
|
import type { CommonCompInputComplexFilter, TimeTypeFilter, CommonCompInputComplexFilterItem, TableCalculateParam, CalcOrder, TopNParams, CountParams, PercentileParams, RankParams, CompareParams, DateAccumulateParams, ProportionParams, DifferenceParams, MovingCalculationParams } from '@quickbi/bi-types/data-panel/data-config';
|
|
43
|
-
import { DataConfig, DataConfigAreaItemColumn, TableType, TableDirection, ProportionType, AccumulateCalcType, NumberValueType } from '@quickbi/bi-types/data-panel/data-config';
|
|
43
|
+
import { DataConfig, DataConfigAreaItemColumn, TableType, TableDirection, ProportionType, AccumulateCalcType, NumberValueType, ContrastType } from '@quickbi/bi-types/data-panel/data-config';
|
|
44
44
|
import type { FieldConfigs, FieldInfo, ChildFieldInfo, DropDownMenuFieldConfig, AlignConfig, AggregationConfig, AdvancedCalculationConfig, ContrastConfig, NumberFormatConfig, FieldRuntime, CompFieldConfig, LabelConfig, AreaMapItem, AreaMap, VirtualFieldInfo, ResetFieldConfigType, ResetMenuType, SortConfig, Message, OnFreshComponentType, OnFreshComponentOptions, OnChangeCubeOptions, FieldMenuConfig, ChangeFieldMenuConfigs, ColumnFieldInfo, FieldCollectionInfo, ValidateResult, AuxiliaryFieldConfig, EmptyValueDisplayFieldConfig } from '@quickbi/bi-types/data-panel/data-schema-item';
|
|
45
45
|
import { DataSchemaAreaItem, OperationMenuItem, DropdownMenuItem, OperationTypes, Aggregators, FieldConfigTypes, ContrastTypes, AdvanceCalTypes, AdvanceCalcDateTypes, NumberFormats, AlignTypes, VerticalAlignTypes, AlignmentCategory, SortTypes, FieldChartTypes, ImageSizes, DropDownMenuType, DataSchemaRule, FieldGroupSelectorType, VirtualFieldOperation } from '@quickbi/bi-types/data-panel/data-schema-item';
|
|
46
46
|
import { DataPanelDataSchema, ResultDisplay } from '@quickbi/bi-types/data-panel/data-schema';
|
|
47
|
-
export { DataSchemaRule, CommonCompInputAreaTypeEnum, DataConfig, DataConfigAreaItemColumn, TableType, TableDirection, DataPanelDataSchema, DataSchemaAreaItem, OperationMenuItem, DropdownMenuItem, OperationTypes, Aggregators, FieldConfigTypes, ContrastTypes, AdvanceCalTypes, AdvanceCalcDateTypes, NumberFormats, AlignTypes, VerticalAlignTypes, AlignmentCategory, SortTypes, FieldGroupSelectorType, FieldChartTypes, ImageSizes, CUSTOM_FIELD_TYPES, FieldType, QueryAxisType, DropDownMenuType, SecondFieldType, ChartStatus, StackedSortType, ResultMode, RetainAreaId, ConfigCellType, ConfigColumnType, CheckBoxState, ResultDisplay, FieldGroupType, ProportionType, AccumulateCalcType, FieldCollectionType, LnglatGroupChildFlags, VirtualFieldOperation, NumberValueType, };
|
|
47
|
+
export { DataSchemaRule, CommonCompInputAreaTypeEnum, DataConfig, DataConfigAreaItemColumn, TableType, TableDirection, DataPanelDataSchema, DataSchemaAreaItem, OperationMenuItem, DropdownMenuItem, OperationTypes, Aggregators, FieldConfigTypes, ContrastTypes, AdvanceCalTypes, AdvanceCalcDateTypes, NumberFormats, AlignTypes, VerticalAlignTypes, AlignmentCategory, SortTypes, FieldGroupSelectorType, FieldChartTypes, ImageSizes, CUSTOM_FIELD_TYPES, FieldType, QueryAxisType, DropDownMenuType, SecondFieldType, ChartStatus, StackedSortType, ResultMode, RetainAreaId, ConfigCellType, ConfigColumnType, CheckBoxState, ResultDisplay, FieldGroupType, ProportionType, AccumulateCalcType, FieldCollectionType, LnglatGroupChildFlags, VirtualFieldOperation, NumberValueType, ContrastType, };
|
|
48
48
|
export type { CommonCompInputAreaType, FieldInfo, ChildFieldInfo, FieldConfigs, DropDownMenuFieldConfig, AlignConfig, AggregationConfig, AdvancedCalculationConfig, ContrastConfig, NumberFormatConfig, FieldRuntime, CompFieldConfig, LabelConfig, TimeTypeFilter, CommonCompInputComplexFilter, ResetFieldConfigType, CommonCompInputComplexFilterItem, AreaMapItem, AreaMap, VirtualFieldInfo, ResetMenuType, SortConfig, Message, OnFreshComponentType, OnFreshComponentOptions, OnChangeCubeOptions, ConfigCellOption, FieldConfigRow, FieldMenuConfig, ChangeFieldMenuConfigs, ColumnFieldInfo, FieldCollectionInfo, AuxiliaryFieldConfig, ValidateResult, TableCalculateParam, CalcOrder, TopNParams, EmptyValueDisplayFieldConfig, CountParams, PercentileParams, RankParams, CompareParams, DateAccumulateParams, ProportionParams, DifferenceParams, MovingCalculationParams, };
|
|
49
49
|
}
|
|
50
50
|
|
|
@@ -109,6 +109,14 @@ declare module '@quickbi/bi-types/component-type' {
|
|
|
109
109
|
PROGRESS = "progress",
|
|
110
110
|
/** 环形进度条 */
|
|
111
111
|
CIRCULAR_PROGRESS = "circular_progress",
|
|
112
|
+
/** 水波进度条 */
|
|
113
|
+
WATERWAVE_PROGRESS = "waterwave_progress",
|
|
114
|
+
/** 仪表盘 */
|
|
115
|
+
GAUGE = "gauge_chart",
|
|
116
|
+
/** 气泡图 */
|
|
117
|
+
BUBBLE = "bubble_chart",
|
|
118
|
+
/** 桑基图 */
|
|
119
|
+
SANKEY = "sankey_chart",
|
|
112
120
|
/** 排行榜 */
|
|
113
121
|
RANKING_LIST = "ranking_list",
|
|
114
122
|
/** 占比滚动排行榜 */
|
|
@@ -771,6 +779,8 @@ declare module '@quickbi/bi-types/etl' {
|
|
|
771
779
|
declare module '@quickbi/bi-types/ui/page-header' {
|
|
772
780
|
/** 各个资源页头部按钮组别枚举 */
|
|
773
781
|
export enum ResourcePageHeaderGroupEnum {
|
|
782
|
+
/** 权限相关操作按钮组 例如 pc/mobile切换 抢锁 */
|
|
783
|
+
auth = "auth",
|
|
774
784
|
/** 设置操作按钮组 例如 页面设置、全局参数、替换数据集 */
|
|
775
785
|
setting = "setting",
|
|
776
786
|
/** 状态操作按钮组 例如 预览、保存、发布 */
|
|
@@ -953,7 +963,7 @@ declare module '@quickbi/bi-types/open/components/component-props' {
|
|
|
953
963
|
/**
|
|
954
964
|
* formatAllGranularityTime dimGranularity 枚举值
|
|
955
965
|
*/
|
|
956
|
-
export type DimGranularity = 'year' | 'year-quarter' | 'year-month' | 'year-week' | 'year-month-day' | 'hour' | 'hour-minute' | 'hour-minute-second' | 'datetime';
|
|
966
|
+
export type DimGranularity = 'year' | 'fiscal-year' | 'fiscal-year-quarter' | 'year-quarter' | 'year-month' | 'year-week' | 'year-month-day' | 'hour' | 'hour-minute' | 'hour-minute-second' | 'datetime';
|
|
957
967
|
export type ComponentPageConfig = CommonPageConfig;
|
|
958
968
|
/**
|
|
959
969
|
* bi 组件通用属性模型
|
|
@@ -983,7 +993,6 @@ declare module '@quickbi/bi-types/open/components/component-props' {
|
|
|
983
993
|
utils?: {
|
|
984
994
|
formatNumberWithConfig: (num: number | string, config: any) => void;
|
|
985
995
|
formatAllGranularityTime: (dimGranularity: DimGranularity, formatType: string, raw: string) => void;
|
|
986
|
-
[key: string]: any;
|
|
987
996
|
};
|
|
988
997
|
/** 数据集配置 */
|
|
989
998
|
cubeConfig?: ComponentPropsCubeConfig[];
|
|
@@ -1782,7 +1791,7 @@ declare module '@quickbi/bi-types/standard-model' {
|
|
|
1782
1791
|
/** 不同图表字段特殊扩展信息 */
|
|
1783
1792
|
export type FieldModelExtends = any;
|
|
1784
1793
|
/** 区域信息,例如:区分x值轴、y值轴、颜色、细分、尺寸等等,qbi、fbi 要统一映射 */
|
|
1785
|
-
export type AreaType = 'row' | 'column' | 'xAxis' | 'yAxis' | 'yMainAxis' | 'ySecondaryAxis' | 'color' | 'shape' | 'legend' | 'size' | 'tooltip' | 'drill' | 'filters' | 'dimValues' | 'area_measure' | 'area_target_measure' | 'area_value' | 'time' | 'mainMeasure' | 'secondaryMeasure' | 'from_dim' | 'to_dim' | 'tooltip' | 'floor' | 'facet' | 'image' | 'sampling';
|
|
1794
|
+
export type AreaType = 'row' | 'column' | 'secondaryColumn' | 'xAxis' | 'yAxis' | 'yMainAxis' | 'ySecondaryAxis' | 'color' | 'shape' | 'legend' | 'size' | 'tooltip' | 'drill' | 'filters' | 'dimValues' | 'area_measure' | 'area_target_measure' | 'area_value' | 'time' | 'mainMeasure' | 'secondaryMeasure' | 'from_dim' | 'to_dim' | 'tooltip' | 'floor' | 'facet' | 'image' | 'sampling';
|
|
1786
1795
|
export interface AreaModel {
|
|
1787
1796
|
/** 区域类型 */
|
|
1788
1797
|
areaType: AreaType;
|
|
@@ -2461,7 +2470,7 @@ declare module '@quickbi/bi-types/open/embed/core' {
|
|
|
2461
2470
|
/** 行为类型 */
|
|
2462
2471
|
type: K;
|
|
2463
2472
|
/** 行为传参, 必须能序列化 */
|
|
2464
|
-
payload
|
|
2473
|
+
payload?: T;
|
|
2465
2474
|
};
|
|
2466
2475
|
/** 页面事件对应的监听函数返回值 */
|
|
2467
2476
|
export type EmbedBaseEventListenerReturn<T extends EmbedBaseEventMessageContent, R = any> = {
|
|
@@ -2470,7 +2479,7 @@ declare module '@quickbi/bi-types/open/embed/core' {
|
|
|
2470
2479
|
};
|
|
2471
2480
|
/** 页面事件对应的监听函数 */
|
|
2472
2481
|
export type EmbedBaseEventListener<U extends EmbedBaseEventMessageContent, T extends EmbedBaseEventListenerReturn<U>> = {
|
|
2473
|
-
[K in U['type']]
|
|
2482
|
+
[K in U['type']]?: (payload: Extract<U, {
|
|
2474
2483
|
type: K;
|
|
2475
2484
|
}>) => Promise<T extends {
|
|
2476
2485
|
content: {
|
|
@@ -2508,11 +2517,11 @@ declare module '@quickbi/bi-types/open/common/event-types' {
|
|
|
2508
2517
|
export enum OpenEventTypeEnum {
|
|
2509
2518
|
/** 嵌入事件-页面跳转前 */
|
|
2510
2519
|
'before-page-change-event' = "before-page-change-event",
|
|
2511
|
-
/**
|
|
2520
|
+
/** 导出前事件 */
|
|
2512
2521
|
'before-download-event' = "before-download-event",
|
|
2513
|
-
/**
|
|
2522
|
+
/** 页面加载前事件 */
|
|
2514
2523
|
'before-page-loaded-event' = "before-page-loaded-event",
|
|
2515
|
-
/**
|
|
2524
|
+
/** 发布前事件 */
|
|
2516
2525
|
'before-publish-event' = "before-publish-event"
|
|
2517
2526
|
}
|
|
2518
2527
|
/** 开放相关事件取值固定为 before-xxx-event, after-xxx-event */
|
|
@@ -2589,6 +2598,8 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2589
2598
|
tagManage = "tagManage",
|
|
2590
2599
|
/** 组织管理-用户管理-角色管理, [注意] 该值已被模块嵌入功能落库, 禁止修改枚举值 */
|
|
2591
2600
|
userRoleManage = "userRoleManage",
|
|
2601
|
+
/** 组织管理-tab通配 */
|
|
2602
|
+
orgAdminCommon = "orgAdminCommon",
|
|
2592
2603
|
/** 组织管理-工作空间管理 */
|
|
2593
2604
|
orgAdminSpace = "orgAdminSpace",
|
|
2594
2605
|
/** 组织管理-工作空间管理-工作空间 */
|
|
@@ -2727,6 +2738,8 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2727
2738
|
orgDashboardPerformance = "orgDashboardPerformance",
|
|
2728
2739
|
/** 组织管理-血缘分析 */
|
|
2729
2740
|
orgAdminAnalysis = "orgAdminAnalysis",
|
|
2741
|
+
/** 组织管理-产品权限管理 */
|
|
2742
|
+
orgAdminProductAuthManage = "orgAdminProductAuthManage",
|
|
2730
2743
|
/** 资源包管理 */
|
|
2731
2744
|
orgAdminResource = "orgAdminResource",
|
|
2732
2745
|
/** 资源包配置 */
|
|
@@ -2834,14 +2847,24 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2834
2847
|
viewSearch = "viewSearch",
|
|
2835
2848
|
/** 我的看板-授权于我(仅显示内容) */
|
|
2836
2849
|
viewSharedContentOnly = "viewSharedContentOnly",
|
|
2850
|
+
/** 数据报告 */
|
|
2851
|
+
viewWordAgent = "viewWordAgent",
|
|
2837
2852
|
/** 企业门户 */
|
|
2838
2853
|
viewPortal = "viewPortal",
|
|
2839
2854
|
/** 业务类目 */
|
|
2840
2855
|
viewCategory = "viewCategory",
|
|
2841
2856
|
/** 首页下的智能小Q页 */
|
|
2842
2857
|
copilotHome = "copilotHome",
|
|
2858
|
+
/** 小Q报告首页 */
|
|
2859
|
+
wordAgentHome = "wordAgentHome",
|
|
2843
2860
|
/** 模块嵌入 */
|
|
2844
2861
|
embedModule = "embedModule",
|
|
2862
|
+
/** biAgent用户配置 */
|
|
2863
|
+
biAgentUserConfig = "biAgentUserConfig",
|
|
2864
|
+
/** 老交叉表、老电子表格升级列表页 */
|
|
2865
|
+
upgradeTable = "upgradeTable",
|
|
2866
|
+
/** 账号失效页面 */
|
|
2867
|
+
accountFailure = "accountFailure",
|
|
2845
2868
|
/** 工作台 会跳到很多地方 */
|
|
2846
2869
|
workPlatform = "workPlatform",
|
|
2847
2870
|
/** 工作空间 */
|
|
@@ -3011,6 +3034,8 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
3011
3034
|
opsTenantManage = "opsTenantManage",
|
|
3012
3035
|
/** 试用申请列表 */
|
|
3013
3036
|
opsApply = "opsApply",
|
|
3037
|
+
/** 官方智能体管理 */
|
|
3038
|
+
opsCopilotOfficialAgent = "opsCopilotOfficialAgent",
|
|
3014
3039
|
/** 登录策略管理 */
|
|
3015
3040
|
opsLoginConfig = "opsLoginConfig",
|
|
3016
3041
|
/** 登录系统管理 */
|
|
@@ -3023,6 +3048,10 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
3023
3048
|
docsManageItems = "docsManageItems",
|
|
3024
3049
|
/** 移动端入口 */
|
|
3025
3050
|
mobileEntry = "mobileEntry",
|
|
3051
|
+
/** 移动端免登页 */
|
|
3052
|
+
mobileWebSite = "mobileWebSite",
|
|
3053
|
+
/** 移动端微应用-首页 */
|
|
3054
|
+
mobileHomeEntry = "mobileHomeEntry",
|
|
3026
3055
|
/** 移动端微应用 */
|
|
3027
3056
|
mobileRoot = "mobileRoot",
|
|
3028
3057
|
/** 移动端微应用-首页 */
|
|
@@ -3097,6 +3126,18 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
3097
3126
|
templateNlPublic = "templateNlPublic",
|
|
3098
3127
|
/** 模版市场-非登录态模板预览页 */
|
|
3099
3128
|
templateNlPreView = "templateNlPreView",
|
|
3129
|
+
/** 模版市场-可视化模版 */
|
|
3130
|
+
templateVisualization = "templateVisualization",
|
|
3131
|
+
/** 登陆页 */
|
|
3132
|
+
loginRoot = "loginRoot",
|
|
3133
|
+
/** 登陆页-系统配置 */
|
|
3134
|
+
loginSystemConfig = "loginSystemConfig",
|
|
3135
|
+
/** 登陆页-配置 */
|
|
3136
|
+
loginAuthConfig = "loginAuthConfig",
|
|
3137
|
+
/** 登陆页-登录 */
|
|
3138
|
+
login = "login",
|
|
3139
|
+
/** 微应用端内登录页 */
|
|
3140
|
+
loginMicro = "loginMicro",
|
|
3100
3141
|
/** 观星台 */
|
|
3101
3142
|
biAgent = "biAgent",
|
|
3102
3143
|
/** 观星台首页 */
|
|
@@ -3111,10 +3152,20 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
3111
3152
|
biAgentHomePostDetail = "biAgentHomePostDetail",
|
|
3112
3153
|
/** 观星台动态详情追踪 */
|
|
3113
3154
|
biAgentTrackingPostDetail = "biAgentTrackingPostDetail",
|
|
3114
|
-
/**
|
|
3115
|
-
|
|
3116
|
-
/**
|
|
3117
|
-
|
|
3155
|
+
/** 监控截图 */
|
|
3156
|
+
monitorScreenshot = "monitorScreenshot",
|
|
3157
|
+
/** 钉钉文档嵌入页 */
|
|
3158
|
+
dingDoc = "dingDoc",
|
|
3159
|
+
/** 小Q报告 */
|
|
3160
|
+
wordAgentRoot = "wordAgentRoot",
|
|
3161
|
+
/** 小Q报告编辑 */
|
|
3162
|
+
wordAgentEdit = "wordAgentEdit",
|
|
3163
|
+
/** 小Q报告预览 */
|
|
3164
|
+
wordAgentView = "wordAgentView",
|
|
3165
|
+
/** 小Q报告文件预览 */
|
|
3166
|
+
wordAgentFilePreview = "wordAgentFilePreview",
|
|
3167
|
+
/** 第三方token预览 */
|
|
3168
|
+
wordAgentPublicView = "wordAgentPublicView",
|
|
3118
3169
|
/** 老大屏应用页面 */
|
|
3119
3170
|
dashboardScreenRoot = "dashboardScreenRoot",
|
|
3120
3171
|
/** 老大屏编辑页 */
|
|
@@ -3128,911 +3179,983 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
3128
3179
|
|
|
3129
3180
|
declare module '@quickbi/bi-types/router/route-tree' {
|
|
3130
3181
|
/**
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3182
|
+
* @author 非席 唯毅
|
|
3183
|
+
* @description qbi 全局路由树
|
|
3184
|
+
*/
|
|
3134
3185
|
import { RouteKey } from '@quickbi/bi-types/router/route-key';
|
|
3135
3186
|
/** 全局路由树节点 */
|
|
3136
3187
|
export type RouteTreeNode<P extends string = string> = {
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3188
|
+
key: RouteKey;
|
|
3189
|
+
path: P;
|
|
3190
|
+
children?: RouteTreeNode<string>[];
|
|
3140
3191
|
};
|
|
3141
3192
|
/** 全局路由树 */
|
|
3142
3193
|
export const ROUTE_TREE: {
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
readonly children: [{
|
|
3146
|
-
readonly key: RouteKey.homeRoot;
|
|
3147
|
-
readonly path: "/home";
|
|
3194
|
+
readonly key: RouteKey.root;
|
|
3195
|
+
readonly path: "/";
|
|
3148
3196
|
readonly children: [{
|
|
3149
|
-
|
|
3150
|
-
|
|
3197
|
+
readonly key: RouteKey.homeRoot;
|
|
3198
|
+
readonly path: "/home";
|
|
3199
|
+
readonly children: [{
|
|
3200
|
+
readonly key: RouteKey.notFound;
|
|
3201
|
+
readonly path: "/404";
|
|
3202
|
+
}, {
|
|
3203
|
+
readonly key: RouteKey.orgAdmin;
|
|
3204
|
+
readonly path: "/org/admin";
|
|
3205
|
+
readonly children: [{
|
|
3206
|
+
readonly key: RouteKey.orgAdminCommon;
|
|
3207
|
+
readonly path: "/org/admin/:tab/:tag";
|
|
3208
|
+
}, {
|
|
3209
|
+
readonly key: RouteKey.orgAdminInfo;
|
|
3210
|
+
readonly path: "/org/admin/info";
|
|
3211
|
+
readonly children: [{
|
|
3212
|
+
readonly key: RouteKey.orgAdminOrgInfo;
|
|
3213
|
+
readonly path: "/org/admin/info/orgInfo";
|
|
3214
|
+
}, {
|
|
3215
|
+
readonly key: RouteKey.orgAdminInfoSuper;
|
|
3216
|
+
readonly path: "/org/admin/info/super";
|
|
3217
|
+
}];
|
|
3218
|
+
}, {
|
|
3219
|
+
readonly key: RouteKey.orgAdminUser;
|
|
3220
|
+
readonly path: "/org/admin/user";
|
|
3221
|
+
readonly children: [{
|
|
3222
|
+
readonly key: RouteKey.userMemberManage;
|
|
3223
|
+
readonly path: "/org/admin/user/member";
|
|
3224
|
+
}, {
|
|
3225
|
+
readonly key: RouteKey.userGroupManage;
|
|
3226
|
+
readonly path: "/org/admin/user/userGroup";
|
|
3227
|
+
}, {
|
|
3228
|
+
readonly key: RouteKey.userTagManage;
|
|
3229
|
+
readonly path: "/org/admin/user/label";
|
|
3230
|
+
readonly children: [{
|
|
3231
|
+
readonly key: RouteKey.userTagDetailManage;
|
|
3232
|
+
readonly path: "/org/admin/user/label/userTag";
|
|
3233
|
+
}, {
|
|
3234
|
+
readonly key: RouteKey.tagManage;
|
|
3235
|
+
readonly path: "/org/admin/user/label/tag";
|
|
3236
|
+
}];
|
|
3237
|
+
}, {
|
|
3238
|
+
readonly key: RouteKey.userRoleManage;
|
|
3239
|
+
readonly path: "/org/admin/user/role";
|
|
3240
|
+
}];
|
|
3241
|
+
}, {
|
|
3242
|
+
readonly key: RouteKey.orgAdminSpace;
|
|
3243
|
+
readonly path: "/org/admin/space";
|
|
3244
|
+
readonly children: [{
|
|
3245
|
+
readonly key: RouteKey.orgAdminWorkspace;
|
|
3246
|
+
readonly path: "/org/admin/space/workspaceList";
|
|
3247
|
+
}, {
|
|
3248
|
+
readonly key: RouteKey.orgAdminWorkspaceInfo;
|
|
3249
|
+
readonly path: "/org/admin/space/workspaceInfo";
|
|
3250
|
+
}];
|
|
3251
|
+
}, {
|
|
3252
|
+
readonly key: RouteKey.orgAdminAuthorize;
|
|
3253
|
+
readonly path: "/org/admin/authorize";
|
|
3254
|
+
readonly children: [{
|
|
3255
|
+
readonly key: RouteKey.orgAdminAuthorizeResource;
|
|
3256
|
+
readonly path: "/org/admin/authorize/resource";
|
|
3257
|
+
}, {
|
|
3258
|
+
readonly key: RouteKey.orgAdminAuthorizeUser;
|
|
3259
|
+
readonly path: "/org/admin/authorize/user";
|
|
3260
|
+
}];
|
|
3261
|
+
}, {
|
|
3262
|
+
readonly key: RouteKey.orgAdminCoopAuth;
|
|
3263
|
+
readonly path: "/org/admin/coopauth";
|
|
3264
|
+
readonly children: [{
|
|
3265
|
+
readonly key: RouteKey.orgAdminSpaceAuth;
|
|
3266
|
+
readonly path: "/org/admin/coopauth/spaceAuth";
|
|
3267
|
+
}, {
|
|
3268
|
+
readonly key: RouteKey.orgAdminApproval;
|
|
3269
|
+
readonly path: "/org/admin/coopauth/approval";
|
|
3270
|
+
}, {
|
|
3271
|
+
readonly key: RouteKey.orgAdminRowLevelMigrate;
|
|
3272
|
+
readonly path: "/org/admin/coopauth/rowLevelMigrate";
|
|
3273
|
+
}];
|
|
3274
|
+
}, {
|
|
3275
|
+
readonly key: RouteKey.orgAdminDataSafety;
|
|
3276
|
+
readonly path: "/org/admin/dataSafety";
|
|
3277
|
+
readonly children: [{
|
|
3278
|
+
readonly key: RouteKey.orgAdminWatermark;
|
|
3279
|
+
readonly path: "/org/admin/dataSafety/watermark";
|
|
3280
|
+
}, {
|
|
3281
|
+
readonly key: RouteKey.orgAdminCopyManage;
|
|
3282
|
+
readonly path: "/org/admin/dataSafety/copyManage";
|
|
3283
|
+
}, {
|
|
3284
|
+
readonly key: RouteKey.orgAdminRowLevelPermission;
|
|
3285
|
+
readonly path: "/org/admin/dataSafety/rowLevelPermission";
|
|
3286
|
+
}, {
|
|
3287
|
+
readonly key: RouteKey.orgAdminExportControl;
|
|
3288
|
+
readonly path: "/org/admin/dataSafety/exportControl";
|
|
3289
|
+
}];
|
|
3290
|
+
}, {
|
|
3291
|
+
readonly key: RouteKey.orgThemeCustom;
|
|
3292
|
+
readonly path: "/org/admin/theme/custom";
|
|
3293
|
+
}, {
|
|
3294
|
+
readonly key: RouteKey.orgAdminTheme;
|
|
3295
|
+
readonly path: "/org/admin/theme/form";
|
|
3296
|
+
}, {
|
|
3297
|
+
readonly key: RouteKey.orgAdminSoftware;
|
|
3298
|
+
readonly path: "/org/admin/software";
|
|
3299
|
+
readonly children: [{
|
|
3300
|
+
readonly key: RouteKey.orgAdminDingAuthorize;
|
|
3301
|
+
readonly path: "/org/admin/software/dingAuthorize";
|
|
3302
|
+
}, {
|
|
3303
|
+
readonly key: RouteKey.orgAdminWxApiAuth;
|
|
3304
|
+
readonly path: "/org/admin/software/wxApiAuth";
|
|
3305
|
+
}, {
|
|
3306
|
+
readonly key: RouteKey.orgAdminFeishuApiAuth;
|
|
3307
|
+
readonly path: "/org/admin/software/feishuApiAuth";
|
|
3308
|
+
}, {
|
|
3309
|
+
readonly key: RouteKey.orgAdminTeamsApiAuth;
|
|
3310
|
+
readonly path: "/org/admin/software/teamsApiAuth";
|
|
3311
|
+
}];
|
|
3312
|
+
}, {
|
|
3313
|
+
readonly key: RouteKey.orgChannelRobot;
|
|
3314
|
+
readonly path: "/org/admin/channelRobot";
|
|
3315
|
+
readonly children: [{
|
|
3316
|
+
readonly key: RouteKey.orgPushLinkConfig;
|
|
3317
|
+
readonly path: "/org/admin/channelRobot/pushLinkConfig";
|
|
3318
|
+
}, {
|
|
3319
|
+
readonly key: RouteKey.orgDingBucChannel;
|
|
3320
|
+
readonly path: "/org/admin/channelRobot/dingBucChannel";
|
|
3321
|
+
}, {
|
|
3322
|
+
readonly key: RouteKey.orgDingChannel;
|
|
3323
|
+
readonly path: "/org/admin/channelRobot/dingChannel";
|
|
3324
|
+
}, {
|
|
3325
|
+
readonly key: RouteKey.orgWeChatChannel;
|
|
3326
|
+
readonly path: "/org/admin/channelRobot/weChatChannel";
|
|
3327
|
+
}, {
|
|
3328
|
+
readonly key: RouteKey.orgFeiShuChannel;
|
|
3329
|
+
readonly path: "/org/admin/channelRobot/feiShuChannel";
|
|
3330
|
+
}, {
|
|
3331
|
+
readonly key: RouteKey.orgSmsChannel;
|
|
3332
|
+
readonly path: "/org/admin/channelRobot/smsChannel";
|
|
3333
|
+
}, {
|
|
3334
|
+
readonly key: RouteKey.orgEmailChannel;
|
|
3335
|
+
readonly path: "/org/admin/channelRobot/emailChannel";
|
|
3336
|
+
}, {
|
|
3337
|
+
readonly key: RouteKey.orgCustomChannel;
|
|
3338
|
+
readonly path: "/org/admin/channelRobot/customChannel";
|
|
3339
|
+
}];
|
|
3340
|
+
}, {
|
|
3341
|
+
readonly key: RouteKey.orgAdminPcPortalApp;
|
|
3342
|
+
readonly path: "/org/admin/portalapp";
|
|
3343
|
+
}, {
|
|
3344
|
+
readonly key: RouteKey.orgAdminMicroApp;
|
|
3345
|
+
readonly path: "/org/admin/microapp";
|
|
3346
|
+
}, {
|
|
3347
|
+
readonly key: RouteKey.orgAdminCategory;
|
|
3348
|
+
readonly path: "/org/admin/category";
|
|
3349
|
+
}, {
|
|
3350
|
+
readonly key: RouteKey.orgAdminFavorites;
|
|
3351
|
+
readonly path: "/org/admin/favorites";
|
|
3352
|
+
}, {
|
|
3353
|
+
readonly key: RouteKey.orgDashboardConfig;
|
|
3354
|
+
readonly path: "/org/admin/dashboardConfig";
|
|
3355
|
+
}, {
|
|
3356
|
+
readonly key: RouteKey.orgAdminCopilot;
|
|
3357
|
+
readonly path: "/org/admin/copilot";
|
|
3358
|
+
readonly children: [{
|
|
3359
|
+
readonly key: RouteKey.orgResourceManage;
|
|
3360
|
+
readonly path: "/org/admin/copilot/resourceManage";
|
|
3361
|
+
}, {
|
|
3362
|
+
readonly key: RouteKey.orgAnalysisThemeManage;
|
|
3363
|
+
readonly path: "/org/admin/copilot/analysisThemeManage";
|
|
3364
|
+
}, {
|
|
3365
|
+
readonly key: RouteKey.orgAgentManage;
|
|
3366
|
+
readonly path: "/org/admin/copilot/agentManage";
|
|
3367
|
+
}, {
|
|
3368
|
+
readonly key: RouteKey.orgDashboardQuestionManage;
|
|
3369
|
+
readonly path: "/org/admin/copilot/dashboardQuestionManage";
|
|
3370
|
+
}, {
|
|
3371
|
+
readonly key: RouteKey.orgResourceAuth;
|
|
3372
|
+
readonly path: "/org/admin/copilot/resourceAuth";
|
|
3373
|
+
}, {
|
|
3374
|
+
readonly key: RouteKey.orgKnowledgeBaseManage;
|
|
3375
|
+
readonly path: "/org/admin/copilot/knowledgeBaseManage";
|
|
3376
|
+
}, {
|
|
3377
|
+
readonly key: RouteKey.orgEmbedManage;
|
|
3378
|
+
readonly path: "/org/admin/copilot/embedManage";
|
|
3379
|
+
}, {
|
|
3380
|
+
readonly key: RouteKey.orgQuestionOperations;
|
|
3381
|
+
readonly path: "/org/admin/copilot/questionOperations";
|
|
3382
|
+
}, {
|
|
3383
|
+
readonly key: RouteKey.orgGlobalConfig;
|
|
3384
|
+
readonly path: "/org/admin/copilot/globalConfig";
|
|
3385
|
+
}];
|
|
3386
|
+
}, {
|
|
3387
|
+
readonly key: RouteKey.orgAdminMap;
|
|
3388
|
+
readonly path: "/org/admin/map";
|
|
3389
|
+
readonly children: [{
|
|
3390
|
+
readonly key: RouteKey.orgAdminCustomGeoInfo;
|
|
3391
|
+
readonly path: "/org/admin/map/geoInfo";
|
|
3392
|
+
}, {
|
|
3393
|
+
readonly key: RouteKey.orgAdminCustomPictureMap;
|
|
3394
|
+
readonly path: "/org/admin/map/pictureMap";
|
|
3395
|
+
}];
|
|
3396
|
+
}, {
|
|
3397
|
+
readonly key: RouteKey.orgGlobalSearch;
|
|
3398
|
+
readonly path: "/org/admin/globalSearch";
|
|
3399
|
+
}, {
|
|
3400
|
+
readonly key: RouteKey.orgAdminEngine;
|
|
3401
|
+
readonly path: "/org/admin/engine";
|
|
3402
|
+
readonly children: [{
|
|
3403
|
+
readonly key: RouteKey.orgOfflineQuicken;
|
|
3404
|
+
readonly path: "/org/admin/engine/offlineQuicken";
|
|
3405
|
+
}, {
|
|
3406
|
+
readonly key: RouteKey.orgQuickEngine;
|
|
3407
|
+
readonly path: "/org/admin/engine/quickEngine";
|
|
3408
|
+
}, {
|
|
3409
|
+
readonly key: RouteKey.orgEngineUpload;
|
|
3410
|
+
readonly path: "/org/admin/engine/upload";
|
|
3411
|
+
}, {
|
|
3412
|
+
readonly key: RouteKey.orgEngineCache;
|
|
3413
|
+
readonly path: "/org/admin/engine/cache";
|
|
3414
|
+
}];
|
|
3415
|
+
}, {
|
|
3416
|
+
readonly key: RouteKey.orgIntelligent;
|
|
3417
|
+
readonly path: "/org/admin/intelligent";
|
|
3418
|
+
}, {
|
|
3419
|
+
readonly key: RouteKey.orgAdminPorting;
|
|
3420
|
+
readonly path: "/org/admin/porting";
|
|
3421
|
+
readonly children: [{
|
|
3422
|
+
readonly key: RouteKey.orgAdminPortingConfig;
|
|
3423
|
+
readonly path: "/org/admin/porting/config";
|
|
3424
|
+
}, {
|
|
3425
|
+
readonly key: RouteKey.orgAdminPortingRecord;
|
|
3426
|
+
readonly path: "/org/admin/porting/record";
|
|
3427
|
+
}];
|
|
3428
|
+
}, {
|
|
3429
|
+
readonly key: RouteKey.orgAdminAL;
|
|
3430
|
+
readonly path: "/org/admin/al";
|
|
3431
|
+
}, {
|
|
3432
|
+
readonly key: RouteKey.orgAdminPv;
|
|
3433
|
+
readonly path: "/org/admin/pv";
|
|
3434
|
+
readonly children: [{
|
|
3435
|
+
readonly key: RouteKey.orgAdminPvUser;
|
|
3436
|
+
readonly path: "/org/admin/pv/user";
|
|
3437
|
+
}, {
|
|
3438
|
+
readonly key: RouteKey.orgAdminPvResource;
|
|
3439
|
+
readonly path: "/org/admin/pv/resource";
|
|
3440
|
+
}, {
|
|
3441
|
+
readonly key: RouteKey.orgAdminPvUsage;
|
|
3442
|
+
readonly path: "/org/admin/pv/usage";
|
|
3443
|
+
}, {
|
|
3444
|
+
readonly key: RouteKey.orgAdminPvView;
|
|
3445
|
+
readonly path: "/org/admin/pv/view";
|
|
3446
|
+
}];
|
|
3447
|
+
}, {
|
|
3448
|
+
readonly key: RouteKey.orgPerformance;
|
|
3449
|
+
readonly path: "/org/admin/performance";
|
|
3450
|
+
readonly children: [{
|
|
3451
|
+
readonly key: RouteKey.orgDatasetPerformance;
|
|
3452
|
+
readonly path: "/org/admin/performance/cube";
|
|
3453
|
+
}, {
|
|
3454
|
+
readonly key: RouteKey.orgDashboardPerformance;
|
|
3455
|
+
readonly path: "/org/admin/performance/dashboard";
|
|
3456
|
+
}];
|
|
3457
|
+
}, {
|
|
3458
|
+
readonly key: RouteKey.orgAdminAnalysis;
|
|
3459
|
+
readonly path: "/org/admin/analysis";
|
|
3460
|
+
}, {
|
|
3461
|
+
readonly key: RouteKey.orgAdminResource;
|
|
3462
|
+
readonly path: "/org/admin/resource";
|
|
3463
|
+
readonly children: [{
|
|
3464
|
+
readonly key: RouteKey.orgAdminResourceConfig;
|
|
3465
|
+
readonly path: "/org/admin/resource/config";
|
|
3466
|
+
}, {
|
|
3467
|
+
readonly key: RouteKey.orgAdminResourceRecord;
|
|
3468
|
+
readonly path: "/org/admin/resource/record";
|
|
3469
|
+
}, {
|
|
3470
|
+
readonly key: RouteKey.orgAdminResourceDesc;
|
|
3471
|
+
readonly path: "/org/admin/resource/desc";
|
|
3472
|
+
}];
|
|
3473
|
+
}, {
|
|
3474
|
+
readonly key: RouteKey.orgAdminBiAgent;
|
|
3475
|
+
readonly path: "/org/admin/biAgents";
|
|
3476
|
+
readonly children: [{
|
|
3477
|
+
readonly key: RouteKey.orgAdminBiManage;
|
|
3478
|
+
readonly path: "/org/admin/biAgents/userManage";
|
|
3479
|
+
}, {
|
|
3480
|
+
readonly key: RouteKey.orgAdminBiManageDetail;
|
|
3481
|
+
readonly path: "/org/admin/biAgents/userManage/userDetail/:userId";
|
|
3482
|
+
}, {
|
|
3483
|
+
readonly key: RouteKey.orgAdminBiManagePerformanceAssistant;
|
|
3484
|
+
readonly path: "/org/admin/biAgents/performanceAssistant";
|
|
3485
|
+
}];
|
|
3486
|
+
}, {
|
|
3487
|
+
readonly key: RouteKey.orgAdminProductAuthManage;
|
|
3488
|
+
readonly path: "/org/admin/productAuthManage";
|
|
3489
|
+
}];
|
|
3490
|
+
}, {
|
|
3491
|
+
readonly key: RouteKey.downloadTask;
|
|
3492
|
+
readonly path: "/offlineDownload";
|
|
3493
|
+
}, {
|
|
3494
|
+
readonly key: RouteKey.approvalCenter;
|
|
3495
|
+
readonly path: "/message/center";
|
|
3496
|
+
readonly children: [{
|
|
3497
|
+
readonly key: RouteKey.messageCenterApproval;
|
|
3498
|
+
readonly path: "/message/center/approval";
|
|
3499
|
+
}, {
|
|
3500
|
+
readonly key: RouteKey.messageCenterApply;
|
|
3501
|
+
readonly path: "/message/center/apply";
|
|
3502
|
+
}];
|
|
3503
|
+
}, {
|
|
3504
|
+
readonly key: RouteKey.monitor;
|
|
3505
|
+
readonly path: "/monitor";
|
|
3506
|
+
readonly children: [{
|
|
3507
|
+
readonly key: RouteKey.monitorManage;
|
|
3508
|
+
readonly path: "/monitor/manage";
|
|
3509
|
+
}, {
|
|
3510
|
+
readonly key: RouteKey.monitorDetail;
|
|
3511
|
+
readonly path: "/monitor/detail.htm";
|
|
3512
|
+
}, {
|
|
3513
|
+
readonly key: RouteKey.monitorDesc;
|
|
3514
|
+
readonly path: "/monitor/desc";
|
|
3515
|
+
}];
|
|
3516
|
+
}, {
|
|
3517
|
+
readonly key: RouteKey.openRoot;
|
|
3518
|
+
readonly path: "/openservice";
|
|
3519
|
+
readonly children: [{
|
|
3520
|
+
readonly key: RouteKey.openHome;
|
|
3521
|
+
readonly path: "/openservice/homePage";
|
|
3522
|
+
}, {
|
|
3523
|
+
readonly key: RouteKey.openNoPermission;
|
|
3524
|
+
readonly path: "/openservice/permission-denied";
|
|
3525
|
+
}, {
|
|
3526
|
+
readonly key: RouteKey.loginConfig;
|
|
3527
|
+
readonly path: "/openservice/loginConfig";
|
|
3528
|
+
}, {
|
|
3529
|
+
readonly key: RouteKey.openApi;
|
|
3530
|
+
readonly path: "/openservice/apis";
|
|
3531
|
+
readonly children: [{
|
|
3532
|
+
readonly key: RouteKey.openApiSearch;
|
|
3533
|
+
readonly path: "/openservice/apis/search";
|
|
3534
|
+
}];
|
|
3535
|
+
}, {
|
|
3536
|
+
readonly key: RouteKey.embedAnalyse;
|
|
3537
|
+
readonly path: "/openservice/embedAnalyse";
|
|
3538
|
+
}, {
|
|
3539
|
+
readonly key: RouteKey.dataService;
|
|
3540
|
+
readonly path: "/openservice/dataServices";
|
|
3541
|
+
readonly children: [{
|
|
3542
|
+
readonly key: RouteKey.dataServiceApi;
|
|
3543
|
+
readonly path: "/openservice/dataServices/api";
|
|
3544
|
+
}, {
|
|
3545
|
+
readonly key: RouteKey.dataServiceDebug;
|
|
3546
|
+
readonly path: "/openservice/dataServices/debug";
|
|
3547
|
+
}, {
|
|
3548
|
+
readonly key: RouteKey.dataServiceCount;
|
|
3549
|
+
readonly path: "/openservice/dataServices/count";
|
|
3550
|
+
}];
|
|
3551
|
+
}, {
|
|
3552
|
+
readonly key: RouteKey.embedChannel;
|
|
3553
|
+
readonly path: "/openservice/embedChannel";
|
|
3554
|
+
}, {
|
|
3555
|
+
readonly key: RouteKey.customComponent;
|
|
3556
|
+
readonly path: "/openservice/componentManage";
|
|
3557
|
+
}, {
|
|
3558
|
+
readonly key: RouteKey.customMenu;
|
|
3559
|
+
readonly path: "/openservice/componentMenu";
|
|
3560
|
+
}, {
|
|
3561
|
+
readonly key: RouteKey.customTemplate;
|
|
3562
|
+
readonly path: "/openservice/defineTemplate";
|
|
3563
|
+
}, {
|
|
3564
|
+
readonly key: RouteKey.customConnect;
|
|
3565
|
+
readonly path: "/openservice/defineConnect";
|
|
3566
|
+
}, {
|
|
3567
|
+
readonly key: RouteKey.customPlugin;
|
|
3568
|
+
readonly path: "/openservice/customPlugin";
|
|
3569
|
+
}, {
|
|
3570
|
+
readonly key: RouteKey.monitorEvent;
|
|
3571
|
+
readonly path: "/openservice/event";
|
|
3572
|
+
}, {
|
|
3573
|
+
readonly key: RouteKey.customEvent;
|
|
3574
|
+
readonly path: "/openservice/customEvent";
|
|
3575
|
+
}, {
|
|
3576
|
+
readonly key: RouteKey.embedStatistic;
|
|
3577
|
+
readonly path: "/openservice/embedStatistic";
|
|
3578
|
+
}, {
|
|
3579
|
+
readonly key: RouteKey.apiStatistic;
|
|
3580
|
+
readonly path: "/openservice/apiStatistic";
|
|
3581
|
+
readonly children: [{
|
|
3582
|
+
readonly key: RouteKey.apiStatisticCount;
|
|
3583
|
+
readonly path: "/openservice/apiStatistic/count";
|
|
3584
|
+
}];
|
|
3585
|
+
}];
|
|
3586
|
+
}, {
|
|
3587
|
+
readonly key: RouteKey.standardUser;
|
|
3588
|
+
readonly path: "/instance/standand/user";
|
|
3589
|
+
}, {
|
|
3590
|
+
readonly key: RouteKey.subscriptionManage;
|
|
3591
|
+
readonly path: "/subscribe";
|
|
3592
|
+
readonly children: [{
|
|
3593
|
+
readonly key: RouteKey.subscriptionTask;
|
|
3594
|
+
readonly path: "/subscribe/task";
|
|
3595
|
+
}, {
|
|
3596
|
+
readonly key: RouteKey.sendRecord;
|
|
3597
|
+
readonly path: "/subscribe/record";
|
|
3598
|
+
}];
|
|
3599
|
+
}, {
|
|
3600
|
+
readonly key: RouteKey.templateRoot;
|
|
3601
|
+
readonly path: "/templateMarket";
|
|
3602
|
+
}, {
|
|
3603
|
+
readonly key: RouteKey.view;
|
|
3604
|
+
readonly path: "/view";
|
|
3605
|
+
readonly children: [{
|
|
3606
|
+
readonly key: RouteKey.viewHome;
|
|
3607
|
+
readonly path: "/view/index";
|
|
3608
|
+
}, {
|
|
3609
|
+
readonly key: RouteKey.viewBoard;
|
|
3610
|
+
readonly path: "/view/card";
|
|
3611
|
+
}, {
|
|
3612
|
+
readonly key: RouteKey.viewFavorite;
|
|
3613
|
+
readonly path: "/view/favorite";
|
|
3614
|
+
}, {
|
|
3615
|
+
readonly key: RouteKey.viewRecent;
|
|
3616
|
+
readonly path: "/view/recent";
|
|
3617
|
+
}, {
|
|
3618
|
+
readonly key: RouteKey.viewShared;
|
|
3619
|
+
readonly path: "/view/shared";
|
|
3620
|
+
}, {
|
|
3621
|
+
readonly key: RouteKey.viewCommonly;
|
|
3622
|
+
readonly path: "/view/commonly";
|
|
3623
|
+
}, {
|
|
3624
|
+
readonly key: RouteKey.viewMonitor;
|
|
3625
|
+
readonly path: "/view/monitor";
|
|
3626
|
+
}, {
|
|
3627
|
+
readonly key: RouteKey.viewSearch;
|
|
3628
|
+
readonly path: "/view/search";
|
|
3629
|
+
}, {
|
|
3630
|
+
readonly key: RouteKey.viewSharedContentOnly;
|
|
3631
|
+
readonly path: "/view/shared/contentOnly";
|
|
3632
|
+
}];
|
|
3633
|
+
}, {
|
|
3634
|
+
readonly key: RouteKey.viewPortal;
|
|
3635
|
+
readonly path: "/view/portal";
|
|
3636
|
+
/** 业务类目 */
|
|
3637
|
+
readonly children: [{
|
|
3638
|
+
readonly key: RouteKey.viewCategory;
|
|
3639
|
+
readonly path: "/view/category";
|
|
3640
|
+
}];
|
|
3641
|
+
}, {
|
|
3642
|
+
readonly key: RouteKey.workPlatform;
|
|
3643
|
+
readonly path: "/workplatform";
|
|
3644
|
+
}, {
|
|
3645
|
+
readonly key: RouteKey.workspace;
|
|
3646
|
+
readonly path: "/workspace";
|
|
3647
|
+
readonly children: [{
|
|
3648
|
+
readonly key: RouteKey.portalList;
|
|
3649
|
+
readonly path: "/workspace/product";
|
|
3650
|
+
}, {
|
|
3651
|
+
readonly key: RouteKey.dashboardList;
|
|
3652
|
+
readonly path: "/workspace/dashboard";
|
|
3653
|
+
}, {
|
|
3654
|
+
readonly key: RouteKey.workbookList;
|
|
3655
|
+
readonly path: "/workspace/report";
|
|
3656
|
+
}, {
|
|
3657
|
+
readonly key: RouteKey.workbookListTrialList;
|
|
3658
|
+
readonly path: "/workspace/trialReport";
|
|
3659
|
+
}, {
|
|
3660
|
+
readonly key: RouteKey.screenList;
|
|
3661
|
+
readonly path: "/workspace/screen";
|
|
3662
|
+
}, {
|
|
3663
|
+
readonly key: RouteKey.analysisList;
|
|
3664
|
+
readonly path: "/workspace/analysis";
|
|
3665
|
+
}, {
|
|
3666
|
+
readonly key: RouteKey.downloadList;
|
|
3667
|
+
readonly path: "/workspace/download";
|
|
3668
|
+
}, {
|
|
3669
|
+
readonly key: RouteKey.formList;
|
|
3670
|
+
readonly path: "/workspace/dataForm";
|
|
3671
|
+
}, {
|
|
3672
|
+
readonly key: RouteKey.etlList;
|
|
3673
|
+
readonly path: "/workspace/etl";
|
|
3674
|
+
}, {
|
|
3675
|
+
readonly key: RouteKey.datasetList;
|
|
3676
|
+
readonly path: "/workspace/schema";
|
|
3677
|
+
}, {
|
|
3678
|
+
readonly key: RouteKey.datasourceList;
|
|
3679
|
+
readonly path: "/workspace/datasource";
|
|
3680
|
+
}, {
|
|
3681
|
+
readonly key: RouteKey.workspaceInfo;
|
|
3682
|
+
readonly path: "/workspace/spaceInfo";
|
|
3683
|
+
}, {
|
|
3684
|
+
readonly key: RouteKey.workspaceUser;
|
|
3685
|
+
readonly path: "/workspace/spaceUser";
|
|
3686
|
+
}, {
|
|
3687
|
+
readonly key: RouteKey.workspaceCode;
|
|
3688
|
+
readonly path: "/workspace/spaceCode";
|
|
3689
|
+
}, {
|
|
3690
|
+
readonly key: RouteKey.resourceAuth;
|
|
3691
|
+
readonly path: "/workspace/auth";
|
|
3692
|
+
}, {
|
|
3693
|
+
readonly key: RouteKey.accessAnalysis;
|
|
3694
|
+
readonly path: "/workspace/resourceanalysis";
|
|
3695
|
+
}, {
|
|
3696
|
+
readonly key: RouteKey.auditLog;
|
|
3697
|
+
readonly path: "/workspace/auditLog";
|
|
3698
|
+
}, {
|
|
3699
|
+
readonly key: RouteKey.performanceAnalysis;
|
|
3700
|
+
readonly path: "/workspace/performance";
|
|
3701
|
+
readonly children: [{
|
|
3702
|
+
readonly key: RouteKey.performanceAnalysisDataset;
|
|
3703
|
+
readonly path: "/workspace/performance/cube";
|
|
3704
|
+
}, {
|
|
3705
|
+
readonly key: RouteKey.performanceAnalysisDashboard;
|
|
3706
|
+
readonly path: "/workspace/performance/dashboard";
|
|
3707
|
+
}];
|
|
3708
|
+
}, {
|
|
3709
|
+
readonly key: RouteKey.quickEngine;
|
|
3710
|
+
readonly path: "/workspace/quickEngine";
|
|
3711
|
+
}, {
|
|
3712
|
+
readonly key: RouteKey.resourceLineage;
|
|
3713
|
+
readonly path: "/workspace/lineage";
|
|
3714
|
+
}, {
|
|
3715
|
+
readonly key: RouteKey.workspaceRecycle;
|
|
3716
|
+
readonly path: "/workspace/recycle";
|
|
3717
|
+
}, {
|
|
3718
|
+
readonly key: RouteKey.advanceVersion;
|
|
3719
|
+
readonly path: "/workspace/version";
|
|
3720
|
+
}, {
|
|
3721
|
+
readonly key: RouteKey.workspacePreview;
|
|
3722
|
+
readonly path: "/workspace/preview";
|
|
3723
|
+
}];
|
|
3724
|
+
}, {
|
|
3725
|
+
readonly key: RouteKey.copilotHome;
|
|
3726
|
+
readonly path: "/copilotPage";
|
|
3727
|
+
}, {
|
|
3728
|
+
readonly key: RouteKey.wordAgentHome;
|
|
3729
|
+
readonly path: "/copilotPage/qreport";
|
|
3730
|
+
}, {
|
|
3731
|
+
readonly key: RouteKey.embedModule;
|
|
3732
|
+
readonly path: "/embed/module";
|
|
3733
|
+
}, {
|
|
3734
|
+
readonly key: RouteKey.biAgentUserConfig;
|
|
3735
|
+
readonly path: "/biAgents/userConfig";
|
|
3736
|
+
}, {
|
|
3737
|
+
readonly key: RouteKey.upgradeTable;
|
|
3738
|
+
readonly path: "/upgradeTable.htm";
|
|
3739
|
+
}, {
|
|
3740
|
+
readonly key: RouteKey.accountFailure;
|
|
3741
|
+
readonly path: "/accountFailure";
|
|
3742
|
+
}];
|
|
3151
3743
|
}, {
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
readonly children: [{
|
|
3155
|
-
readonly key: RouteKey.orgAdminInfo;
|
|
3156
|
-
readonly path: "/org/admin/info";
|
|
3744
|
+
readonly key: RouteKey.copilotRoot;
|
|
3745
|
+
readonly path: "/copilotRoot";
|
|
3157
3746
|
readonly children: [{
|
|
3158
|
-
|
|
3159
|
-
|
|
3747
|
+
readonly key: RouteKey.copilotView;
|
|
3748
|
+
readonly path: "/copilot";
|
|
3160
3749
|
}, {
|
|
3161
|
-
|
|
3162
|
-
|
|
3750
|
+
readonly key: RouteKey.copilotPublicView;
|
|
3751
|
+
readonly path: "/token3rd/copilot";
|
|
3163
3752
|
}];
|
|
3164
|
-
|
|
3165
|
-
readonly key: RouteKey.
|
|
3166
|
-
readonly path: "/
|
|
3753
|
+
}, {
|
|
3754
|
+
readonly key: RouteKey.portalRoot;
|
|
3755
|
+
readonly path: "/product";
|
|
3167
3756
|
readonly children: [{
|
|
3168
|
-
|
|
3169
|
-
|
|
3757
|
+
readonly key: RouteKey.portalEdit;
|
|
3758
|
+
readonly path: "/productedit.htm";
|
|
3170
3759
|
}, {
|
|
3171
|
-
|
|
3172
|
-
|
|
3760
|
+
readonly key: RouteKey.portalView;
|
|
3761
|
+
readonly path: "/product/view.htm";
|
|
3173
3762
|
}, {
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
readonly children: [{
|
|
3177
|
-
readonly key: RouteKey.userTagDetailManage;
|
|
3178
|
-
readonly path: "/org/admin/user/label/userTag";
|
|
3179
|
-
}, {
|
|
3180
|
-
readonly key: RouteKey.tagManage;
|
|
3181
|
-
readonly path: "/org/admin/user/label/tag";
|
|
3182
|
-
}];
|
|
3763
|
+
readonly key: RouteKey.portalId;
|
|
3764
|
+
readonly path: "/product/:productId";
|
|
3183
3765
|
}, {
|
|
3184
|
-
|
|
3185
|
-
|
|
3766
|
+
readonly key: RouteKey.portalPublicView;
|
|
3767
|
+
readonly path: "/token3rd/product/view.htm";
|
|
3186
3768
|
}];
|
|
3187
|
-
|
|
3188
|
-
readonly key: RouteKey.
|
|
3189
|
-
readonly path: "/
|
|
3769
|
+
}, {
|
|
3770
|
+
readonly key: RouteKey.formRoot;
|
|
3771
|
+
readonly path: "/form-system";
|
|
3190
3772
|
readonly children: [{
|
|
3191
|
-
|
|
3192
|
-
|
|
3773
|
+
readonly key: RouteKey.formCreate;
|
|
3774
|
+
readonly path: "/form-system/editor/create";
|
|
3193
3775
|
}, {
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
}
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
readonly path: "/org/admin/authorize";
|
|
3200
|
-
readonly children: [{
|
|
3201
|
-
readonly key: RouteKey.orgAdminAuthorizeResource;
|
|
3202
|
-
readonly path: "/org/admin/authorize/resource";
|
|
3776
|
+
readonly key: RouteKey.formEdit;
|
|
3777
|
+
readonly path: "/form-system/editor/edit/:id";
|
|
3778
|
+
}, {
|
|
3779
|
+
readonly key: RouteKey.formManage;
|
|
3780
|
+
readonly path: "/form-system/publish/manage/:id";
|
|
3203
3781
|
}, {
|
|
3204
|
-
|
|
3205
|
-
|
|
3782
|
+
readonly key: RouteKey.formView;
|
|
3783
|
+
readonly path: "/form-system/publish/preview/:id";
|
|
3784
|
+
}, {
|
|
3785
|
+
readonly key: RouteKey.formRecord;
|
|
3786
|
+
readonly path: "/form-system/publish/preview/:formId/:rowId";
|
|
3787
|
+
}, {
|
|
3788
|
+
readonly key: RouteKey.formPublicView;
|
|
3789
|
+
readonly path: "/token3rd/dataform/view.htm";
|
|
3206
3790
|
}];
|
|
3207
|
-
|
|
3208
|
-
readonly key: RouteKey.
|
|
3209
|
-
readonly path: "/
|
|
3791
|
+
}, {
|
|
3792
|
+
readonly key: RouteKey.dashboardRoot;
|
|
3793
|
+
readonly path: "/dashboardRoot";
|
|
3210
3794
|
readonly children: [{
|
|
3211
|
-
|
|
3212
|
-
|
|
3795
|
+
readonly key: RouteKey.dashboardView;
|
|
3796
|
+
readonly path: "/dashboard/view/pc.htm";
|
|
3797
|
+
}, {
|
|
3798
|
+
readonly key: RouteKey.dashboardPublicView;
|
|
3799
|
+
readonly path: "/token3rd/dashboard/view/pc.htm";
|
|
3800
|
+
}, {
|
|
3801
|
+
readonly key: RouteKey.dashboardEdit;
|
|
3802
|
+
readonly path: "/dashboard/pc.htm";
|
|
3803
|
+
}, {
|
|
3804
|
+
readonly key: RouteKey.dashboardPublicEdit;
|
|
3805
|
+
readonly path: "/token3rd/dashboard/pc.htm";
|
|
3806
|
+
}, {
|
|
3807
|
+
readonly key: RouteKey.dashboardMobileView1;
|
|
3808
|
+
readonly path: "/dashboard/mobile.htm";
|
|
3213
3809
|
}, {
|
|
3214
|
-
|
|
3215
|
-
|
|
3810
|
+
readonly key: RouteKey.dashboardMobileView2;
|
|
3811
|
+
readonly path: "/dashboard/view/mobile.htm";
|
|
3216
3812
|
}, {
|
|
3217
|
-
|
|
3218
|
-
|
|
3813
|
+
readonly key: RouteKey.dashboardMobileView3;
|
|
3814
|
+
readonly path: "/mobile/dashboard";
|
|
3219
3815
|
}];
|
|
3220
|
-
|
|
3221
|
-
readonly key: RouteKey.
|
|
3222
|
-
readonly path: "/
|
|
3816
|
+
}, {
|
|
3817
|
+
readonly key: RouteKey.workbookRoot;
|
|
3818
|
+
readonly path: "/report";
|
|
3223
3819
|
readonly children: [{
|
|
3224
|
-
|
|
3225
|
-
|
|
3820
|
+
readonly key: RouteKey.workbookView;
|
|
3821
|
+
readonly path: "/report/view.htm";
|
|
3226
3822
|
}, {
|
|
3227
|
-
|
|
3228
|
-
|
|
3823
|
+
readonly key: RouteKey.workbookPublicView;
|
|
3824
|
+
readonly path: "/token3rd/report/view.htm";
|
|
3229
3825
|
}, {
|
|
3230
|
-
|
|
3231
|
-
|
|
3826
|
+
readonly key: RouteKey.workbookFormTask;
|
|
3827
|
+
readonly path: "/report/formTask.htm";
|
|
3232
3828
|
}, {
|
|
3233
|
-
|
|
3234
|
-
|
|
3829
|
+
readonly key: RouteKey.workbookEdit;
|
|
3830
|
+
readonly path: "/report/index.htm";
|
|
3235
3831
|
}];
|
|
3236
|
-
|
|
3237
|
-
readonly key: RouteKey.
|
|
3238
|
-
readonly path: "/
|
|
3239
|
-
}, {
|
|
3240
|
-
readonly key: RouteKey.orgAdminTheme;
|
|
3241
|
-
readonly path: "/org/admin/theme/form";
|
|
3242
|
-
}, {
|
|
3243
|
-
readonly key: RouteKey.orgAdminSoftware;
|
|
3244
|
-
readonly path: "/org/admin/software";
|
|
3832
|
+
}, {
|
|
3833
|
+
readonly key: RouteKey.etlRoot;
|
|
3834
|
+
readonly path: "/etl";
|
|
3245
3835
|
readonly children: [{
|
|
3246
|
-
|
|
3247
|
-
|
|
3836
|
+
readonly key: RouteKey.etlEdit;
|
|
3837
|
+
readonly path: "/etl/edit.htm";
|
|
3248
3838
|
}, {
|
|
3249
|
-
|
|
3250
|
-
|
|
3839
|
+
readonly key: RouteKey.etlLog;
|
|
3840
|
+
readonly path: "/etllog/index.htm";
|
|
3841
|
+
}];
|
|
3842
|
+
}, {
|
|
3843
|
+
readonly key: RouteKey.datasetRoot;
|
|
3844
|
+
readonly path: "/cube";
|
|
3845
|
+
readonly children: [{
|
|
3846
|
+
readonly key: RouteKey.datasetEdit;
|
|
3847
|
+
readonly path: "/cube.htm";
|
|
3848
|
+
}];
|
|
3849
|
+
}, {
|
|
3850
|
+
readonly key: RouteKey.downloadRoot;
|
|
3851
|
+
readonly path: "/offline";
|
|
3852
|
+
readonly children: [{
|
|
3853
|
+
readonly key: RouteKey.downloadEdit;
|
|
3854
|
+
readonly path: "/offline/pc.htm";
|
|
3251
3855
|
}, {
|
|
3252
|
-
|
|
3253
|
-
|
|
3856
|
+
readonly key: RouteKey.downloadView;
|
|
3857
|
+
readonly path: "/offline/view/pc.htm";
|
|
3254
3858
|
}, {
|
|
3255
|
-
|
|
3256
|
-
|
|
3859
|
+
readonly key: RouteKey.downloadPublicView;
|
|
3860
|
+
readonly path: "/token3rd/offline/view/pc.htm";
|
|
3257
3861
|
}];
|
|
3258
|
-
|
|
3259
|
-
readonly key: RouteKey.
|
|
3260
|
-
readonly path: "/
|
|
3862
|
+
}, {
|
|
3863
|
+
readonly key: RouteKey.analysisRoot;
|
|
3864
|
+
readonly path: "/analysis";
|
|
3261
3865
|
readonly children: [{
|
|
3262
|
-
|
|
3263
|
-
|
|
3866
|
+
readonly key: RouteKey.analysisEdit;
|
|
3867
|
+
readonly path: "/analysis/edit.htm";
|
|
3264
3868
|
}, {
|
|
3265
|
-
|
|
3266
|
-
|
|
3869
|
+
readonly key: RouteKey.analysisView;
|
|
3870
|
+
readonly path: "/analysis/view.htm";
|
|
3267
3871
|
}, {
|
|
3268
|
-
|
|
3269
|
-
|
|
3872
|
+
readonly key: RouteKey.analysisPublicView;
|
|
3873
|
+
readonly path: "/token3rd/analysis/view.htm";
|
|
3874
|
+
}];
|
|
3875
|
+
}, {
|
|
3876
|
+
readonly key: RouteKey.screenRoot;
|
|
3877
|
+
readonly path: "/screen";
|
|
3878
|
+
readonly children: [{
|
|
3879
|
+
readonly key: RouteKey.screenEdit;
|
|
3880
|
+
readonly path: "/screen/index.htm";
|
|
3270
3881
|
}, {
|
|
3271
|
-
|
|
3272
|
-
|
|
3882
|
+
readonly key: RouteKey.screenView;
|
|
3883
|
+
readonly path: "/screen/view.htm";
|
|
3273
3884
|
}, {
|
|
3274
|
-
|
|
3275
|
-
|
|
3885
|
+
readonly key: RouteKey.screenPublicView;
|
|
3886
|
+
readonly path: "/token3rd/screen/view/pc.htm";
|
|
3887
|
+
}];
|
|
3888
|
+
}, {
|
|
3889
|
+
readonly key: RouteKey.consoleRoot;
|
|
3890
|
+
readonly path: "/console";
|
|
3891
|
+
readonly children: [{
|
|
3892
|
+
readonly key: RouteKey.console;
|
|
3893
|
+
readonly path: "/console.htm";
|
|
3276
3894
|
}, {
|
|
3277
|
-
|
|
3278
|
-
|
|
3895
|
+
readonly key: RouteKey.version;
|
|
3896
|
+
readonly path: "/version.htm";
|
|
3279
3897
|
}, {
|
|
3280
|
-
|
|
3281
|
-
|
|
3898
|
+
readonly key: RouteKey.consoleLy;
|
|
3899
|
+
readonly path: "/console-ly.htm";
|
|
3282
3900
|
}, {
|
|
3283
|
-
|
|
3284
|
-
|
|
3901
|
+
readonly key: RouteKey.consoleEntry;
|
|
3902
|
+
readonly path: "/console-entry.htm";
|
|
3285
3903
|
}];
|
|
3286
|
-
|
|
3287
|
-
readonly key: RouteKey.
|
|
3288
|
-
readonly path: "/
|
|
3289
|
-
}, {
|
|
3290
|
-
readonly key: RouteKey.orgAdminMicroApp;
|
|
3291
|
-
readonly path: "/org/admin/microapp";
|
|
3292
|
-
}, {
|
|
3293
|
-
readonly key: RouteKey.orgAdminCategory;
|
|
3294
|
-
readonly path: "/org/admin/category";
|
|
3295
|
-
}, {
|
|
3296
|
-
readonly key: RouteKey.orgAdminFavorites;
|
|
3297
|
-
readonly path: "/org/admin/favorites";
|
|
3298
|
-
}, {
|
|
3299
|
-
readonly key: RouteKey.orgDashboardConfig;
|
|
3300
|
-
readonly path: "/org/admin/dashboardConfig";
|
|
3301
|
-
}, {
|
|
3302
|
-
readonly key: RouteKey.orgAdminCopilot;
|
|
3303
|
-
readonly path: "/org/admin/copilot";
|
|
3904
|
+
}, {
|
|
3905
|
+
readonly key: RouteKey.opsRoot;
|
|
3906
|
+
readonly path: "/ops";
|
|
3304
3907
|
readonly children: [{
|
|
3305
|
-
|
|
3306
|
-
|
|
3908
|
+
readonly key: RouteKey.opsCenter;
|
|
3909
|
+
readonly path: "/opscenter";
|
|
3307
3910
|
}, {
|
|
3308
|
-
|
|
3309
|
-
|
|
3911
|
+
readonly key: RouteKey.opsSuper;
|
|
3912
|
+
readonly path: "/opscenter/super";
|
|
3310
3913
|
}, {
|
|
3311
|
-
|
|
3312
|
-
|
|
3914
|
+
readonly key: RouteKey.opsManager;
|
|
3915
|
+
readonly path: "/opscenter/manager";
|
|
3313
3916
|
}, {
|
|
3314
|
-
|
|
3315
|
-
|
|
3917
|
+
readonly key: RouteKey.opsNotice;
|
|
3918
|
+
readonly path: "/opscenter/notice";
|
|
3316
3919
|
}, {
|
|
3317
|
-
|
|
3318
|
-
|
|
3920
|
+
readonly key: RouteKey.opsLicense;
|
|
3921
|
+
readonly path: "/opscenter/license";
|
|
3319
3922
|
}, {
|
|
3320
|
-
|
|
3321
|
-
|
|
3923
|
+
readonly key: RouteKey.opsTenantManage;
|
|
3924
|
+
readonly path: "/opscenter/tenantManage";
|
|
3322
3925
|
}, {
|
|
3323
|
-
|
|
3324
|
-
|
|
3926
|
+
readonly key: RouteKey.opsApply;
|
|
3927
|
+
readonly path: "/opscenter/apply";
|
|
3325
3928
|
}, {
|
|
3326
|
-
|
|
3327
|
-
|
|
3929
|
+
readonly key: RouteKey.opsLoginConfig;
|
|
3930
|
+
readonly path: "/opscenter/loginConfig";
|
|
3328
3931
|
}, {
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
}];
|
|
3332
|
-
}, {
|
|
3333
|
-
readonly key: RouteKey.orgAdminMap;
|
|
3334
|
-
readonly path: "/org/admin/map";
|
|
3335
|
-
readonly children: [{
|
|
3336
|
-
readonly key: RouteKey.orgAdminCustomGeoInfo;
|
|
3337
|
-
readonly path: "/org/admin/map/geoInfo";
|
|
3932
|
+
readonly key: RouteKey.opsLoginSystemConfig;
|
|
3933
|
+
readonly path: "/opscenter/loginSystemConfig";
|
|
3338
3934
|
}, {
|
|
3339
|
-
|
|
3340
|
-
|
|
3935
|
+
readonly key: RouteKey.opsCopilotOfficialAgent;
|
|
3936
|
+
readonly path: "/opscenter/copilot/officialAgent";
|
|
3937
|
+
}, {
|
|
3938
|
+
readonly key: RouteKey.opsSystemConfig;
|
|
3939
|
+
readonly path: "/opscenter/sysconfig";
|
|
3940
|
+
}, {
|
|
3941
|
+
readonly key: RouteKey.docsManageMenus;
|
|
3942
|
+
readonly path: "/opscenter/docsmanage/menus";
|
|
3943
|
+
}, {
|
|
3944
|
+
readonly key: RouteKey.docsManageItems;
|
|
3945
|
+
readonly path: "/opscenter/docsmanage/items";
|
|
3341
3946
|
}];
|
|
3342
|
-
|
|
3343
|
-
readonly key: RouteKey.
|
|
3344
|
-
readonly path: "/
|
|
3345
|
-
|
|
3346
|
-
readonly key: RouteKey.
|
|
3347
|
-
readonly path: "/
|
|
3947
|
+
}, {
|
|
3948
|
+
readonly key: RouteKey.mobileEntry;
|
|
3949
|
+
readonly path: "/m/";
|
|
3950
|
+
}, {
|
|
3951
|
+
readonly key: RouteKey.mobileWebSite;
|
|
3952
|
+
readonly path: "/m/website";
|
|
3953
|
+
}, {
|
|
3954
|
+
readonly key: RouteKey.mobileHomeEntry;
|
|
3955
|
+
readonly path: "/m/home";
|
|
3956
|
+
}, {
|
|
3957
|
+
/** 移动端微应用 */
|
|
3958
|
+
readonly key: RouteKey.mobileRoot;
|
|
3959
|
+
readonly path: "/";
|
|
3348
3960
|
readonly children: [{
|
|
3349
|
-
|
|
3350
|
-
|
|
3961
|
+
readonly key: RouteKey.mobileHome;
|
|
3962
|
+
readonly path: "/home";
|
|
3963
|
+
}, {
|
|
3964
|
+
readonly key: RouteKey.mobileCommon;
|
|
3965
|
+
readonly path: "/common";
|
|
3966
|
+
}, {
|
|
3967
|
+
readonly key: RouteKey.mobileMine;
|
|
3968
|
+
readonly path: "/mine";
|
|
3969
|
+
}, {
|
|
3970
|
+
readonly key: RouteKey.mobileCard;
|
|
3971
|
+
readonly path: "/card";
|
|
3972
|
+
}, {
|
|
3973
|
+
readonly key: RouteKey.mobileCopilot;
|
|
3974
|
+
readonly path: "/copilot";
|
|
3351
3975
|
}, {
|
|
3352
|
-
|
|
3353
|
-
|
|
3976
|
+
readonly key: RouteKey.mobileData;
|
|
3977
|
+
readonly path: "/data";
|
|
3354
3978
|
}, {
|
|
3355
|
-
|
|
3356
|
-
|
|
3979
|
+
readonly key: RouteKey.mobilePermission;
|
|
3980
|
+
readonly path: "/permission";
|
|
3357
3981
|
}, {
|
|
3358
|
-
|
|
3359
|
-
|
|
3982
|
+
readonly key: RouteKey.mobileMyPermission;
|
|
3983
|
+
readonly path: "/myPermission";
|
|
3984
|
+
}, {
|
|
3985
|
+
readonly key: RouteKey.mobileMonitorCenter;
|
|
3986
|
+
readonly path: "/monitor/center";
|
|
3987
|
+
}, {
|
|
3988
|
+
readonly key: RouteKey.mobileMonitorDetail;
|
|
3989
|
+
readonly path: "/monitor/detail.htm";
|
|
3990
|
+
}, {
|
|
3991
|
+
readonly key: RouteKey.mobileSearch;
|
|
3992
|
+
readonly path: "/search";
|
|
3993
|
+
}, {
|
|
3994
|
+
readonly key: RouteKey.mobileDashboard;
|
|
3995
|
+
readonly path: "/dashboard";
|
|
3996
|
+
}, {
|
|
3997
|
+
readonly key: RouteKey.mobileIntro;
|
|
3998
|
+
readonly path: "/intro";
|
|
3999
|
+
}, {
|
|
4000
|
+
readonly key: RouteKey.mobileNotSupport;
|
|
4001
|
+
readonly path: "/notSupport";
|
|
4002
|
+
}, {
|
|
4003
|
+
readonly key: RouteKey.mobileDataForm;
|
|
4004
|
+
readonly path: "/dataForm";
|
|
4005
|
+
}, {
|
|
4006
|
+
readonly key: RouteKey.mobileCustom1;
|
|
4007
|
+
readonly path: "/custom1";
|
|
4008
|
+
}, {
|
|
4009
|
+
readonly key: RouteKey.mobileCustom2;
|
|
4010
|
+
readonly path: "/custom2";
|
|
4011
|
+
}, {
|
|
4012
|
+
readonly key: RouteKey.mobileCustom3;
|
|
4013
|
+
readonly path: "/custom3";
|
|
4014
|
+
}, {
|
|
4015
|
+
readonly key: RouteKey.mobileCustom4;
|
|
4016
|
+
readonly path: "/custom4";
|
|
4017
|
+
}, {
|
|
4018
|
+
readonly key: RouteKey.mobileError;
|
|
4019
|
+
readonly path: "/error";
|
|
3360
4020
|
}];
|
|
3361
|
-
|
|
3362
|
-
readonly key: RouteKey.
|
|
3363
|
-
readonly path: "/
|
|
3364
|
-
}, {
|
|
3365
|
-
readonly key: RouteKey.orgAdminPorting;
|
|
3366
|
-
readonly path: "/org/admin/porting";
|
|
4021
|
+
}, {
|
|
4022
|
+
readonly key: RouteKey.openPlatRoot;
|
|
4023
|
+
readonly path: "/openplatform";
|
|
3367
4024
|
readonly children: [{
|
|
3368
|
-
|
|
3369
|
-
|
|
4025
|
+
readonly key: RouteKey.openPlatHome;
|
|
4026
|
+
readonly path: "/openplatform/public/home";
|
|
4027
|
+
}, {
|
|
4028
|
+
readonly key: RouteKey.openPlatSolution;
|
|
4029
|
+
readonly path: "/openplatform/public/solutions";
|
|
3370
4030
|
}, {
|
|
3371
|
-
|
|
3372
|
-
|
|
4031
|
+
readonly key: RouteKey.openPlatTemplate;
|
|
4032
|
+
readonly path: "/openplatform/public/template";
|
|
4033
|
+
}, {
|
|
4034
|
+
readonly key: RouteKey.openPlatTemplateDocs;
|
|
4035
|
+
readonly path: "/openplatform/public/template/docs";
|
|
4036
|
+
}, {
|
|
4037
|
+
readonly key: RouteKey.extendedVisualizationTemplate;
|
|
4038
|
+
readonly path: "/openplatform/public/extendedVisualization";
|
|
3373
4039
|
}];
|
|
3374
|
-
|
|
3375
|
-
readonly key: RouteKey.
|
|
3376
|
-
readonly path: "/
|
|
3377
|
-
}, {
|
|
3378
|
-
readonly key: RouteKey.orgAdminPv;
|
|
3379
|
-
readonly path: "/org/admin/pv";
|
|
4040
|
+
}, {
|
|
4041
|
+
readonly key: RouteKey.template;
|
|
4042
|
+
readonly path: "/template";
|
|
3380
4043
|
readonly children: [{
|
|
3381
|
-
|
|
3382
|
-
|
|
4044
|
+
readonly key: RouteKey.templateView;
|
|
4045
|
+
readonly path: "/template/view";
|
|
4046
|
+
}, {
|
|
4047
|
+
readonly key: RouteKey.templateSuper;
|
|
4048
|
+
readonly path: "/template/super";
|
|
3383
4049
|
}, {
|
|
3384
|
-
|
|
3385
|
-
|
|
4050
|
+
readonly key: RouteKey.templateNlPublic;
|
|
4051
|
+
readonly path: "/template/nl/public";
|
|
3386
4052
|
}, {
|
|
3387
|
-
|
|
3388
|
-
|
|
4053
|
+
readonly key: RouteKey.templateNlPreView;
|
|
4054
|
+
readonly path: "/template/nl/preview";
|
|
3389
4055
|
}, {
|
|
3390
|
-
|
|
3391
|
-
|
|
4056
|
+
readonly key: RouteKey.templateVisualization;
|
|
4057
|
+
readonly path: "/template/extended_visualization";
|
|
3392
4058
|
}];
|
|
3393
|
-
|
|
3394
|
-
readonly key: RouteKey.
|
|
3395
|
-
readonly path: "/
|
|
4059
|
+
}, {
|
|
4060
|
+
readonly key: RouteKey.cardRoot;
|
|
4061
|
+
readonly path: "/card";
|
|
3396
4062
|
readonly children: [{
|
|
3397
|
-
|
|
3398
|
-
|
|
4063
|
+
readonly key: RouteKey.cardBoard;
|
|
4064
|
+
readonly path: "/card/board.htm";
|
|
3399
4065
|
}, {
|
|
3400
|
-
|
|
3401
|
-
|
|
4066
|
+
readonly key: RouteKey.cardShot;
|
|
4067
|
+
readonly path: "/card/snapshot.htm";
|
|
3402
4068
|
}];
|
|
3403
|
-
|
|
3404
|
-
readonly key: RouteKey.
|
|
3405
|
-
readonly path: "/
|
|
3406
|
-
|
|
3407
|
-
readonly key: RouteKey.
|
|
3408
|
-
readonly path: "/
|
|
4069
|
+
}, {
|
|
4070
|
+
readonly key: RouteKey.monitorScreenshot;
|
|
4071
|
+
readonly path: "/token3rd/monitor/card.htm";
|
|
4072
|
+
}, {
|
|
4073
|
+
readonly key: RouteKey.biAgent;
|
|
4074
|
+
readonly path: "/bi-agent";
|
|
3409
4075
|
readonly children: [{
|
|
3410
|
-
|
|
3411
|
-
|
|
4076
|
+
readonly key: RouteKey.biAgentHome;
|
|
4077
|
+
readonly path: "/bi-agent/home";
|
|
3412
4078
|
}, {
|
|
3413
|
-
|
|
3414
|
-
|
|
4079
|
+
readonly key: RouteKey.biAgentTracking;
|
|
4080
|
+
readonly path: "/bi-agent/tracking";
|
|
3415
4081
|
}, {
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
}];
|
|
3419
|
-
}, {
|
|
3420
|
-
readonly key: RouteKey.orgAdminBiAgent;
|
|
3421
|
-
readonly path: "/org/admin/biAgents";
|
|
3422
|
-
readonly children: [{
|
|
3423
|
-
readonly key: RouteKey.orgAdminBiManage;
|
|
3424
|
-
readonly path: "/org/admin/biAgents/userManage";
|
|
4082
|
+
readonly key: RouteKey.biAgentSmartQ;
|
|
4083
|
+
readonly path: "/bi-agent/copilot";
|
|
3425
4084
|
}, {
|
|
3426
|
-
|
|
3427
|
-
|
|
4085
|
+
readonly key: RouteKey.biAgentSettings;
|
|
4086
|
+
readonly path: "/bi-agent/settings";
|
|
3428
4087
|
}, {
|
|
3429
|
-
|
|
3430
|
-
|
|
4088
|
+
readonly key: RouteKey.biAgentHomePostDetail;
|
|
4089
|
+
readonly path: "/bi-agent/home-post-detail";
|
|
4090
|
+
}, {
|
|
4091
|
+
readonly key: RouteKey.biAgentTrackingPostDetail;
|
|
4092
|
+
readonly path: "/bi-agent/tracking-post-detail";
|
|
3431
4093
|
}];
|
|
3432
|
-
}];
|
|
3433
|
-
}, {
|
|
3434
|
-
readonly key: RouteKey.downloadTask;
|
|
3435
|
-
readonly path: "/offlineDownload";
|
|
3436
4094
|
}, {
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
readonly children: [{
|
|
3440
|
-
readonly key: RouteKey.messageCenterApproval;
|
|
3441
|
-
readonly path: "/message/center/approval";
|
|
3442
|
-
}, {
|
|
3443
|
-
readonly key: RouteKey.messageCenterApply;
|
|
3444
|
-
readonly path: "/message/center/apply";
|
|
3445
|
-
}];
|
|
4095
|
+
readonly key: RouteKey.dingDoc;
|
|
4096
|
+
readonly path: "/dingDoc.htm";
|
|
3446
4097
|
}, {
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
readonly children: [{
|
|
3450
|
-
readonly key: RouteKey.monitorManage;
|
|
3451
|
-
readonly path: "/monitor/manage";
|
|
3452
|
-
}, {
|
|
3453
|
-
readonly key: RouteKey.monitorDetail;
|
|
3454
|
-
readonly path: "/monitor/detail.htm";
|
|
3455
|
-
}, {
|
|
3456
|
-
readonly key: RouteKey.monitorDesc;
|
|
3457
|
-
readonly path: "/monitor/desc";
|
|
3458
|
-
}];
|
|
3459
|
-
}, {
|
|
3460
|
-
readonly key: RouteKey.openRoot;
|
|
3461
|
-
readonly path: "/openservice";
|
|
3462
|
-
readonly children: [{
|
|
3463
|
-
readonly key: RouteKey.openHome;
|
|
3464
|
-
readonly path: "/openservice/homePage";
|
|
3465
|
-
}, {
|
|
3466
|
-
readonly key: RouteKey.openNoPermission;
|
|
3467
|
-
readonly path: "/openservice/permission-denied";
|
|
3468
|
-
}, {
|
|
3469
|
-
readonly key: RouteKey.loginConfig;
|
|
3470
|
-
readonly path: "/openservice/loginConfig";
|
|
3471
|
-
}, {
|
|
3472
|
-
readonly key: RouteKey.openApi;
|
|
3473
|
-
readonly path: "/openservice/apis";
|
|
3474
|
-
readonly children: [{
|
|
3475
|
-
readonly key: RouteKey.openApiSearch;
|
|
3476
|
-
readonly path: "/openservice/apis/search";
|
|
3477
|
-
}];
|
|
3478
|
-
}, {
|
|
3479
|
-
readonly key: RouteKey.embedAnalyse;
|
|
3480
|
-
readonly path: "/openservice/embedAnalyse";
|
|
3481
|
-
}, {
|
|
3482
|
-
readonly key: RouteKey.dataService;
|
|
3483
|
-
readonly path: "/openservice/dataServices";
|
|
4098
|
+
readonly key: RouteKey.wordAgentRoot;
|
|
4099
|
+
readonly path: "/qreport";
|
|
3484
4100
|
readonly children: [{
|
|
3485
|
-
|
|
3486
|
-
|
|
4101
|
+
readonly key: RouteKey.wordAgentView;
|
|
4102
|
+
readonly path: "/qreport/view.htm";
|
|
3487
4103
|
}, {
|
|
3488
|
-
|
|
3489
|
-
|
|
4104
|
+
readonly key: RouteKey.wordAgentEdit;
|
|
4105
|
+
readonly path: "/qreport/edit.htm";
|
|
3490
4106
|
}, {
|
|
3491
|
-
|
|
3492
|
-
|
|
4107
|
+
readonly key: RouteKey.wordAgentPublicView;
|
|
4108
|
+
readonly path: "/token3rd/qreport/view.htm";
|
|
4109
|
+
}, {
|
|
4110
|
+
readonly key: RouteKey.wordAgentFilePreview;
|
|
4111
|
+
readonly path: "/qreport/file-view.htm";
|
|
3493
4112
|
}];
|
|
3494
|
-
|
|
3495
|
-
readonly key: RouteKey.
|
|
3496
|
-
readonly path: "/
|
|
3497
|
-
}, {
|
|
3498
|
-
readonly key: RouteKey.customComponent;
|
|
3499
|
-
readonly path: "/openservice/componentManage";
|
|
3500
|
-
}, {
|
|
3501
|
-
readonly key: RouteKey.customMenu;
|
|
3502
|
-
readonly path: "/openservice/componentMenu";
|
|
3503
|
-
}, {
|
|
3504
|
-
readonly key: RouteKey.customTemplate;
|
|
3505
|
-
readonly path: "/openservice/defineTemplate";
|
|
3506
|
-
}, {
|
|
3507
|
-
readonly key: RouteKey.customConnect;
|
|
3508
|
-
readonly path: "/openservice/defineConnect";
|
|
3509
|
-
}, {
|
|
3510
|
-
readonly key: RouteKey.customPlugin;
|
|
3511
|
-
readonly path: "/openservice/customPlugin";
|
|
3512
|
-
}, {
|
|
3513
|
-
readonly key: RouteKey.monitorEvent;
|
|
3514
|
-
readonly path: "/openservice/event";
|
|
3515
|
-
}, {
|
|
3516
|
-
readonly key: RouteKey.customEvent;
|
|
3517
|
-
readonly path: "/openservice/customEvent";
|
|
3518
|
-
}, {
|
|
3519
|
-
readonly key: RouteKey.embedStatistic;
|
|
3520
|
-
readonly path: "/openservice/embedStatistic";
|
|
3521
|
-
}, {
|
|
3522
|
-
readonly key: RouteKey.apiStatistic;
|
|
3523
|
-
readonly path: "/openservice/apiStatistic";
|
|
4113
|
+
}, {
|
|
4114
|
+
readonly key: RouteKey.loginRoot;
|
|
4115
|
+
readonly path: "/auth_sso";
|
|
3524
4116
|
readonly children: [{
|
|
3525
|
-
|
|
3526
|
-
|
|
4117
|
+
readonly key: RouteKey.loginSystemConfig;
|
|
4118
|
+
readonly path: "/auth_sso/login/systemConfig.htm";
|
|
4119
|
+
}, {
|
|
4120
|
+
readonly key: RouteKey.loginAuthConfig;
|
|
4121
|
+
readonly path: "/auth_sso/login/config.htm";
|
|
4122
|
+
}, {
|
|
4123
|
+
readonly key: RouteKey.login;
|
|
4124
|
+
readonly path: "/auth_sso/login/login.htm";
|
|
4125
|
+
}, {
|
|
4126
|
+
readonly key: RouteKey.loginMicro;
|
|
4127
|
+
readonly path: "/auth_sso/login/microLogin.htm";
|
|
3527
4128
|
}];
|
|
3528
|
-
}];
|
|
3529
|
-
}, {
|
|
3530
|
-
readonly key: RouteKey.standardUser;
|
|
3531
|
-
readonly path: "/instance/standand/user";
|
|
3532
|
-
}, {
|
|
3533
|
-
readonly key: RouteKey.subscriptionManage;
|
|
3534
|
-
readonly path: "/subscribe";
|
|
3535
|
-
readonly children: [{
|
|
3536
|
-
readonly key: RouteKey.subscriptionTask;
|
|
3537
|
-
readonly path: "/subscribe/task";
|
|
3538
|
-
}, {
|
|
3539
|
-
readonly key: RouteKey.sendRecord;
|
|
3540
|
-
readonly path: "/subscribe/record";
|
|
3541
|
-
}];
|
|
3542
4129
|
}, {
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
}, {
|
|
3546
|
-
readonly key: RouteKey.view;
|
|
3547
|
-
readonly path: "/view";
|
|
3548
|
-
readonly children: [{
|
|
3549
|
-
readonly key: RouteKey.viewHome;
|
|
3550
|
-
readonly path: "/view/index";
|
|
3551
|
-
}, {
|
|
3552
|
-
readonly key: RouteKey.viewBoard;
|
|
3553
|
-
readonly path: "/view/card";
|
|
3554
|
-
}, {
|
|
3555
|
-
readonly key: RouteKey.viewFavorite;
|
|
3556
|
-
readonly path: "/view/favorite";
|
|
3557
|
-
}, {
|
|
3558
|
-
readonly key: RouteKey.viewRecent;
|
|
3559
|
-
readonly path: "/view/recent";
|
|
3560
|
-
}, {
|
|
3561
|
-
readonly key: RouteKey.viewShared;
|
|
3562
|
-
readonly path: "/view/shared";
|
|
3563
|
-
}, {
|
|
3564
|
-
readonly key: RouteKey.viewCommonly;
|
|
3565
|
-
readonly path: "/view/commonly";
|
|
3566
|
-
}, {
|
|
3567
|
-
readonly key: RouteKey.viewMonitor;
|
|
3568
|
-
readonly path: "/view/monitor";
|
|
3569
|
-
}, {
|
|
3570
|
-
readonly key: RouteKey.viewSearch;
|
|
3571
|
-
readonly path: "/view/search";
|
|
3572
|
-
}, {
|
|
3573
|
-
readonly key: RouteKey.viewSharedContentOnly;
|
|
3574
|
-
readonly path: "/view/shared/contentOnly";
|
|
3575
|
-
}];
|
|
3576
|
-
}, {
|
|
3577
|
-
readonly key: RouteKey.viewPortal;
|
|
3578
|
-
readonly path: "/view/portal";
|
|
3579
|
-
/** 业务类目 */
|
|
3580
|
-
readonly children: [{
|
|
3581
|
-
readonly key: RouteKey.viewCategory;
|
|
3582
|
-
readonly path: "/view/category";
|
|
3583
|
-
}];
|
|
3584
|
-
}, {
|
|
3585
|
-
readonly key: RouteKey.workPlatform;
|
|
3586
|
-
readonly path: "/workplatform";
|
|
3587
|
-
}, {
|
|
3588
|
-
readonly key: RouteKey.workspace;
|
|
3589
|
-
readonly path: "/workspace";
|
|
3590
|
-
readonly children: [{
|
|
3591
|
-
readonly key: RouteKey.portalList;
|
|
3592
|
-
readonly path: "/workspace/product";
|
|
3593
|
-
}, {
|
|
3594
|
-
readonly key: RouteKey.dashboardList;
|
|
3595
|
-
readonly path: "/workspace/dashboard";
|
|
3596
|
-
}, {
|
|
3597
|
-
readonly key: RouteKey.workbookList;
|
|
3598
|
-
readonly path: "/workspace/report";
|
|
3599
|
-
}, {
|
|
3600
|
-
readonly key: RouteKey.workbookListTrialList;
|
|
3601
|
-
readonly path: "/workspace/trialReport";
|
|
3602
|
-
}, {
|
|
3603
|
-
readonly key: RouteKey.screenList;
|
|
3604
|
-
readonly path: "/workspace/screen";
|
|
3605
|
-
}, {
|
|
3606
|
-
readonly key: RouteKey.analysisList;
|
|
3607
|
-
readonly path: "/workspace/analysis";
|
|
3608
|
-
}, {
|
|
3609
|
-
readonly key: RouteKey.downloadList;
|
|
3610
|
-
readonly path: "/workspace/download";
|
|
3611
|
-
}, {
|
|
3612
|
-
readonly key: RouteKey.formList;
|
|
3613
|
-
readonly path: "/workspace/dataForm";
|
|
3614
|
-
}, {
|
|
3615
|
-
readonly key: RouteKey.etlList;
|
|
3616
|
-
readonly path: "/workspace/etl";
|
|
3617
|
-
}, {
|
|
3618
|
-
readonly key: RouteKey.datasetList;
|
|
3619
|
-
readonly path: "/workspace/schema";
|
|
3620
|
-
}, {
|
|
3621
|
-
readonly key: RouteKey.datasourceList;
|
|
3622
|
-
readonly path: "/workspace/datasource";
|
|
3623
|
-
}, {
|
|
3624
|
-
readonly key: RouteKey.workspaceInfo;
|
|
3625
|
-
readonly path: "/workspace/spaceInfo";
|
|
3626
|
-
}, {
|
|
3627
|
-
readonly key: RouteKey.workspaceUser;
|
|
3628
|
-
readonly path: "/workspace/spaceUser";
|
|
3629
|
-
}, {
|
|
3630
|
-
readonly key: RouteKey.workspaceCode;
|
|
3631
|
-
readonly path: "/workspace/spaceCode";
|
|
3632
|
-
}, {
|
|
3633
|
-
readonly key: RouteKey.resourceAuth;
|
|
3634
|
-
readonly path: "/workspace/auth";
|
|
3635
|
-
}, {
|
|
3636
|
-
readonly key: RouteKey.accessAnalysis;
|
|
3637
|
-
readonly path: "/workspace/resourceanalysis";
|
|
3638
|
-
}, {
|
|
3639
|
-
readonly key: RouteKey.auditLog;
|
|
3640
|
-
readonly path: "/workspace/auditLog";
|
|
3641
|
-
}, {
|
|
3642
|
-
readonly key: RouteKey.performanceAnalysis;
|
|
3643
|
-
readonly path: "/workspace/performance";
|
|
4130
|
+
readonly key: RouteKey.dashboardScreenRoot;
|
|
4131
|
+
readonly path: "/dashboard/screen";
|
|
3644
4132
|
readonly children: [{
|
|
3645
|
-
|
|
3646
|
-
|
|
4133
|
+
readonly key: RouteKey.dashboardScreenEdit;
|
|
4134
|
+
readonly path: "/dashboard/screen.htm";
|
|
3647
4135
|
}, {
|
|
3648
|
-
|
|
3649
|
-
|
|
4136
|
+
readonly key: RouteKey.dashboardScreenView;
|
|
4137
|
+
readonly path: "/dashboard/view/screenView.htm";
|
|
4138
|
+
}, {
|
|
4139
|
+
readonly key: RouteKey.dashboardScreenPublicView;
|
|
4140
|
+
readonly path: "/token3rd/dashboard/view/screenView.htm";
|
|
3650
4141
|
}];
|
|
3651
|
-
}, {
|
|
3652
|
-
readonly key: RouteKey.quickEngine;
|
|
3653
|
-
readonly path: "/workspace/quickEngine";
|
|
3654
|
-
}, {
|
|
3655
|
-
readonly key: RouteKey.resourceLineage;
|
|
3656
|
-
readonly path: "/workspace/lineage";
|
|
3657
|
-
}, {
|
|
3658
|
-
readonly key: RouteKey.workspaceRecycle;
|
|
3659
|
-
readonly path: "/workspace/recycle";
|
|
3660
|
-
}, {
|
|
3661
|
-
readonly key: RouteKey.advanceVersion;
|
|
3662
|
-
readonly path: "/workspace/version";
|
|
3663
|
-
}, {
|
|
3664
|
-
readonly key: RouteKey.workspacePreview;
|
|
3665
|
-
readonly path: "/workspace/preview";
|
|
3666
|
-
}];
|
|
3667
|
-
}, {
|
|
3668
|
-
readonly key: RouteKey.copilotHome;
|
|
3669
|
-
readonly path: "/copilotPage";
|
|
3670
|
-
}, {
|
|
3671
|
-
readonly key: RouteKey.embedModule;
|
|
3672
|
-
readonly path: "/embed/module";
|
|
3673
4142
|
}];
|
|
3674
|
-
}, {
|
|
3675
|
-
readonly key: RouteKey.copilotRoot;
|
|
3676
|
-
readonly path: "/copilot";
|
|
3677
|
-
readonly children: [{
|
|
3678
|
-
readonly key: RouteKey.copilotView;
|
|
3679
|
-
readonly path: "/copilot";
|
|
3680
|
-
}, {
|
|
3681
|
-
readonly key: RouteKey.copilotPublicView;
|
|
3682
|
-
readonly path: "/token3rd/copilot";
|
|
3683
|
-
}];
|
|
3684
|
-
}, {
|
|
3685
|
-
readonly key: RouteKey.portalRoot;
|
|
3686
|
-
readonly path: "/product";
|
|
3687
|
-
readonly children: [{
|
|
3688
|
-
readonly key: RouteKey.portalEdit;
|
|
3689
|
-
readonly path: "/productedit.htm";
|
|
3690
|
-
}, {
|
|
3691
|
-
readonly key: RouteKey.portalView;
|
|
3692
|
-
readonly path: "/product/view.htm";
|
|
3693
|
-
}, {
|
|
3694
|
-
readonly key: RouteKey.portalId;
|
|
3695
|
-
readonly path: "/product/:productId";
|
|
3696
|
-
}, {
|
|
3697
|
-
readonly key: RouteKey.portalPublicView;
|
|
3698
|
-
readonly path: "/token3rd/product/view.htm";
|
|
3699
|
-
}];
|
|
3700
|
-
}, {
|
|
3701
|
-
readonly key: RouteKey.formRoot;
|
|
3702
|
-
readonly path: "/form-system";
|
|
3703
|
-
readonly children: [{
|
|
3704
|
-
readonly key: RouteKey.formCreate;
|
|
3705
|
-
readonly path: "/form-system/editor/create";
|
|
3706
|
-
}, {
|
|
3707
|
-
readonly key: RouteKey.formEdit;
|
|
3708
|
-
readonly path: "/form-system/editor/edit/:id";
|
|
3709
|
-
}, {
|
|
3710
|
-
readonly key: RouteKey.formManage;
|
|
3711
|
-
readonly path: "/form-system/publish/manage/:id";
|
|
3712
|
-
}, {
|
|
3713
|
-
readonly key: RouteKey.formView;
|
|
3714
|
-
readonly path: "/form-system/publish/preview/:id";
|
|
3715
|
-
}, {
|
|
3716
|
-
readonly key: RouteKey.formRecord;
|
|
3717
|
-
readonly path: "/form-system/publish/preview/:formId/:rowId";
|
|
3718
|
-
}, {
|
|
3719
|
-
readonly key: RouteKey.formPublicView;
|
|
3720
|
-
readonly path: "/token3rd/dataform/view.htm";
|
|
3721
|
-
}];
|
|
3722
|
-
}, {
|
|
3723
|
-
readonly key: RouteKey.dashboardRoot;
|
|
3724
|
-
readonly path: "/dashboard";
|
|
3725
|
-
readonly children: [{
|
|
3726
|
-
readonly key: RouteKey.dashboardView;
|
|
3727
|
-
readonly path: "/dashboard/view/pc.htm";
|
|
3728
|
-
}, {
|
|
3729
|
-
readonly key: RouteKey.dashboardPublicView;
|
|
3730
|
-
readonly path: "/token3rd/dashboard/view/pc.htm";
|
|
3731
|
-
}, {
|
|
3732
|
-
readonly key: RouteKey.dashboardEdit;
|
|
3733
|
-
readonly path: "/dashboard/pc.htm";
|
|
3734
|
-
}, {
|
|
3735
|
-
readonly key: RouteKey.dashboardPublicEdit;
|
|
3736
|
-
readonly path: "/token3rd/dashboard/pc.htm";
|
|
3737
|
-
}, {
|
|
3738
|
-
readonly key: RouteKey.dashboardMobileView1;
|
|
3739
|
-
readonly path: "/dashboard/mobile.htm";
|
|
3740
|
-
}, {
|
|
3741
|
-
readonly key: RouteKey.dashboardMobileView2;
|
|
3742
|
-
readonly path: "/dashboard/view/mobile.htm";
|
|
3743
|
-
}, {
|
|
3744
|
-
readonly key: RouteKey.dashboardMobileView3;
|
|
3745
|
-
readonly path: "/mobile/dashboard";
|
|
3746
|
-
}];
|
|
3747
|
-
}, {
|
|
3748
|
-
readonly key: RouteKey.workbookRoot;
|
|
3749
|
-
readonly path: "/report";
|
|
3750
|
-
readonly children: [{
|
|
3751
|
-
readonly key: RouteKey.workbookView;
|
|
3752
|
-
readonly path: "/report/view.htm";
|
|
3753
|
-
}, {
|
|
3754
|
-
readonly key: RouteKey.workbookPublicView;
|
|
3755
|
-
readonly path: "/token3rd/report/view.htm";
|
|
3756
|
-
}, {
|
|
3757
|
-
readonly key: RouteKey.workbookFormTask;
|
|
3758
|
-
readonly path: "/report/formTask.htm";
|
|
3759
|
-
}, {
|
|
3760
|
-
readonly key: RouteKey.workbookEdit;
|
|
3761
|
-
readonly path: "/report/index.htm";
|
|
3762
|
-
}];
|
|
3763
|
-
}, {
|
|
3764
|
-
readonly key: RouteKey.etlRoot;
|
|
3765
|
-
readonly path: "/etl";
|
|
3766
|
-
readonly children: [{
|
|
3767
|
-
readonly key: RouteKey.etlEdit;
|
|
3768
|
-
readonly path: "/etl/edit.htm";
|
|
3769
|
-
}, {
|
|
3770
|
-
readonly key: RouteKey.etlLog;
|
|
3771
|
-
readonly path: "/etllog/index.htm";
|
|
3772
|
-
}];
|
|
3773
|
-
}, {
|
|
3774
|
-
readonly key: RouteKey.datasetRoot;
|
|
3775
|
-
readonly path: "/cube";
|
|
3776
|
-
readonly children: [{
|
|
3777
|
-
readonly key: RouteKey.datasetEdit;
|
|
3778
|
-
readonly path: "/cube.htm";
|
|
3779
|
-
}];
|
|
3780
|
-
}, {
|
|
3781
|
-
readonly key: RouteKey.downloadRoot;
|
|
3782
|
-
readonly path: "/offline";
|
|
3783
|
-
readonly children: [{
|
|
3784
|
-
readonly key: RouteKey.downloadEdit;
|
|
3785
|
-
readonly path: "/offline/pc.htm";
|
|
3786
|
-
}, {
|
|
3787
|
-
readonly key: RouteKey.downloadView;
|
|
3788
|
-
readonly path: "/offline/view/pc.htm";
|
|
3789
|
-
}, {
|
|
3790
|
-
readonly key: RouteKey.downloadPublicView;
|
|
3791
|
-
readonly path: "/token3rd/offline/view/pc.htm";
|
|
3792
|
-
}];
|
|
3793
|
-
}, {
|
|
3794
|
-
readonly key: RouteKey.analysisRoot;
|
|
3795
|
-
readonly path: "/analysis";
|
|
3796
|
-
readonly children: [{
|
|
3797
|
-
readonly key: RouteKey.analysisEdit;
|
|
3798
|
-
readonly path: "/analysis/edit.htm";
|
|
3799
|
-
}, {
|
|
3800
|
-
readonly key: RouteKey.analysisView;
|
|
3801
|
-
readonly path: "/analysis/view.htm";
|
|
3802
|
-
}, {
|
|
3803
|
-
readonly key: RouteKey.analysisPublicView;
|
|
3804
|
-
readonly path: "/token3rd/analysis/view.htm";
|
|
3805
|
-
}];
|
|
3806
|
-
}, {
|
|
3807
|
-
readonly key: RouteKey.screenRoot;
|
|
3808
|
-
readonly path: "/screen";
|
|
3809
|
-
readonly children: [{
|
|
3810
|
-
readonly key: RouteKey.screenEdit;
|
|
3811
|
-
readonly path: "/screen/index.htm";
|
|
3812
|
-
}, {
|
|
3813
|
-
readonly key: RouteKey.screenView;
|
|
3814
|
-
readonly path: "/screen/view.htm";
|
|
3815
|
-
}, {
|
|
3816
|
-
readonly key: RouteKey.screenPublicView;
|
|
3817
|
-
readonly path: "/token3rd/screen/view/pc.htm";
|
|
3818
|
-
}];
|
|
3819
|
-
}, {
|
|
3820
|
-
readonly key: RouteKey.consoleRoot;
|
|
3821
|
-
readonly path: "/console";
|
|
3822
|
-
readonly children: [{
|
|
3823
|
-
readonly key: RouteKey.console;
|
|
3824
|
-
readonly path: "/console.htm";
|
|
3825
|
-
}, {
|
|
3826
|
-
readonly key: RouteKey.version;
|
|
3827
|
-
readonly path: "/version.htm";
|
|
3828
|
-
}, {
|
|
3829
|
-
readonly key: RouteKey.consoleLy;
|
|
3830
|
-
readonly path: "/console-ly.htm";
|
|
3831
|
-
}, {
|
|
3832
|
-
readonly key: RouteKey.consoleEntry;
|
|
3833
|
-
readonly path: "/console-entry.htm";
|
|
3834
|
-
}];
|
|
3835
|
-
}, {
|
|
3836
|
-
readonly key: RouteKey.opsRoot;
|
|
3837
|
-
readonly path: "/ops";
|
|
3838
|
-
readonly children: [{
|
|
3839
|
-
readonly key: RouteKey.opsCenter;
|
|
3840
|
-
readonly path: "/opscenter";
|
|
3841
|
-
}, {
|
|
3842
|
-
readonly key: RouteKey.opsSuper;
|
|
3843
|
-
readonly path: "/opscenter/super";
|
|
3844
|
-
}, {
|
|
3845
|
-
readonly key: RouteKey.opsManager;
|
|
3846
|
-
readonly path: "/opscenter/manager";
|
|
3847
|
-
}, {
|
|
3848
|
-
readonly key: RouteKey.opsNotice;
|
|
3849
|
-
readonly path: "/opscenter/notice";
|
|
3850
|
-
}, {
|
|
3851
|
-
readonly key: RouteKey.opsLicense;
|
|
3852
|
-
readonly path: "/opscenter/license";
|
|
3853
|
-
}, {
|
|
3854
|
-
readonly key: RouteKey.opsTenantManage;
|
|
3855
|
-
readonly path: "/opscenter/tenantManage";
|
|
3856
|
-
}, {
|
|
3857
|
-
readonly key: RouteKey.opsApply;
|
|
3858
|
-
readonly path: "/opscenter/apply";
|
|
3859
|
-
}, {
|
|
3860
|
-
readonly key: RouteKey.opsLoginConfig;
|
|
3861
|
-
readonly path: "/opscenter/loginConfig";
|
|
3862
|
-
}, {
|
|
3863
|
-
readonly key: RouteKey.opsLoginSystemConfig;
|
|
3864
|
-
readonly path: "/opscenter/loginSystemConfig";
|
|
3865
|
-
}, {
|
|
3866
|
-
readonly key: RouteKey.opsSystemConfig;
|
|
3867
|
-
readonly path: "/opscenter/sysconfig";
|
|
3868
|
-
}, {
|
|
3869
|
-
readonly key: RouteKey.docsManageMenus;
|
|
3870
|
-
readonly path: "/opscenter/docsmanage/menus";
|
|
3871
|
-
}, {
|
|
3872
|
-
readonly key: RouteKey.docsManageItems;
|
|
3873
|
-
readonly path: "/opscenter/docsmanage/items";
|
|
3874
|
-
}];
|
|
3875
|
-
}, {
|
|
3876
|
-
readonly key: RouteKey.mobileEntry;
|
|
3877
|
-
readonly path: "/m/";
|
|
3878
|
-
}, {
|
|
3879
|
-
/** 移动端微应用 */
|
|
3880
|
-
readonly key: RouteKey.mobileRoot;
|
|
3881
|
-
readonly path: "/";
|
|
3882
|
-
readonly children: [{
|
|
3883
|
-
readonly key: RouteKey.mobileHome;
|
|
3884
|
-
readonly path: "/home";
|
|
3885
|
-
}, {
|
|
3886
|
-
readonly key: RouteKey.mobileCommon;
|
|
3887
|
-
readonly path: "/common";
|
|
3888
|
-
}, {
|
|
3889
|
-
readonly key: RouteKey.mobileMine;
|
|
3890
|
-
readonly path: "/mine";
|
|
3891
|
-
}, {
|
|
3892
|
-
readonly key: RouteKey.mobileCard;
|
|
3893
|
-
readonly path: "/card";
|
|
3894
|
-
}, {
|
|
3895
|
-
readonly key: RouteKey.mobileCopilot;
|
|
3896
|
-
readonly path: "/copilot";
|
|
3897
|
-
}, {
|
|
3898
|
-
readonly key: RouteKey.mobileData;
|
|
3899
|
-
readonly path: "/data";
|
|
3900
|
-
}, {
|
|
3901
|
-
readonly key: RouteKey.mobilePermission;
|
|
3902
|
-
readonly path: "/permission";
|
|
3903
|
-
}, {
|
|
3904
|
-
readonly key: RouteKey.mobileMyPermission;
|
|
3905
|
-
readonly path: "/myPermission";
|
|
3906
|
-
}, {
|
|
3907
|
-
readonly key: RouteKey.mobileMonitorCenter;
|
|
3908
|
-
readonly path: "/monitor/center";
|
|
3909
|
-
}, {
|
|
3910
|
-
readonly key: RouteKey.mobileMonitorDetail;
|
|
3911
|
-
readonly path: "/monitor/detail.htm";
|
|
3912
|
-
}, {
|
|
3913
|
-
readonly key: RouteKey.mobileSearch;
|
|
3914
|
-
readonly path: "/search";
|
|
3915
|
-
}, {
|
|
3916
|
-
readonly key: RouteKey.mobileDashboard;
|
|
3917
|
-
readonly path: "/dashboard";
|
|
3918
|
-
}, {
|
|
3919
|
-
readonly key: RouteKey.mobileIntro;
|
|
3920
|
-
readonly path: "/intro";
|
|
3921
|
-
}, {
|
|
3922
|
-
readonly key: RouteKey.mobileNotSupport;
|
|
3923
|
-
readonly path: "/notSupport";
|
|
3924
|
-
}, {
|
|
3925
|
-
readonly key: RouteKey.mobileDataForm;
|
|
3926
|
-
readonly path: "/dataForm";
|
|
3927
|
-
}, {
|
|
3928
|
-
readonly key: RouteKey.mobileCustom1;
|
|
3929
|
-
readonly path: "/custom1";
|
|
3930
|
-
}, {
|
|
3931
|
-
readonly key: RouteKey.mobileCustom2;
|
|
3932
|
-
readonly path: "/custom2";
|
|
3933
|
-
}, {
|
|
3934
|
-
readonly key: RouteKey.mobileCustom3;
|
|
3935
|
-
readonly path: "/custom3";
|
|
3936
|
-
}, {
|
|
3937
|
-
readonly key: RouteKey.mobileCustom4;
|
|
3938
|
-
readonly path: "/custom4";
|
|
3939
|
-
}, {
|
|
3940
|
-
readonly key: RouteKey.mobileError;
|
|
3941
|
-
readonly path: "/error";
|
|
3942
|
-
}];
|
|
3943
|
-
}, {
|
|
3944
|
-
readonly key: RouteKey.openPlatRoot;
|
|
3945
|
-
readonly path: "/openplatform";
|
|
3946
|
-
readonly children: [{
|
|
3947
|
-
readonly key: RouteKey.openPlatHome;
|
|
3948
|
-
readonly path: "/openplatform/public/home";
|
|
3949
|
-
}, {
|
|
3950
|
-
readonly key: RouteKey.openPlatSolution;
|
|
3951
|
-
readonly path: "/openplatform/public/solutions";
|
|
3952
|
-
}, {
|
|
3953
|
-
readonly key: RouteKey.openPlatTemplate;
|
|
3954
|
-
readonly path: "/openplatform/public/template";
|
|
3955
|
-
}, {
|
|
3956
|
-
readonly key: RouteKey.openPlatTemplateDocs;
|
|
3957
|
-
readonly path: "/openplatform/public/template/docs";
|
|
3958
|
-
}, {
|
|
3959
|
-
readonly key: RouteKey.extendedVisualizationTemplate;
|
|
3960
|
-
readonly path: "/openplatform/public/extendedVisualization";
|
|
3961
|
-
}];
|
|
3962
|
-
}, {
|
|
3963
|
-
readonly key: RouteKey.template;
|
|
3964
|
-
readonly path: "/template";
|
|
3965
|
-
readonly children: [{
|
|
3966
|
-
readonly key: RouteKey.templateView;
|
|
3967
|
-
readonly path: "/template/view";
|
|
3968
|
-
}, {
|
|
3969
|
-
readonly key: RouteKey.templateSuper;
|
|
3970
|
-
readonly path: "/template/super";
|
|
3971
|
-
}, {
|
|
3972
|
-
readonly key: RouteKey.templateNlPublic;
|
|
3973
|
-
readonly path: "/template/nl/public";
|
|
3974
|
-
}, {
|
|
3975
|
-
readonly key: RouteKey.templateNlPreView;
|
|
3976
|
-
readonly path: "/template/nl/preview";
|
|
3977
|
-
}];
|
|
3978
|
-
}, {
|
|
3979
|
-
readonly key: RouteKey.cardRoot;
|
|
3980
|
-
readonly path: "/card";
|
|
3981
|
-
readonly children: [{
|
|
3982
|
-
readonly key: RouteKey.cardBoard;
|
|
3983
|
-
readonly path: "/card/board.htm";
|
|
3984
|
-
}, {
|
|
3985
|
-
readonly key: RouteKey.cardShot;
|
|
3986
|
-
readonly path: "/card/snapshot.htm";
|
|
3987
|
-
}];
|
|
3988
|
-
}, {
|
|
3989
|
-
readonly key: RouteKey.biAgent;
|
|
3990
|
-
readonly path: "/bi-agent";
|
|
3991
|
-
readonly children: [{
|
|
3992
|
-
readonly key: RouteKey.biAgentHome;
|
|
3993
|
-
readonly path: "/bi-agent/home";
|
|
3994
|
-
}, {
|
|
3995
|
-
readonly key: RouteKey.biAgentTracking;
|
|
3996
|
-
readonly path: "/bi-agent/tracking";
|
|
3997
|
-
}, {
|
|
3998
|
-
readonly key: RouteKey.biAgentSmartQ;
|
|
3999
|
-
readonly path: "/bi-agent/copilot";
|
|
4000
|
-
}, {
|
|
4001
|
-
readonly key: RouteKey.biAgentSettings;
|
|
4002
|
-
readonly path: "/bi-agent/settings";
|
|
4003
|
-
}, {
|
|
4004
|
-
readonly key: RouteKey.biAgentHomePostDetail;
|
|
4005
|
-
readonly path: "/bi-agent/home-post-detail";
|
|
4006
|
-
}, {
|
|
4007
|
-
readonly key: RouteKey.biAgentTrackingPostDetail;
|
|
4008
|
-
readonly path: "/bi-agent/tracking-post-detail";
|
|
4009
|
-
}];
|
|
4010
|
-
}, {
|
|
4011
|
-
readonly key: RouteKey.loginRoot;
|
|
4012
|
-
readonly path: "/auth_sso";
|
|
4013
|
-
readonly children: [{
|
|
4014
|
-
readonly key: RouteKey.loginMicro;
|
|
4015
|
-
readonly path: "/auth_sso/login/microLogin.htm";
|
|
4016
|
-
}];
|
|
4017
|
-
}, {
|
|
4018
|
-
readonly key: RouteKey.dashboardScreenRoot;
|
|
4019
|
-
readonly path: "/dashboard/screen";
|
|
4020
|
-
readonly children: [{
|
|
4021
|
-
readonly key: RouteKey.dashboardScreenEdit;
|
|
4022
|
-
readonly path: "/dashboard/screen.htm";
|
|
4023
|
-
}, {
|
|
4024
|
-
readonly key: RouteKey.dashboardScreenView;
|
|
4025
|
-
readonly path: "/dashboard/view/screenView.htm";
|
|
4026
|
-
}, {
|
|
4027
|
-
readonly key: RouteKey.dashboardScreenPublicView;
|
|
4028
|
-
readonly path: "/token3rd/dashboard/view/screenView.htm";
|
|
4029
|
-
}];
|
|
4030
|
-
}];
|
|
4031
4143
|
};
|
|
4032
|
-
/**
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4144
|
+
/** 路由映射
|
|
4145
|
+
* @description 路由映射
|
|
4146
|
+
* @example
|
|
4147
|
+
* 解析RouteKey:用于获取RouteKey对应的path值
|
|
4148
|
+
* ROUTE_PATH_MAP[RouteKey.login] // '/auth_sso/login/login.htm'
|
|
4149
|
+
*
|
|
4150
|
+
* 解析path:用于快速获取path对应的RouteKey,减少matchRoute中遍历复杂度
|
|
4151
|
+
* PATH_ROUTE_MAP['/auth_sso/login/login.htm'] // RouteKey.login
|
|
4152
|
+
*/
|
|
4153
|
+
const ROUTE_PATH_MAP: Record<RouteKey, string>;
|
|
4154
|
+
const PATH_ROUTE_MAP: Record<string, RouteKey>;
|
|
4155
|
+
const DYNAMIC_PATH_ROUTE_MAP: Record<string, RouteKey>;
|
|
4156
|
+
/** 移动端路由映射 */
|
|
4157
|
+
const MOBILE_PATH_ROUTE_MAP: Record<string, RouteKey>;
|
|
4158
|
+
export { ROUTE_PATH_MAP, PATH_ROUTE_MAP, DYNAMIC_PATH_ROUTE_MAP, MOBILE_PATH_ROUTE_MAP };
|
|
4036
4159
|
}
|
|
4037
4160
|
|
|
4038
4161
|
declare module '@quickbi/bi-types/permission-type' {
|
|
@@ -4076,7 +4199,9 @@ declare module '@quickbi/bi-types/permission-type' {
|
|
|
4076
4199
|
/** 仪表板问数 */
|
|
4077
4200
|
dashboardNl2sql = "dashboardNl2sql",
|
|
4078
4201
|
/** 资源包管理 */
|
|
4079
|
-
resourceConfig = "resourceConfig"
|
|
4202
|
+
resourceConfig = "resourceConfig",
|
|
4203
|
+
/** 小Q报告 */
|
|
4204
|
+
qReport = "qreport"
|
|
4080
4205
|
}
|
|
4081
4206
|
}
|
|
4082
4207
|
|
|
@@ -4467,6 +4592,12 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4467
4592
|
contrastValueType: string;
|
|
4468
4593
|
contrastWithQuery: boolean;
|
|
4469
4594
|
ratioCalcType: string;
|
|
4595
|
+
/** 自定义-对比日期数值 */
|
|
4596
|
+
periodValue?: number;
|
|
4597
|
+
/** 自定义-对比日期数值类型 */
|
|
4598
|
+
periodType?: string;
|
|
4599
|
+
/** 高级配置-对比日期类型 */
|
|
4600
|
+
periodIdentifier?: string;
|
|
4470
4601
|
}
|
|
4471
4602
|
/** 日期累计参数 */
|
|
4472
4603
|
export interface DateAccumulateParams {
|
|
@@ -4641,6 +4772,20 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4641
4772
|
sortNum: number;
|
|
4642
4773
|
};
|
|
4643
4774
|
}
|
|
4775
|
+
export enum ContrastType {
|
|
4776
|
+
DAY_DAY_RING_RATIO = "day_day",
|
|
4777
|
+
DAY_WEEK_RATIO = "day_week",
|
|
4778
|
+
DAY_MONTH_RATIO = "day_month",
|
|
4779
|
+
DAY_YEAR_RATIO = "day_year",
|
|
4780
|
+
WEEK_WEEK_RING_RATIO = "week_week",
|
|
4781
|
+
WEEK_YEAR_RATIO = "week_year",
|
|
4782
|
+
MONTH_MONTH_RING_RATIO = "month_month",
|
|
4783
|
+
MONTH_YEAR_RATIO = "month_year",
|
|
4784
|
+
QUARTER_QUARTER_RING_RATIO = "quarter_quarter",
|
|
4785
|
+
QUARTER_YEAR_RATIO = "quarter_year",
|
|
4786
|
+
YEAR_YEAR_RING_RATIO = "year_year",
|
|
4787
|
+
DYNAMIC_RING_RATIO = "dynamic"
|
|
4788
|
+
}
|
|
4644
4789
|
}
|
|
4645
4790
|
|
|
4646
4791
|
declare module '@quickbi/bi-types/data-panel/data-schema-item' {
|
|
@@ -5341,6 +5486,8 @@ declare module '@quickbi/bi-types/data-panel/data-schema-item' {
|
|
|
5341
5486
|
* 目前逻辑是切换数据集组合对关联字段需要保留,编辑数据集组合后,之前设置的字段关联会被重置(会存在主副数据集切换的场景,之前设置的关联字段会失效)
|
|
5342
5487
|
*/
|
|
5343
5488
|
isExtendAssociateFields?: boolean;
|
|
5489
|
+
/** 是否切换数据集 */
|
|
5490
|
+
isSwitchCube?: boolean;
|
|
5344
5491
|
}
|
|
5345
5492
|
export type OnChangeCubeOptions = Omit<OnFreshComponentOptions, 'isClickButton' | 'refreshMobileChart' | 'ReloadCube' | 'noPollingCache'>;
|
|
5346
5493
|
export type OnFreshComponentType = (comp: any, changeAttributeList?: string[], isFresh?: boolean, options?: OnFreshComponentOptions) => any;
|
|
@@ -6386,7 +6533,10 @@ declare module '@quickbi/bi-types/cube/data-source' {
|
|
|
6386
6533
|
aurora_postgresql = "aurora_postgresql",
|
|
6387
6534
|
aloudata_can = "aloudata_can",
|
|
6388
6535
|
oscar = "oscar",
|
|
6389
|
-
dms = "dms"
|
|
6536
|
+
dms = "dms",
|
|
6537
|
+
selectdb = "selectdb",
|
|
6538
|
+
databricks = "databricks",
|
|
6539
|
+
bigquery = "bigquery"
|
|
6390
6540
|
}
|
|
6391
6541
|
export enum AcrossDsType {
|
|
6392
6542
|
UN_SET,
|
|
@@ -6428,6 +6578,23 @@ declare module '@quickbi/bi-types/cube/data-source' {
|
|
|
6428
6578
|
/** 其他类型的数据源 按返回的顺序排序在后面 */
|
|
6429
6579
|
OTHER_DATASOURCE = 7
|
|
6430
6580
|
}
|
|
6581
|
+
/** 数据源类型 */
|
|
6582
|
+
export enum DataSourcesConfigId {
|
|
6583
|
+
cloud = "cloud",
|
|
6584
|
+
local = "local",
|
|
6585
|
+
database = "database",
|
|
6586
|
+
application = "application",
|
|
6587
|
+
other = "other",
|
|
6588
|
+
api = "api",
|
|
6589
|
+
tencent = "tencent",
|
|
6590
|
+
huawei = "huawei",
|
|
6591
|
+
microsoft = "microsoft",
|
|
6592
|
+
aws = "aws",
|
|
6593
|
+
google = "google",
|
|
6594
|
+
customDs = "customDs"
|
|
6595
|
+
}
|
|
6596
|
+
/** 数据库数据源类型 */
|
|
6597
|
+
export const dataBaseType: DataSourcesConfigId[];
|
|
6431
6598
|
}
|
|
6432
6599
|
|
|
6433
6600
|
declare module '@quickbi/bi-types/cube/cube-links' {
|