@quickbi/bi-types 3.0.51-beta.1 → 3.0.51-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.d.ts +34 -1030
- package/cjs/index.js +45 -160
- package/esm/index.d.ts +34 -1030
- package/esm/index.mjs +45 -160
- package/package.json +6 -2
package/cjs/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
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,
|
|
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,
|
|
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, } from '@quickbi/bi-types/data-panel';
|
|
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, } 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';
|
|
10
10
|
export type { CrossTableHeaderMeta } from '@quickbi/bi-types/cross-table';
|
|
@@ -38,13 +38,13 @@ declare module '@quickbi/bi-types' {
|
|
|
38
38
|
declare module '@quickbi/bi-types/data-panel' {
|
|
39
39
|
import type { CommonCompInputAreaType, ConfigCellOption, FieldConfigRow } from '@quickbi/bi-types/data-panel/base';
|
|
40
40
|
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';
|
|
41
|
-
import type { CommonCompInputComplexFilter, TimeTypeFilter, CommonCompInputComplexFilterItem, TableCalculateParam, CalcOrder, TopNParams, CountParams, PercentileParams, RankParams, CompareParams, DateAccumulateParams, ProportionParams
|
|
42
|
-
import { DataConfig, DataConfigAreaItemColumn, TableType, TableDirection, ProportionType, AccumulateCalcType
|
|
41
|
+
import type { CommonCompInputComplexFilter, TimeTypeFilter, CommonCompInputComplexFilterItem, TableCalculateParam, CalcOrder, TopNParams, CountParams, PercentileParams, RankParams, CompareParams, DateAccumulateParams, ProportionParams } from '@quickbi/bi-types/data-panel/data-config';
|
|
42
|
+
import { DataConfig, DataConfigAreaItemColumn, TableType, TableDirection, ProportionType, AccumulateCalcType } from '@quickbi/bi-types/data-panel/data-config';
|
|
43
43
|
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';
|
|
44
44
|
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';
|
|
45
45
|
import { DataPanelDataSchema, ResultDisplay } from '@quickbi/bi-types/data-panel/data-schema';
|
|
46
|
-
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,
|
|
47
|
-
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,
|
|
46
|
+
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, };
|
|
47
|
+
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, };
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
declare module '@quickbi/bi-types/component-type' {
|
|
@@ -1681,7 +1681,7 @@ declare module '@quickbi/bi-types/standard-model' {
|
|
|
1681
1681
|
*/
|
|
1682
1682
|
import type { EmptyValueDisplayConfig, SecondDataType } from '@quickbi/bi-types/cube/cube-model';
|
|
1683
1683
|
import type { CountParams, FieldCollectionType, PercentileParams, TopNParams, CompareParams, DateAccumulateParams, ProportionParams } from '@quickbi/bi-types/data-panel';
|
|
1684
|
-
import type {
|
|
1684
|
+
import type { RankParams } from '@quickbi/bi-types/data-panel/data-config';
|
|
1685
1685
|
/** 字段信息 */
|
|
1686
1686
|
export interface FieldModel {
|
|
1687
1687
|
/** @deprecated 请优先使用 uuid
|
|
@@ -1754,18 +1754,12 @@ declare module '@quickbi/bi-types/standard-model' {
|
|
|
1754
1754
|
dateAccumulateParams?: DateAccumulateParams;
|
|
1755
1755
|
/** 占比参数 */
|
|
1756
1756
|
proportionParams?: ProportionParams;
|
|
1757
|
-
/** 差异参数 */
|
|
1758
|
-
differenceParams?: DifferenceParams;
|
|
1759
|
-
/** 移动计算参数 */
|
|
1760
|
-
movingCalculationParams?: MovingCalculationParams;
|
|
1761
1757
|
/** 字段集类型 */
|
|
1762
1758
|
fieldCollectionType?: FieldCollectionType | null;
|
|
1763
1759
|
/** 是否来自于字段组全选字段 */
|
|
1764
1760
|
fromFieldGroup?: boolean;
|
|
1765
1761
|
/** 空值展示配置 */
|
|
1766
1762
|
emptyValueDisplayConfig?: EmptyValueDisplayConfig;
|
|
1767
|
-
/** 百分位值: 聚合方式中的百分位值 */
|
|
1768
|
-
percentileValue?: number;
|
|
1769
1763
|
}
|
|
1770
1764
|
/** 通用字段聚合方式 */
|
|
1771
1765
|
export type FieldAggregation = 'sum' | 'avg' | 'max' | 'min' | 'count' | 'countd';
|
|
@@ -2695,6 +2689,12 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2695
2689
|
orgEngineCache = "orgEngineCache",
|
|
2696
2690
|
/** 组织管理-健康巡检 */
|
|
2697
2691
|
orgIntelligent = "orgIntelligent",
|
|
2692
|
+
/** 组织管理-一键投产 */
|
|
2693
|
+
orgAdminPorting = "orgAdminPorting",
|
|
2694
|
+
/** 组织管理-一键投产-投产包配置 */
|
|
2695
|
+
orgAdminPortingConfig = "orgAdminPortingConfig",
|
|
2696
|
+
/** 组织管理-一键投产-离线导入 */
|
|
2697
|
+
orgAdminPortingRecord = "orgAdminPortingRecord",
|
|
2698
2698
|
/** 组织管理-审计日志 */
|
|
2699
2699
|
orgAdminAL = "orgAdminAL",
|
|
2700
2700
|
/** 组织管理-统计分析 */
|
|
@@ -2723,22 +2723,12 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2723
2723
|
orgAdminResourceRecord = "orgAdminResourceRecord",
|
|
2724
2724
|
/** 功能介绍 */
|
|
2725
2725
|
orgAdminResourceDesc = "orgAdminResourceDesc",
|
|
2726
|
-
/** 投产包管理 */
|
|
2727
|
-
orgAdminPorting = "orgAdminPorting",
|
|
2728
|
-
/** 投产包配置 */
|
|
2729
|
-
orgAdminPortingConfig = "orgAdminPortingConfig",
|
|
2730
|
-
/** 发布包-离线导入 */
|
|
2731
|
-
orgAdminPortingRecord = "orgAdminPortingRecord",
|
|
2732
|
-
/** 数据头条 */
|
|
2733
|
-
orgAdminBiAgent = "orgAdminBIAgent",
|
|
2734
|
-
/** 数据头条-用户管理 */
|
|
2735
|
-
orgAdminBiManage = "orgAdminBiManage",
|
|
2736
|
-
/** 数据头条-用户详情 */
|
|
2737
|
-
orgAdminBiManageDetail = "orgAdminBiManageDetail",
|
|
2738
2726
|
/** 企业应用 */
|
|
2739
2727
|
companyApply = "companyApply",
|
|
2740
2728
|
/** 取数中心-下载任务 */
|
|
2741
2729
|
downloadTask = "downloadTask",
|
|
2730
|
+
/** 创作区页面 */
|
|
2731
|
+
create = "create",
|
|
2742
2732
|
/** 审批中心页面 */
|
|
2743
2733
|
approvalCenter = "approvalCenter",
|
|
2744
2734
|
/** 审批中心-审批 */
|
|
@@ -2804,8 +2794,16 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2804
2794
|
subscriptionTask = "subscriptionTask",
|
|
2805
2795
|
/** 发送记录, [注意] 该值已被模块嵌入功能落库, 禁止修改枚举值 */
|
|
2806
2796
|
sendRecord = "sendRecord",
|
|
2807
|
-
/**
|
|
2797
|
+
/** 模版市场 */
|
|
2808
2798
|
templateRoot = "templateRoot",
|
|
2799
|
+
/** 模版市场-预览 */
|
|
2800
|
+
templateView = "templateView",
|
|
2801
|
+
/** 模版市场-管理后台 */
|
|
2802
|
+
templateSuper = "templateSuper",
|
|
2803
|
+
/** 模版市场-非登录态模板公开页 */
|
|
2804
|
+
templateNlPublic = "templateNlPublic",
|
|
2805
|
+
/** 模版市场-非登录态模板预览页 */
|
|
2806
|
+
templateNlPreView = "templateNlPreView",
|
|
2809
2807
|
/** 我的看板 */
|
|
2810
2808
|
view = "view",
|
|
2811
2809
|
/** 首页 */
|
|
@@ -2824,16 +2822,10 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2824
2822
|
viewMonitor = "viewMonitor",
|
|
2825
2823
|
/** 智能搜索 */
|
|
2826
2824
|
viewSearch = "viewSearch",
|
|
2827
|
-
/** 我的看板-授权于我(仅显示内容) */
|
|
2828
|
-
viewSharedContentOnly = "viewSharedContentOnly",
|
|
2829
2825
|
/** 企业门户 */
|
|
2830
2826
|
viewPortal = "viewPortal",
|
|
2831
2827
|
/** 业务类目 */
|
|
2832
2828
|
viewCategory = "viewCategory",
|
|
2833
|
-
/** 首页下的智能小Q页 */
|
|
2834
|
-
copilotHome = "copilotHome",
|
|
2835
|
-
/** 模块嵌入 */
|
|
2836
|
-
embedModule = "embedModule",
|
|
2837
2829
|
/** 工作台 会跳到很多地方 */
|
|
2838
2830
|
workPlatform = "workPlatform",
|
|
2839
2831
|
/** 工作空间 */
|
|
@@ -2886,10 +2878,8 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2886
2878
|
advanceVersion = "advanceVersion",
|
|
2887
2879
|
/** 老列表页 */
|
|
2888
2880
|
workspacePreview = "workspacePreview",
|
|
2889
|
-
/**
|
|
2890
|
-
|
|
2891
|
-
/** 智能小Q */
|
|
2892
|
-
copilotRoot = "copilotRoot",
|
|
2881
|
+
/** 智能小Q 首页内智能小Q */
|
|
2882
|
+
copilotHome = "copilotHome",
|
|
2893
2883
|
/** 智能小Q 单独预览页 */
|
|
2894
2884
|
copilotView = "copilotView",
|
|
2895
2885
|
/** 智能小Q 单独预览-公开预览 */
|
|
@@ -2900,10 +2890,6 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2900
2890
|
portalEdit = "portalEdit",
|
|
2901
2891
|
/** 数据门户预览页 */
|
|
2902
2892
|
portalView = "portalView",
|
|
2903
|
-
/** 数据门户公开预览页 */
|
|
2904
|
-
portalPublicView = "portalPublicView",
|
|
2905
|
-
/** 数据门户预览短链模式 */
|
|
2906
|
-
portalId = "portalId",
|
|
2907
2893
|
/** 表单填报系统 */
|
|
2908
2894
|
formRoot = "formRoot",
|
|
2909
2895
|
/** 表单填报系统 新建页 */
|
|
@@ -2926,13 +2912,6 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
2926
2912
|
dashboardPublicView = "dashboardPublicView",
|
|
2927
2913
|
/** 仪表板编辑 */
|
|
2928
2914
|
dashboardEdit = "dashboardEdit",
|
|
2929
|
-
/** 仪表板公开编辑 */
|
|
2930
|
-
dashboardPublicEdit = "dashboardPublicEdit",
|
|
2931
|
-
/** 仪表板移动端预览 */
|
|
2932
|
-
dashboardMobileView1 = "dashboardMobileView1",
|
|
2933
|
-
/** 仪表板移动端预览 */
|
|
2934
|
-
dashboardMobileView2 = "dashboardMobileView2",
|
|
2935
|
-
dashboardMobileView3 = "dashboardMobileView3",
|
|
2936
2915
|
/** -------------------------------------------------- 电子表格 -------------------------------------------------- */
|
|
2937
2916
|
workbookRoot = "workbookRoot",
|
|
2938
2917
|
/** 电子表格预览 */
|
|
@@ -3077,30 +3056,6 @@ declare module '@quickbi/bi-types/router/route-key' {
|
|
|
3077
3056
|
cardBoard = "cardBoard",
|
|
3078
3057
|
/** 单卡片快照分享 */
|
|
3079
3058
|
cardShot = "cardShot",
|
|
3080
|
-
/** 模版市场根路由 [注意] 因为templateRoot被首页中的模版市场页占用,此处的根路由Key使用template */
|
|
3081
|
-
template = "template",
|
|
3082
|
-
/** 模版市场-预览 */
|
|
3083
|
-
templateView = "templateView",
|
|
3084
|
-
/** 模版市场-管理后台 */
|
|
3085
|
-
templateSuper = "templateSuper",
|
|
3086
|
-
/** 模版市场-非登录态模板公开页 */
|
|
3087
|
-
templateNlPublic = "templateNlPublic",
|
|
3088
|
-
/** 模版市场-非登录态模板预览页 */
|
|
3089
|
-
templateNlPreView = "templateNlPreView",
|
|
3090
|
-
/** 观星台 */
|
|
3091
|
-
biAgent = "biAgent",
|
|
3092
|
-
/** 观星台首页 */
|
|
3093
|
-
biAgentHome = "biAgentHome",
|
|
3094
|
-
/** 观星台追踪 */
|
|
3095
|
-
biAgentTracking = "biAgentTracking",
|
|
3096
|
-
/** 观星台智能小Q */
|
|
3097
|
-
biAgentSmartQ = "biAgentSmartQ",
|
|
3098
|
-
/** 观星台设置 */
|
|
3099
|
-
biAgentSettings = "biAgentSettings",
|
|
3100
|
-
/** 观星台动态详情 */
|
|
3101
|
-
biAgentHomePostDetail = "biAgentHomePostDetail",
|
|
3102
|
-
/** 观星台动态详情追踪 */
|
|
3103
|
-
biAgentTrackingPostDetail = "biAgentTrackingPostDetail",
|
|
3104
3059
|
/** 老大屏应用页面 */
|
|
3105
3060
|
dashboardScreenRoot = "dashboardScreenRoot",
|
|
3106
3061
|
/** 老大屏编辑页 */
|
|
@@ -3119,886 +3074,13 @@ declare module '@quickbi/bi-types/router/route-tree' {
|
|
|
3119
3074
|
*/
|
|
3120
3075
|
import { RouteKey } from '@quickbi/bi-types/router/route-key';
|
|
3121
3076
|
/** 全局路由树节点 */
|
|
3122
|
-
export
|
|
3077
|
+
export interface RouteTreeNode {
|
|
3123
3078
|
key: RouteKey;
|
|
3124
|
-
path:
|
|
3125
|
-
children?: RouteTreeNode
|
|
3126
|
-
}
|
|
3079
|
+
path: string;
|
|
3080
|
+
children?: RouteTreeNode[];
|
|
3081
|
+
}
|
|
3127
3082
|
/** 全局路由树 */
|
|
3128
|
-
export const ROUTE_TREE:
|
|
3129
|
-
readonly key: RouteKey.root;
|
|
3130
|
-
readonly path: "/";
|
|
3131
|
-
readonly children: [{
|
|
3132
|
-
readonly key: RouteKey.homeRoot;
|
|
3133
|
-
readonly path: "/home";
|
|
3134
|
-
readonly children: [{
|
|
3135
|
-
readonly key: RouteKey.notFound;
|
|
3136
|
-
readonly path: "/404";
|
|
3137
|
-
}, {
|
|
3138
|
-
readonly key: RouteKey.orgAdmin;
|
|
3139
|
-
readonly path: "/org/admin";
|
|
3140
|
-
readonly children: [{
|
|
3141
|
-
readonly key: RouteKey.orgAdminInfo;
|
|
3142
|
-
readonly path: "/org/admin/info";
|
|
3143
|
-
readonly children: [{
|
|
3144
|
-
readonly key: RouteKey.orgAdminOrgInfo;
|
|
3145
|
-
readonly path: "/org/admin/info/orgInfo";
|
|
3146
|
-
}, {
|
|
3147
|
-
readonly key: RouteKey.orgAdminInfoSuper;
|
|
3148
|
-
readonly path: "/org/admin/info/super";
|
|
3149
|
-
}];
|
|
3150
|
-
}, {
|
|
3151
|
-
readonly key: RouteKey.orgAdminUser;
|
|
3152
|
-
readonly path: "/org/admin/user";
|
|
3153
|
-
readonly children: [{
|
|
3154
|
-
readonly key: RouteKey.userMemberManage;
|
|
3155
|
-
readonly path: "/org/admin/user/member";
|
|
3156
|
-
}, {
|
|
3157
|
-
readonly key: RouteKey.userGroupManage;
|
|
3158
|
-
readonly path: "/org/admin/user/userGroup";
|
|
3159
|
-
}, {
|
|
3160
|
-
readonly key: RouteKey.userTagManage;
|
|
3161
|
-
readonly path: "/org/admin/user/label";
|
|
3162
|
-
readonly children: [{
|
|
3163
|
-
readonly key: RouteKey.userTagDetailManage;
|
|
3164
|
-
readonly path: "/org/admin/user/label/userTag";
|
|
3165
|
-
}, {
|
|
3166
|
-
readonly key: RouteKey.tagManage;
|
|
3167
|
-
readonly path: "/org/admin/user/label/tag";
|
|
3168
|
-
}];
|
|
3169
|
-
}, {
|
|
3170
|
-
readonly key: RouteKey.userRoleManage;
|
|
3171
|
-
readonly path: "/org/admin/user/role";
|
|
3172
|
-
}];
|
|
3173
|
-
}, {
|
|
3174
|
-
readonly key: RouteKey.orgAdminSpace;
|
|
3175
|
-
readonly path: "/org/admin/space";
|
|
3176
|
-
readonly children: [{
|
|
3177
|
-
readonly key: RouteKey.orgAdminWorkspace;
|
|
3178
|
-
readonly path: "/org/admin/space/workspaceList";
|
|
3179
|
-
}, {
|
|
3180
|
-
readonly key: RouteKey.orgAdminWorkspaceInfo;
|
|
3181
|
-
readonly path: "/org/admin/space/workspaceInfo";
|
|
3182
|
-
}];
|
|
3183
|
-
}, {
|
|
3184
|
-
readonly key: RouteKey.orgAdminAuthorize;
|
|
3185
|
-
readonly path: "/org/admin/authorize";
|
|
3186
|
-
readonly children: [{
|
|
3187
|
-
readonly key: RouteKey.orgAdminAuthorizeResource;
|
|
3188
|
-
readonly path: "/org/admin/authorize/resource";
|
|
3189
|
-
}, {
|
|
3190
|
-
readonly key: RouteKey.orgAdminAuthorizeUser;
|
|
3191
|
-
readonly path: "/org/admin/authorize/user";
|
|
3192
|
-
}];
|
|
3193
|
-
}, {
|
|
3194
|
-
readonly key: RouteKey.orgAdminCoopAuth;
|
|
3195
|
-
readonly path: "/org/admin/coopauth";
|
|
3196
|
-
readonly children: [{
|
|
3197
|
-
readonly key: RouteKey.orgAdminSpaceAuth;
|
|
3198
|
-
readonly path: "/org/admin/coopauth/spaceAuth";
|
|
3199
|
-
}, {
|
|
3200
|
-
readonly key: RouteKey.orgAdminApproval;
|
|
3201
|
-
readonly path: "/org/admin/coopauth/approval";
|
|
3202
|
-
}, {
|
|
3203
|
-
readonly key: RouteKey.orgAdminRowLevelMigrate;
|
|
3204
|
-
readonly path: "/org/admin/coopauth/rowLevelMigrate";
|
|
3205
|
-
}];
|
|
3206
|
-
}, {
|
|
3207
|
-
readonly key: RouteKey.orgAdminDataSafety;
|
|
3208
|
-
readonly path: "/org/admin/dataSafety";
|
|
3209
|
-
readonly children: [{
|
|
3210
|
-
readonly key: RouteKey.orgAdminWatermark;
|
|
3211
|
-
readonly path: "/org/admin/dataSafety/watermark";
|
|
3212
|
-
}, {
|
|
3213
|
-
readonly key: RouteKey.orgAdminCopyManage;
|
|
3214
|
-
readonly path: "/org/admin/dataSafety/copyManage";
|
|
3215
|
-
}, {
|
|
3216
|
-
readonly key: RouteKey.orgAdminRowLevelPermission;
|
|
3217
|
-
readonly path: "/org/admin/dataSafety/rowLevelPermission";
|
|
3218
|
-
}, {
|
|
3219
|
-
readonly key: RouteKey.orgAdminExportControl;
|
|
3220
|
-
readonly path: "/org/admin/dataSafety/exportControl";
|
|
3221
|
-
}];
|
|
3222
|
-
}, {
|
|
3223
|
-
readonly key: RouteKey.orgThemeCustom;
|
|
3224
|
-
readonly path: "/org/admin/theme/custom";
|
|
3225
|
-
}, {
|
|
3226
|
-
readonly key: RouteKey.orgAdminTheme;
|
|
3227
|
-
readonly path: "/org/admin/theme/form";
|
|
3228
|
-
}, {
|
|
3229
|
-
readonly key: RouteKey.orgAdminSoftware;
|
|
3230
|
-
readonly path: "/org/admin/software";
|
|
3231
|
-
readonly children: [{
|
|
3232
|
-
readonly key: RouteKey.orgAdminDingAuthorize;
|
|
3233
|
-
readonly path: "/org/admin/software/dingAuthorize";
|
|
3234
|
-
}, {
|
|
3235
|
-
readonly key: RouteKey.orgAdminWxApiAuth;
|
|
3236
|
-
readonly path: "/org/admin/software/wxApiAuth";
|
|
3237
|
-
}, {
|
|
3238
|
-
readonly key: RouteKey.orgAdminFeishuApiAuth;
|
|
3239
|
-
readonly path: "/org/admin/software/feishuApiAuth";
|
|
3240
|
-
}];
|
|
3241
|
-
}, {
|
|
3242
|
-
readonly key: RouteKey.orgChannelRobot;
|
|
3243
|
-
readonly path: "/org/admin/channelRobot";
|
|
3244
|
-
readonly children: [{
|
|
3245
|
-
readonly key: RouteKey.orgPushLinkConfig;
|
|
3246
|
-
readonly path: "/org/admin/channelRobot/pushLinkConfig";
|
|
3247
|
-
}, {
|
|
3248
|
-
readonly key: RouteKey.orgDingBucChannel;
|
|
3249
|
-
readonly path: "/org/admin/channelRobot/dingBucChannel";
|
|
3250
|
-
}, {
|
|
3251
|
-
readonly key: RouteKey.orgDingChannel;
|
|
3252
|
-
readonly path: "/org/admin/channelRobot/dingChannel";
|
|
3253
|
-
}, {
|
|
3254
|
-
readonly key: RouteKey.orgWeChatChannel;
|
|
3255
|
-
readonly path: "/org/admin/channelRobot/weChatChannel";
|
|
3256
|
-
}, {
|
|
3257
|
-
readonly key: RouteKey.orgFeiShuChannel;
|
|
3258
|
-
readonly path: "/org/admin/channelRobot/feiShuChannel";
|
|
3259
|
-
}, {
|
|
3260
|
-
readonly key: RouteKey.orgSmsChannel;
|
|
3261
|
-
readonly path: "/org/admin/channelRobot/smsChannel";
|
|
3262
|
-
}, {
|
|
3263
|
-
readonly key: RouteKey.orgEmailChannel;
|
|
3264
|
-
readonly path: "/org/admin/channelRobot/emailChannel";
|
|
3265
|
-
}, {
|
|
3266
|
-
readonly key: RouteKey.orgCustomChannel;
|
|
3267
|
-
readonly path: "/org/admin/channelRobot/customChannel";
|
|
3268
|
-
}];
|
|
3269
|
-
}, {
|
|
3270
|
-
readonly key: RouteKey.orgAdminPcPortalApp;
|
|
3271
|
-
readonly path: "/org/admin/portalapp";
|
|
3272
|
-
}, {
|
|
3273
|
-
readonly key: RouteKey.orgAdminMicroApp;
|
|
3274
|
-
readonly path: "/org/admin/microapp";
|
|
3275
|
-
}, {
|
|
3276
|
-
readonly key: RouteKey.orgAdminCategory;
|
|
3277
|
-
readonly path: "/org/admin/category";
|
|
3278
|
-
}, {
|
|
3279
|
-
readonly key: RouteKey.orgAdminFavorites;
|
|
3280
|
-
readonly path: "/org/admin/favorites";
|
|
3281
|
-
}, {
|
|
3282
|
-
readonly key: RouteKey.orgDashboardConfig;
|
|
3283
|
-
readonly path: "/org/admin/dashboardConfig";
|
|
3284
|
-
}, {
|
|
3285
|
-
readonly key: RouteKey.orgAdminCopilot;
|
|
3286
|
-
readonly path: "/org/admin/copilot";
|
|
3287
|
-
readonly children: [{
|
|
3288
|
-
readonly key: RouteKey.orgResourceManage;
|
|
3289
|
-
readonly path: "/org/admin/copilot/resourceManage";
|
|
3290
|
-
}, {
|
|
3291
|
-
readonly key: RouteKey.orgAnalysisThemeManage;
|
|
3292
|
-
readonly path: "/org/admin/copilot/analysisThemeManage";
|
|
3293
|
-
}, {
|
|
3294
|
-
readonly key: RouteKey.orgAgentManage;
|
|
3295
|
-
readonly path: "/org/admin/copilot/agentManage";
|
|
3296
|
-
}, {
|
|
3297
|
-
readonly key: RouteKey.orgDashboardQuestionManage;
|
|
3298
|
-
readonly path: "/org/admin/copilot/dashboardQuestionManage";
|
|
3299
|
-
}, {
|
|
3300
|
-
readonly key: RouteKey.orgResourceAuth;
|
|
3301
|
-
readonly path: "/org/admin/copilot/resourceAuth";
|
|
3302
|
-
}, {
|
|
3303
|
-
readonly key: RouteKey.orgKnowledgeBaseManage;
|
|
3304
|
-
readonly path: "/org/admin/copilot/knowledgeBaseManage";
|
|
3305
|
-
}, {
|
|
3306
|
-
readonly key: RouteKey.orgEmbedManage;
|
|
3307
|
-
readonly path: "/org/admin/copilot/embedManage";
|
|
3308
|
-
}, {
|
|
3309
|
-
readonly key: RouteKey.orgQuestionOperations;
|
|
3310
|
-
readonly path: "/org/admin/copilot/questionOperations";
|
|
3311
|
-
}, {
|
|
3312
|
-
readonly key: RouteKey.orgGlobalConfig;
|
|
3313
|
-
readonly path: "/org/admin/copilot/globalConfig";
|
|
3314
|
-
}];
|
|
3315
|
-
}, {
|
|
3316
|
-
readonly key: RouteKey.orgAdminMap;
|
|
3317
|
-
readonly path: "/org/admin/map";
|
|
3318
|
-
readonly children: [{
|
|
3319
|
-
readonly key: RouteKey.orgAdminCustomGeoInfo;
|
|
3320
|
-
readonly path: "/org/admin/map/geoInfo";
|
|
3321
|
-
}, {
|
|
3322
|
-
readonly key: RouteKey.orgAdminCustomPictureMap;
|
|
3323
|
-
readonly path: "/org/admin/map/pictureMap";
|
|
3324
|
-
}];
|
|
3325
|
-
}, {
|
|
3326
|
-
readonly key: RouteKey.orgGlobalSearch;
|
|
3327
|
-
readonly path: "/org/admin/globalSearch";
|
|
3328
|
-
}, {
|
|
3329
|
-
readonly key: RouteKey.orgAdminEngine;
|
|
3330
|
-
readonly path: "/org/admin/engine";
|
|
3331
|
-
readonly children: [{
|
|
3332
|
-
readonly key: RouteKey.orgOfflineQuicken;
|
|
3333
|
-
readonly path: "/org/admin/engine/offlineQuicken";
|
|
3334
|
-
}, {
|
|
3335
|
-
readonly key: RouteKey.orgQuickEngine;
|
|
3336
|
-
readonly path: "/org/admin/engine/quickEngine";
|
|
3337
|
-
}, {
|
|
3338
|
-
readonly key: RouteKey.orgEngineUpload;
|
|
3339
|
-
readonly path: "/org/admin/engine/upload";
|
|
3340
|
-
}, {
|
|
3341
|
-
readonly key: RouteKey.orgEngineCache;
|
|
3342
|
-
readonly path: "/org/admin/engine/cache";
|
|
3343
|
-
}];
|
|
3344
|
-
}, {
|
|
3345
|
-
readonly key: RouteKey.orgIntelligent;
|
|
3346
|
-
readonly path: "/org/admin/intelligent";
|
|
3347
|
-
}, {
|
|
3348
|
-
readonly key: RouteKey.orgAdminPorting;
|
|
3349
|
-
readonly path: "/org/admin/porting";
|
|
3350
|
-
readonly children: [{
|
|
3351
|
-
readonly key: RouteKey.orgAdminPortingConfig;
|
|
3352
|
-
readonly path: "/org/admin/porting/config";
|
|
3353
|
-
}, {
|
|
3354
|
-
readonly key: RouteKey.orgAdminPortingRecord;
|
|
3355
|
-
readonly path: "/org/admin/porting/record";
|
|
3356
|
-
}];
|
|
3357
|
-
}, {
|
|
3358
|
-
readonly key: RouteKey.orgAdminAL;
|
|
3359
|
-
readonly path: "/org/admin/al";
|
|
3360
|
-
}, {
|
|
3361
|
-
readonly key: RouteKey.orgAdminPv;
|
|
3362
|
-
readonly path: "/org/admin/pv";
|
|
3363
|
-
readonly children: [{
|
|
3364
|
-
readonly key: RouteKey.orgAdminPvUser;
|
|
3365
|
-
readonly path: "/org/admin/pv/user";
|
|
3366
|
-
}, {
|
|
3367
|
-
readonly key: RouteKey.orgAdminPvResource;
|
|
3368
|
-
readonly path: "/org/admin/pv/resource";
|
|
3369
|
-
}, {
|
|
3370
|
-
readonly key: RouteKey.orgAdminPvUsage;
|
|
3371
|
-
readonly path: "/org/admin/pv/usage";
|
|
3372
|
-
}, {
|
|
3373
|
-
readonly key: RouteKey.orgAdminPvView;
|
|
3374
|
-
readonly path: "/org/admin/pv/view";
|
|
3375
|
-
}];
|
|
3376
|
-
}, {
|
|
3377
|
-
readonly key: RouteKey.orgPerformance;
|
|
3378
|
-
readonly path: "/org/admin/performance";
|
|
3379
|
-
readonly children: [{
|
|
3380
|
-
readonly key: RouteKey.orgDatasetPerformance;
|
|
3381
|
-
readonly path: "/org/admin/performance/cube";
|
|
3382
|
-
}, {
|
|
3383
|
-
readonly key: RouteKey.orgDashboardPerformance;
|
|
3384
|
-
readonly path: "/org/admin/performance/dashboard";
|
|
3385
|
-
}];
|
|
3386
|
-
}, {
|
|
3387
|
-
readonly key: RouteKey.orgAdminAnalysis;
|
|
3388
|
-
readonly path: "/org/admin/analysis";
|
|
3389
|
-
}, {
|
|
3390
|
-
readonly key: RouteKey.orgAdminResource;
|
|
3391
|
-
readonly path: "/org/admin/resource";
|
|
3392
|
-
readonly children: [{
|
|
3393
|
-
readonly key: RouteKey.orgAdminResourceConfig;
|
|
3394
|
-
readonly path: "/org/admin/resource/config";
|
|
3395
|
-
}, {
|
|
3396
|
-
readonly key: RouteKey.orgAdminResourceRecord;
|
|
3397
|
-
readonly path: "/org/admin/resource/record";
|
|
3398
|
-
}, {
|
|
3399
|
-
readonly key: RouteKey.orgAdminResourceDesc;
|
|
3400
|
-
readonly path: "/org/admin/resource/desc";
|
|
3401
|
-
}];
|
|
3402
|
-
}, {
|
|
3403
|
-
readonly key: RouteKey.orgAdminBiAgent;
|
|
3404
|
-
readonly path: "/org/admin/biAgents";
|
|
3405
|
-
readonly children: [{
|
|
3406
|
-
readonly key: RouteKey.orgAdminBiManage;
|
|
3407
|
-
readonly path: "/org/admin/biAgents/userManage";
|
|
3408
|
-
}, {
|
|
3409
|
-
readonly key: RouteKey.orgAdminBiManageDetail;
|
|
3410
|
-
readonly path: "/org/admin/biAgents/userManage/userDetail/:userId";
|
|
3411
|
-
}];
|
|
3412
|
-
}];
|
|
3413
|
-
}, {
|
|
3414
|
-
readonly key: RouteKey.downloadTask;
|
|
3415
|
-
readonly path: "/offlineDownload";
|
|
3416
|
-
}, {
|
|
3417
|
-
readonly key: RouteKey.approvalCenter;
|
|
3418
|
-
readonly path: "/message/center";
|
|
3419
|
-
readonly children: [{
|
|
3420
|
-
readonly key: RouteKey.messageCenterApproval;
|
|
3421
|
-
readonly path: "/message/center/approval";
|
|
3422
|
-
}, {
|
|
3423
|
-
readonly key: RouteKey.messageCenterApply;
|
|
3424
|
-
readonly path: "/message/center/apply";
|
|
3425
|
-
}];
|
|
3426
|
-
}, {
|
|
3427
|
-
readonly key: RouteKey.monitor;
|
|
3428
|
-
readonly path: "/monitor";
|
|
3429
|
-
readonly children: [{
|
|
3430
|
-
readonly key: RouteKey.monitorManage;
|
|
3431
|
-
readonly path: "/monitor/manage";
|
|
3432
|
-
}, {
|
|
3433
|
-
readonly key: RouteKey.monitorDetail;
|
|
3434
|
-
readonly path: "/monitor/detail.htm";
|
|
3435
|
-
}, {
|
|
3436
|
-
readonly key: RouteKey.monitorDesc;
|
|
3437
|
-
readonly path: "/monitor/desc";
|
|
3438
|
-
}];
|
|
3439
|
-
}, {
|
|
3440
|
-
readonly key: RouteKey.openRoot;
|
|
3441
|
-
readonly path: "/openservice";
|
|
3442
|
-
readonly children: [{
|
|
3443
|
-
readonly key: RouteKey.openHome;
|
|
3444
|
-
readonly path: "/openservice/homePage";
|
|
3445
|
-
}, {
|
|
3446
|
-
readonly key: RouteKey.openNoPermission;
|
|
3447
|
-
readonly path: "/openservice/permission-denied";
|
|
3448
|
-
}, {
|
|
3449
|
-
readonly key: RouteKey.loginConfig;
|
|
3450
|
-
readonly path: "/openservice/loginConfig";
|
|
3451
|
-
}, {
|
|
3452
|
-
readonly key: RouteKey.openApi;
|
|
3453
|
-
readonly path: "/openservice/apis";
|
|
3454
|
-
readonly children: [{
|
|
3455
|
-
readonly key: RouteKey.openApiSearch;
|
|
3456
|
-
readonly path: "/openservice/apis/search";
|
|
3457
|
-
}];
|
|
3458
|
-
}, {
|
|
3459
|
-
readonly key: RouteKey.embedAnalyse;
|
|
3460
|
-
readonly path: "/openservice/embedAnalyse";
|
|
3461
|
-
}, {
|
|
3462
|
-
readonly key: RouteKey.dataService;
|
|
3463
|
-
readonly path: "/openservice/dataServices";
|
|
3464
|
-
readonly children: [{
|
|
3465
|
-
readonly key: RouteKey.dataServiceApi;
|
|
3466
|
-
readonly path: "/openservice/dataServices/api";
|
|
3467
|
-
}, {
|
|
3468
|
-
readonly key: RouteKey.dataServiceDebug;
|
|
3469
|
-
readonly path: "/openservice/dataServices/debug";
|
|
3470
|
-
}, {
|
|
3471
|
-
readonly key: RouteKey.dataServiceCount;
|
|
3472
|
-
readonly path: "/openservice/dataServices/count";
|
|
3473
|
-
}];
|
|
3474
|
-
}, {
|
|
3475
|
-
readonly key: RouteKey.embedChannel;
|
|
3476
|
-
readonly path: "/openservice/embedChannel";
|
|
3477
|
-
}, {
|
|
3478
|
-
readonly key: RouteKey.customComponent;
|
|
3479
|
-
readonly path: "/openservice/componentManage";
|
|
3480
|
-
}, {
|
|
3481
|
-
readonly key: RouteKey.customMenu;
|
|
3482
|
-
readonly path: "/openservice/componentMenu";
|
|
3483
|
-
}, {
|
|
3484
|
-
readonly key: RouteKey.customTemplate;
|
|
3485
|
-
readonly path: "/openservice/defineTemplate";
|
|
3486
|
-
}, {
|
|
3487
|
-
readonly key: RouteKey.customConnect;
|
|
3488
|
-
readonly path: "/openservice/defineConnect";
|
|
3489
|
-
}, {
|
|
3490
|
-
readonly key: RouteKey.customPlugin;
|
|
3491
|
-
readonly path: "/openservice/customPlugin";
|
|
3492
|
-
}, {
|
|
3493
|
-
readonly key: RouteKey.monitorEvent;
|
|
3494
|
-
readonly path: "/openservice/event";
|
|
3495
|
-
}, {
|
|
3496
|
-
readonly key: RouteKey.customEvent;
|
|
3497
|
-
readonly path: "/openservice/customEvent";
|
|
3498
|
-
}, {
|
|
3499
|
-
readonly key: RouteKey.embedStatistic;
|
|
3500
|
-
readonly path: "/openservice/embedStatistic";
|
|
3501
|
-
}, {
|
|
3502
|
-
readonly key: RouteKey.apiStatistic;
|
|
3503
|
-
readonly path: "/openservice/apiStatistic";
|
|
3504
|
-
readonly children: [{
|
|
3505
|
-
readonly key: RouteKey.apiStatisticCount;
|
|
3506
|
-
readonly path: "/openservice/apiStatistic/count";
|
|
3507
|
-
}];
|
|
3508
|
-
}];
|
|
3509
|
-
}, {
|
|
3510
|
-
readonly key: RouteKey.standardUser;
|
|
3511
|
-
readonly path: "/instance/standand/user";
|
|
3512
|
-
}, {
|
|
3513
|
-
readonly key: RouteKey.subscriptionManage;
|
|
3514
|
-
readonly path: "/subscribe";
|
|
3515
|
-
readonly children: [{
|
|
3516
|
-
readonly key: RouteKey.subscriptionTask;
|
|
3517
|
-
readonly path: "/subscribe/task";
|
|
3518
|
-
}, {
|
|
3519
|
-
readonly key: RouteKey.sendRecord;
|
|
3520
|
-
readonly path: "/subscribe/record";
|
|
3521
|
-
}];
|
|
3522
|
-
}, {
|
|
3523
|
-
readonly key: RouteKey.templateRoot;
|
|
3524
|
-
readonly path: "/templateMarket";
|
|
3525
|
-
}, {
|
|
3526
|
-
readonly key: RouteKey.view;
|
|
3527
|
-
readonly path: "/view";
|
|
3528
|
-
readonly children: [{
|
|
3529
|
-
readonly key: RouteKey.viewHome;
|
|
3530
|
-
readonly path: "/view/index";
|
|
3531
|
-
}, {
|
|
3532
|
-
readonly key: RouteKey.viewBoard;
|
|
3533
|
-
readonly path: "/view/card";
|
|
3534
|
-
}, {
|
|
3535
|
-
readonly key: RouteKey.viewFavorite;
|
|
3536
|
-
readonly path: "/view/favorite";
|
|
3537
|
-
}, {
|
|
3538
|
-
readonly key: RouteKey.viewRecent;
|
|
3539
|
-
readonly path: "/view/recent";
|
|
3540
|
-
}, {
|
|
3541
|
-
readonly key: RouteKey.viewShared;
|
|
3542
|
-
readonly path: "/view/shared";
|
|
3543
|
-
}, {
|
|
3544
|
-
readonly key: RouteKey.viewCommonly;
|
|
3545
|
-
readonly path: "/view/commonly";
|
|
3546
|
-
}, {
|
|
3547
|
-
readonly key: RouteKey.viewMonitor;
|
|
3548
|
-
readonly path: "/view/monitor";
|
|
3549
|
-
}, {
|
|
3550
|
-
readonly key: RouteKey.viewSearch;
|
|
3551
|
-
readonly path: "/view/search";
|
|
3552
|
-
}, {
|
|
3553
|
-
readonly key: RouteKey.viewSharedContentOnly;
|
|
3554
|
-
readonly path: "/view/shared/contentOnly";
|
|
3555
|
-
}];
|
|
3556
|
-
}, {
|
|
3557
|
-
readonly key: RouteKey.viewPortal;
|
|
3558
|
-
readonly path: "/view/portal";
|
|
3559
|
-
/** 业务类目 */
|
|
3560
|
-
readonly children: [{
|
|
3561
|
-
readonly key: RouteKey.viewCategory;
|
|
3562
|
-
readonly path: "/view/category";
|
|
3563
|
-
}];
|
|
3564
|
-
}, {
|
|
3565
|
-
readonly key: RouteKey.workPlatform;
|
|
3566
|
-
readonly path: "/workplatform";
|
|
3567
|
-
}, {
|
|
3568
|
-
readonly key: RouteKey.workspace;
|
|
3569
|
-
readonly path: "/workspace";
|
|
3570
|
-
readonly children: [{
|
|
3571
|
-
readonly key: RouteKey.portalList;
|
|
3572
|
-
readonly path: "/workspace/product";
|
|
3573
|
-
}, {
|
|
3574
|
-
readonly key: RouteKey.dashboardList;
|
|
3575
|
-
readonly path: "/workspace/dashboard";
|
|
3576
|
-
}, {
|
|
3577
|
-
readonly key: RouteKey.workbookList;
|
|
3578
|
-
readonly path: "/workspace/report";
|
|
3579
|
-
}, {
|
|
3580
|
-
readonly key: RouteKey.workbookListTrialList;
|
|
3581
|
-
readonly path: "/workspace/trialReport";
|
|
3582
|
-
}, {
|
|
3583
|
-
readonly key: RouteKey.screenList;
|
|
3584
|
-
readonly path: "/workspace/screen";
|
|
3585
|
-
}, {
|
|
3586
|
-
readonly key: RouteKey.analysisList;
|
|
3587
|
-
readonly path: "/workspace/analysis";
|
|
3588
|
-
}, {
|
|
3589
|
-
readonly key: RouteKey.downloadList;
|
|
3590
|
-
readonly path: "/workspace/download";
|
|
3591
|
-
}, {
|
|
3592
|
-
readonly key: RouteKey.formList;
|
|
3593
|
-
readonly path: "/workspace/dataForm";
|
|
3594
|
-
}, {
|
|
3595
|
-
readonly key: RouteKey.etlList;
|
|
3596
|
-
readonly path: "/workspace/etl";
|
|
3597
|
-
}, {
|
|
3598
|
-
readonly key: RouteKey.datasetList;
|
|
3599
|
-
readonly path: "/workspace/schema";
|
|
3600
|
-
}, {
|
|
3601
|
-
readonly key: RouteKey.datasourceList;
|
|
3602
|
-
readonly path: "/workspace/datasource";
|
|
3603
|
-
}, {
|
|
3604
|
-
readonly key: RouteKey.workspaceInfo;
|
|
3605
|
-
readonly path: "/workspace/spaceInfo";
|
|
3606
|
-
}, {
|
|
3607
|
-
readonly key: RouteKey.workspaceUser;
|
|
3608
|
-
readonly path: "/workspace/spaceUser";
|
|
3609
|
-
}, {
|
|
3610
|
-
readonly key: RouteKey.workspaceCode;
|
|
3611
|
-
readonly path: "/workspace/spaceCode";
|
|
3612
|
-
}, {
|
|
3613
|
-
readonly key: RouteKey.resourceAuth;
|
|
3614
|
-
readonly path: "/workspace/auth";
|
|
3615
|
-
}, {
|
|
3616
|
-
readonly key: RouteKey.accessAnalysis;
|
|
3617
|
-
readonly path: "/workspace/resourceanalysis";
|
|
3618
|
-
}, {
|
|
3619
|
-
readonly key: RouteKey.auditLog;
|
|
3620
|
-
readonly path: "/workspace/auditLog";
|
|
3621
|
-
}, {
|
|
3622
|
-
readonly key: RouteKey.performanceAnalysis;
|
|
3623
|
-
readonly path: "/workspace/performance";
|
|
3624
|
-
readonly children: [{
|
|
3625
|
-
readonly key: RouteKey.performanceAnalysisDataset;
|
|
3626
|
-
readonly path: "/workspace/performance/cube";
|
|
3627
|
-
}, {
|
|
3628
|
-
readonly key: RouteKey.performanceAnalysisDashboard;
|
|
3629
|
-
readonly path: "/workspace/performance/dashboard";
|
|
3630
|
-
}];
|
|
3631
|
-
}, {
|
|
3632
|
-
readonly key: RouteKey.quickEngine;
|
|
3633
|
-
readonly path: "/workspace/quickEngine";
|
|
3634
|
-
}, {
|
|
3635
|
-
readonly key: RouteKey.resourceLineage;
|
|
3636
|
-
readonly path: "/workspace/lineage";
|
|
3637
|
-
}, {
|
|
3638
|
-
readonly key: RouteKey.workspaceRecycle;
|
|
3639
|
-
readonly path: "/workspace/recycle";
|
|
3640
|
-
}, {
|
|
3641
|
-
readonly key: RouteKey.advanceVersion;
|
|
3642
|
-
readonly path: "/workspace/version";
|
|
3643
|
-
}, {
|
|
3644
|
-
readonly key: RouteKey.workspacePreview;
|
|
3645
|
-
readonly path: "/workspace/preview";
|
|
3646
|
-
}];
|
|
3647
|
-
}, {
|
|
3648
|
-
readonly key: RouteKey.copilotHome;
|
|
3649
|
-
readonly path: "/copilotPage";
|
|
3650
|
-
}, {
|
|
3651
|
-
readonly key: RouteKey.embedModule;
|
|
3652
|
-
readonly path: "/embed/module";
|
|
3653
|
-
}];
|
|
3654
|
-
}, {
|
|
3655
|
-
readonly key: RouteKey.copilotRoot;
|
|
3656
|
-
readonly path: "/copilot";
|
|
3657
|
-
readonly children: [{
|
|
3658
|
-
readonly key: RouteKey.copilotView;
|
|
3659
|
-
readonly path: "/copilot";
|
|
3660
|
-
}, {
|
|
3661
|
-
readonly key: RouteKey.copilotPublicView;
|
|
3662
|
-
readonly path: "/token3rd/copilot";
|
|
3663
|
-
}];
|
|
3664
|
-
}, {
|
|
3665
|
-
readonly key: RouteKey.portalRoot;
|
|
3666
|
-
readonly path: "/product";
|
|
3667
|
-
readonly children: [{
|
|
3668
|
-
readonly key: RouteKey.portalEdit;
|
|
3669
|
-
readonly path: "/productedit.htm";
|
|
3670
|
-
}, {
|
|
3671
|
-
readonly key: RouteKey.portalView;
|
|
3672
|
-
readonly path: "/product/view.htm";
|
|
3673
|
-
}, {
|
|
3674
|
-
readonly key: RouteKey.portalId;
|
|
3675
|
-
readonly path: "/product/:productId";
|
|
3676
|
-
}, {
|
|
3677
|
-
readonly key: RouteKey.portalPublicView;
|
|
3678
|
-
readonly path: "/token3rd/product/view.htm";
|
|
3679
|
-
}];
|
|
3680
|
-
}, {
|
|
3681
|
-
readonly key: RouteKey.formRoot;
|
|
3682
|
-
readonly path: "/form-system";
|
|
3683
|
-
readonly children: [{
|
|
3684
|
-
readonly key: RouteKey.formCreate;
|
|
3685
|
-
readonly path: "/form-system/editor/create";
|
|
3686
|
-
}, {
|
|
3687
|
-
readonly key: RouteKey.formEdit;
|
|
3688
|
-
readonly path: "/form-system/editor/edit/:id";
|
|
3689
|
-
}, {
|
|
3690
|
-
readonly key: RouteKey.formManage;
|
|
3691
|
-
readonly path: "/form-system/publish/manage/:id";
|
|
3692
|
-
}, {
|
|
3693
|
-
readonly key: RouteKey.formView;
|
|
3694
|
-
readonly path: "/form-system/publish/preview/:id";
|
|
3695
|
-
}, {
|
|
3696
|
-
readonly key: RouteKey.formRecord;
|
|
3697
|
-
readonly path: "/form-system/publish/preview/:formId/:rowId";
|
|
3698
|
-
}, {
|
|
3699
|
-
readonly key: RouteKey.formPublicView;
|
|
3700
|
-
readonly path: "/token3rd/dataform/view.htm";
|
|
3701
|
-
}];
|
|
3702
|
-
}, {
|
|
3703
|
-
readonly key: RouteKey.dashboardRoot;
|
|
3704
|
-
readonly path: "/dashboard";
|
|
3705
|
-
readonly children: [{
|
|
3706
|
-
readonly key: RouteKey.dashboardView;
|
|
3707
|
-
readonly path: "/dashboard/view/pc.htm";
|
|
3708
|
-
}, {
|
|
3709
|
-
readonly key: RouteKey.dashboardPublicView;
|
|
3710
|
-
readonly path: "/token3rd/dashboard/view/pc.htm";
|
|
3711
|
-
}, {
|
|
3712
|
-
readonly key: RouteKey.dashboardEdit;
|
|
3713
|
-
readonly path: "/dashboard/pc.htm";
|
|
3714
|
-
}, {
|
|
3715
|
-
readonly key: RouteKey.dashboardPublicEdit;
|
|
3716
|
-
readonly path: "/token3rd/dashboard/pc.htm";
|
|
3717
|
-
}, {
|
|
3718
|
-
readonly key: RouteKey.dashboardMobileView1;
|
|
3719
|
-
readonly path: "/dashboard/mobile.htm";
|
|
3720
|
-
}, {
|
|
3721
|
-
readonly key: RouteKey.dashboardMobileView2;
|
|
3722
|
-
readonly path: "/dashboard/view/mobile.htm";
|
|
3723
|
-
}, {
|
|
3724
|
-
readonly key: RouteKey.dashboardMobileView3;
|
|
3725
|
-
readonly path: "/mobile/dashboard";
|
|
3726
|
-
}];
|
|
3727
|
-
}, {
|
|
3728
|
-
readonly key: RouteKey.workbookRoot;
|
|
3729
|
-
readonly path: "/report";
|
|
3730
|
-
readonly children: [{
|
|
3731
|
-
readonly key: RouteKey.workbookView;
|
|
3732
|
-
readonly path: "/report/view.htm";
|
|
3733
|
-
}, {
|
|
3734
|
-
readonly key: RouteKey.workbookPublicView;
|
|
3735
|
-
readonly path: "/token3rd/report/view.htm";
|
|
3736
|
-
}, {
|
|
3737
|
-
readonly key: RouteKey.workbookFormTask;
|
|
3738
|
-
readonly path: "/report/formTask.htm";
|
|
3739
|
-
}, {
|
|
3740
|
-
readonly key: RouteKey.workbookEdit;
|
|
3741
|
-
readonly path: "/report/index.htm";
|
|
3742
|
-
}];
|
|
3743
|
-
}, {
|
|
3744
|
-
readonly key: RouteKey.etlRoot;
|
|
3745
|
-
readonly path: "/etl";
|
|
3746
|
-
readonly children: [{
|
|
3747
|
-
readonly key: RouteKey.etlEdit;
|
|
3748
|
-
readonly path: "/etl/edit.htm";
|
|
3749
|
-
}, {
|
|
3750
|
-
readonly key: RouteKey.etlLog;
|
|
3751
|
-
readonly path: "/etllog/index.htm";
|
|
3752
|
-
}];
|
|
3753
|
-
}, {
|
|
3754
|
-
readonly key: RouteKey.datasetRoot;
|
|
3755
|
-
readonly path: "/cube";
|
|
3756
|
-
readonly children: [{
|
|
3757
|
-
readonly key: RouteKey.datasetEdit;
|
|
3758
|
-
readonly path: "/cube.htm";
|
|
3759
|
-
}];
|
|
3760
|
-
}, {
|
|
3761
|
-
readonly key: RouteKey.downloadRoot;
|
|
3762
|
-
readonly path: "/offline";
|
|
3763
|
-
readonly children: [{
|
|
3764
|
-
readonly key: RouteKey.downloadEdit;
|
|
3765
|
-
readonly path: "/offline/pc.htm";
|
|
3766
|
-
}, {
|
|
3767
|
-
readonly key: RouteKey.downloadView;
|
|
3768
|
-
readonly path: "/offline/view/pc.htm";
|
|
3769
|
-
}, {
|
|
3770
|
-
readonly key: RouteKey.downloadPublicView;
|
|
3771
|
-
readonly path: "/token3rd/offline/view/pc.htm";
|
|
3772
|
-
}];
|
|
3773
|
-
}, {
|
|
3774
|
-
readonly key: RouteKey.analysisRoot;
|
|
3775
|
-
readonly path: "/analysis";
|
|
3776
|
-
readonly children: [{
|
|
3777
|
-
readonly key: RouteKey.analysisEdit;
|
|
3778
|
-
readonly path: "/analysis/edit.htm";
|
|
3779
|
-
}, {
|
|
3780
|
-
readonly key: RouteKey.analysisView;
|
|
3781
|
-
readonly path: "/analysis/view.htm";
|
|
3782
|
-
}, {
|
|
3783
|
-
readonly key: RouteKey.analysisPublicView;
|
|
3784
|
-
readonly path: "/token3rd/analysis/view.htm";
|
|
3785
|
-
}];
|
|
3786
|
-
}, {
|
|
3787
|
-
readonly key: RouteKey.screenRoot;
|
|
3788
|
-
readonly path: "/screen";
|
|
3789
|
-
readonly children: [{
|
|
3790
|
-
readonly key: RouteKey.screenEdit;
|
|
3791
|
-
readonly path: "/screen/index.htm";
|
|
3792
|
-
}, {
|
|
3793
|
-
readonly key: RouteKey.screenView;
|
|
3794
|
-
readonly path: "/screen/view.htm";
|
|
3795
|
-
}, {
|
|
3796
|
-
readonly key: RouteKey.screenPublicView;
|
|
3797
|
-
readonly path: "/token3rd/screen/view/pc.htm";
|
|
3798
|
-
}];
|
|
3799
|
-
}, {
|
|
3800
|
-
readonly key: RouteKey.consoleRoot;
|
|
3801
|
-
readonly path: "/console";
|
|
3802
|
-
readonly children: [{
|
|
3803
|
-
readonly key: RouteKey.console;
|
|
3804
|
-
readonly path: "/console.htm";
|
|
3805
|
-
}, {
|
|
3806
|
-
readonly key: RouteKey.version;
|
|
3807
|
-
readonly path: "/version.htm";
|
|
3808
|
-
}, {
|
|
3809
|
-
readonly key: RouteKey.consoleLy;
|
|
3810
|
-
readonly path: "/console-ly.htm";
|
|
3811
|
-
}, {
|
|
3812
|
-
readonly key: RouteKey.consoleEntry;
|
|
3813
|
-
readonly path: "/console-entry.htm";
|
|
3814
|
-
}];
|
|
3815
|
-
}, {
|
|
3816
|
-
readonly key: RouteKey.opsRoot;
|
|
3817
|
-
readonly path: "/ops";
|
|
3818
|
-
readonly children: [{
|
|
3819
|
-
readonly key: RouteKey.opsCenter;
|
|
3820
|
-
readonly path: "/opscenter";
|
|
3821
|
-
}, {
|
|
3822
|
-
readonly key: RouteKey.opsSuper;
|
|
3823
|
-
readonly path: "/opscenter/super";
|
|
3824
|
-
}, {
|
|
3825
|
-
readonly key: RouteKey.opsManager;
|
|
3826
|
-
readonly path: "/opscenter/manager";
|
|
3827
|
-
}, {
|
|
3828
|
-
readonly key: RouteKey.opsNotice;
|
|
3829
|
-
readonly path: "/opscenter/notice";
|
|
3830
|
-
}, {
|
|
3831
|
-
readonly key: RouteKey.opsLicense;
|
|
3832
|
-
readonly path: "/opscenter/license";
|
|
3833
|
-
}, {
|
|
3834
|
-
readonly key: RouteKey.opsTenantManage;
|
|
3835
|
-
readonly path: "/opscenter/tenantManage";
|
|
3836
|
-
}, {
|
|
3837
|
-
readonly key: RouteKey.opsApply;
|
|
3838
|
-
readonly path: "/opscenter/apply";
|
|
3839
|
-
}, {
|
|
3840
|
-
readonly key: RouteKey.opsLoginConfig;
|
|
3841
|
-
readonly path: "/opscenter/loginConfig";
|
|
3842
|
-
}, {
|
|
3843
|
-
readonly key: RouteKey.opsLoginSystemConfig;
|
|
3844
|
-
readonly path: "/opscenter/loginSystemConfig";
|
|
3845
|
-
}, {
|
|
3846
|
-
readonly key: RouteKey.opsSystemConfig;
|
|
3847
|
-
readonly path: "/opscenter/sysconfig";
|
|
3848
|
-
}, {
|
|
3849
|
-
readonly key: RouteKey.docsManageMenus;
|
|
3850
|
-
readonly path: "/opscenter/docsmanage/menus";
|
|
3851
|
-
}, {
|
|
3852
|
-
readonly key: RouteKey.docsManageItems;
|
|
3853
|
-
readonly path: "/opscenter/docsmanage/items";
|
|
3854
|
-
}];
|
|
3855
|
-
}, {
|
|
3856
|
-
/** 移动端微应用 */
|
|
3857
|
-
readonly key: RouteKey.mobileRoot;
|
|
3858
|
-
readonly path: "/";
|
|
3859
|
-
readonly children: [{
|
|
3860
|
-
readonly key: RouteKey.mobileHome;
|
|
3861
|
-
readonly path: "/home";
|
|
3862
|
-
}, {
|
|
3863
|
-
readonly key: RouteKey.mobileCommon;
|
|
3864
|
-
readonly path: "/common";
|
|
3865
|
-
}, {
|
|
3866
|
-
readonly key: RouteKey.mobileMine;
|
|
3867
|
-
readonly path: "/mine";
|
|
3868
|
-
}, {
|
|
3869
|
-
readonly key: RouteKey.mobileCard;
|
|
3870
|
-
readonly path: "/card";
|
|
3871
|
-
}, {
|
|
3872
|
-
readonly key: RouteKey.mobileCopilot;
|
|
3873
|
-
readonly path: "/copilot";
|
|
3874
|
-
}, {
|
|
3875
|
-
readonly key: RouteKey.mobileData;
|
|
3876
|
-
readonly path: "/data";
|
|
3877
|
-
}, {
|
|
3878
|
-
readonly key: RouteKey.mobilePermission;
|
|
3879
|
-
readonly path: "/permission";
|
|
3880
|
-
}, {
|
|
3881
|
-
readonly key: RouteKey.mobileMyPermission;
|
|
3882
|
-
readonly path: "/myPermission";
|
|
3883
|
-
}, {
|
|
3884
|
-
readonly key: RouteKey.mobileMonitorCenter;
|
|
3885
|
-
readonly path: "/monitor/center";
|
|
3886
|
-
}, {
|
|
3887
|
-
readonly key: RouteKey.mobileMonitorDetail;
|
|
3888
|
-
readonly path: "/monitor/detail.htm";
|
|
3889
|
-
}, {
|
|
3890
|
-
readonly key: RouteKey.mobileSearch;
|
|
3891
|
-
readonly path: "/search";
|
|
3892
|
-
}, {
|
|
3893
|
-
readonly key: RouteKey.mobileDashboard;
|
|
3894
|
-
readonly path: "/dashboard";
|
|
3895
|
-
}, {
|
|
3896
|
-
readonly key: RouteKey.mobileIntro;
|
|
3897
|
-
readonly path: "/intro";
|
|
3898
|
-
}, {
|
|
3899
|
-
readonly key: RouteKey.mobileNotSupport;
|
|
3900
|
-
readonly path: "/notSupport";
|
|
3901
|
-
}, {
|
|
3902
|
-
readonly key: RouteKey.mobileDataForm;
|
|
3903
|
-
readonly path: "/dataForm";
|
|
3904
|
-
}, {
|
|
3905
|
-
readonly key: RouteKey.mobileCustom1;
|
|
3906
|
-
readonly path: "/custom1";
|
|
3907
|
-
}, {
|
|
3908
|
-
readonly key: RouteKey.mobileCustom2;
|
|
3909
|
-
readonly path: "/custom2";
|
|
3910
|
-
}, {
|
|
3911
|
-
readonly key: RouteKey.mobileCustom3;
|
|
3912
|
-
readonly path: "/custom3";
|
|
3913
|
-
}, {
|
|
3914
|
-
readonly key: RouteKey.mobileCustom4;
|
|
3915
|
-
readonly path: "/custom4";
|
|
3916
|
-
}, {
|
|
3917
|
-
readonly key: RouteKey.mobileError;
|
|
3918
|
-
readonly path: "/error";
|
|
3919
|
-
}];
|
|
3920
|
-
}, {
|
|
3921
|
-
readonly key: RouteKey.openPlatRoot;
|
|
3922
|
-
readonly path: "/openplatform";
|
|
3923
|
-
readonly children: [{
|
|
3924
|
-
readonly key: RouteKey.openPlatHome;
|
|
3925
|
-
readonly path: "/openplatform/public/home";
|
|
3926
|
-
}, {
|
|
3927
|
-
readonly key: RouteKey.openPlatSolution;
|
|
3928
|
-
readonly path: "/openplatform/public/solutions";
|
|
3929
|
-
}, {
|
|
3930
|
-
readonly key: RouteKey.openPlatTemplate;
|
|
3931
|
-
readonly path: "/openplatform/public/template";
|
|
3932
|
-
}, {
|
|
3933
|
-
readonly key: RouteKey.openPlatTemplateDocs;
|
|
3934
|
-
readonly path: "/openplatform/public/template/docs";
|
|
3935
|
-
}, {
|
|
3936
|
-
readonly key: RouteKey.extendedVisualizationTemplate;
|
|
3937
|
-
readonly path: "/openplatform/public/extendedVisualization";
|
|
3938
|
-
}];
|
|
3939
|
-
}, {
|
|
3940
|
-
readonly key: RouteKey.template;
|
|
3941
|
-
readonly path: "/template";
|
|
3942
|
-
readonly children: [{
|
|
3943
|
-
readonly key: RouteKey.templateView;
|
|
3944
|
-
readonly path: "/template/view";
|
|
3945
|
-
}, {
|
|
3946
|
-
readonly key: RouteKey.templateSuper;
|
|
3947
|
-
readonly path: "/template/super";
|
|
3948
|
-
}, {
|
|
3949
|
-
readonly key: RouteKey.templateNlPublic;
|
|
3950
|
-
readonly path: "/template/nl/public";
|
|
3951
|
-
}, {
|
|
3952
|
-
readonly key: RouteKey.templateNlPreView;
|
|
3953
|
-
readonly path: "/template/nl/preview";
|
|
3954
|
-
}];
|
|
3955
|
-
}, {
|
|
3956
|
-
readonly key: RouteKey.cardRoot;
|
|
3957
|
-
readonly path: "/card";
|
|
3958
|
-
readonly children: [{
|
|
3959
|
-
readonly key: RouteKey.cardBoard;
|
|
3960
|
-
readonly path: "/card/board.htm";
|
|
3961
|
-
}, {
|
|
3962
|
-
readonly key: RouteKey.cardShot;
|
|
3963
|
-
readonly path: "/card/snapshot.htm";
|
|
3964
|
-
}];
|
|
3965
|
-
}, {
|
|
3966
|
-
readonly key: RouteKey.biAgent;
|
|
3967
|
-
readonly path: "/bi-agent";
|
|
3968
|
-
readonly children: [{
|
|
3969
|
-
readonly key: RouteKey.biAgentHome;
|
|
3970
|
-
readonly path: "/bi-agent/home";
|
|
3971
|
-
}, {
|
|
3972
|
-
readonly key: RouteKey.biAgentTracking;
|
|
3973
|
-
readonly path: "/bi-agent/tracking";
|
|
3974
|
-
}, {
|
|
3975
|
-
readonly key: RouteKey.biAgentSmartQ;
|
|
3976
|
-
readonly path: "/bi-agent/smartq";
|
|
3977
|
-
}, {
|
|
3978
|
-
readonly key: RouteKey.biAgentSettings;
|
|
3979
|
-
readonly path: "/bi-agent/settings";
|
|
3980
|
-
}, {
|
|
3981
|
-
readonly key: RouteKey.biAgentHomePostDetail;
|
|
3982
|
-
readonly path: "/bi-agent/home-post-detail";
|
|
3983
|
-
}, {
|
|
3984
|
-
readonly key: RouteKey.biAgentTrackingPostDetail;
|
|
3985
|
-
readonly path: "/bi-agent/tracking-post-detail";
|
|
3986
|
-
}];
|
|
3987
|
-
}, {
|
|
3988
|
-
readonly key: RouteKey.dashboardScreenRoot;
|
|
3989
|
-
readonly path: "/dashboard/screen";
|
|
3990
|
-
readonly children: [{
|
|
3991
|
-
readonly key: RouteKey.dashboardScreenEdit;
|
|
3992
|
-
readonly path: "/dashboard/screen.htm";
|
|
3993
|
-
}, {
|
|
3994
|
-
readonly key: RouteKey.dashboardScreenView;
|
|
3995
|
-
readonly path: "/dashboard/view/screenView.htm";
|
|
3996
|
-
}, {
|
|
3997
|
-
readonly key: RouteKey.dashboardScreenPublicView;
|
|
3998
|
-
readonly path: "/token3rd/dashboard/view/screenView.htm";
|
|
3999
|
-
}];
|
|
4000
|
-
}];
|
|
4001
|
-
};
|
|
3083
|
+
export const ROUTE_TREE: RouteTreeNode;
|
|
4002
3084
|
/** 将整颗路径树打平,根据key索引 */
|
|
4003
3085
|
export const ROUTE_PATH_MAP: Record<RouteKey, string>;
|
|
4004
3086
|
/** 移动端微应用很多path重复,构建一个移动端的路径索引,用于在hash路由下匹配 */
|
|
@@ -4233,11 +3315,7 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4233
3315
|
ranking = "ranking",
|
|
4234
3316
|
percentile = "percentile",
|
|
4235
3317
|
quickFilter = "quickFilter",
|
|
4236
|
-
accumulate = "accumulate"
|
|
4237
|
-
/** 差异计算 */
|
|
4238
|
-
difference = "difference",
|
|
4239
|
-
/** 移动计算 */
|
|
4240
|
-
moving = "moving"
|
|
3318
|
+
accumulate = "accumulate"
|
|
4241
3319
|
}
|
|
4242
3320
|
export type CalcOrder = 'asc' | 'desc';
|
|
4243
3321
|
/** 累计计算类型 */
|
|
@@ -4307,44 +3385,6 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4307
3385
|
/** 参数类型 */
|
|
4308
3386
|
key: string;
|
|
4309
3387
|
}
|
|
4310
|
-
export interface DifferenceParams {
|
|
4311
|
-
/** 指定维度 */
|
|
4312
|
-
referenceDimension?: string;
|
|
4313
|
-
/** 自定义弹窗中的按行或按列 按行、按行组内 -> v 按列、按列组内 -> h) */
|
|
4314
|
-
direction?: TableDirection;
|
|
4315
|
-
/** 自定义弹窗中时计算类型 */
|
|
4316
|
-
calcType?: string;
|
|
4317
|
-
/** 参数类型 */
|
|
4318
|
-
key: string;
|
|
4319
|
-
/** 相对于 */
|
|
4320
|
-
offsetDirection: string;
|
|
4321
|
-
/** N数目 */
|
|
4322
|
-
offset: number;
|
|
4323
|
-
/** 数据设置 */
|
|
4324
|
-
contrastValueType: string;
|
|
4325
|
-
/** 对比数据为负数时 */
|
|
4326
|
-
ratioCalcType: string;
|
|
4327
|
-
}
|
|
4328
|
-
export interface MovingCalculationParams {
|
|
4329
|
-
/** 指定维度 */
|
|
4330
|
-
referenceDimension?: string;
|
|
4331
|
-
/** 自定义弹窗中的按行或按列 按行、按行组内 -> v 按列、按列组内 -> h) */
|
|
4332
|
-
direction?: TableDirection;
|
|
4333
|
-
/** 自定义弹窗中时计算类型 */
|
|
4334
|
-
calcType?: string;
|
|
4335
|
-
/** 参数类型 */
|
|
4336
|
-
key: string;
|
|
4337
|
-
/** 计算方式 */
|
|
4338
|
-
movingCalcFunction: string;
|
|
4339
|
-
/** 计算范围 左 */
|
|
4340
|
-
prevDirection: string;
|
|
4341
|
-
/** 计算范围 左 N数目 */
|
|
4342
|
-
movingPrevRef: number;
|
|
4343
|
-
/** 计算范围 右 */
|
|
4344
|
-
nextDirection: string;
|
|
4345
|
-
/** 计算范围 右 N数目 */
|
|
4346
|
-
movingNextRef: number;
|
|
4347
|
-
}
|
|
4348
3388
|
export interface TableCalculateParam {
|
|
4349
3389
|
direction: TableDirection;
|
|
4350
3390
|
/** 是否为组内 */
|
|
@@ -4365,24 +3405,6 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4365
3405
|
rankingType?: string;
|
|
4366
3406
|
/** 累计计算类型 */
|
|
4367
3407
|
accumulateCalcFunction?: AccumulateCalcType;
|
|
4368
|
-
/** 相对于 */
|
|
4369
|
-
offsetDirection?: string;
|
|
4370
|
-
/** 对比数据为负数 */
|
|
4371
|
-
ratioCalcType?: string;
|
|
4372
|
-
/** 数据设置 */
|
|
4373
|
-
contrastValueType?: string;
|
|
4374
|
-
/** 偏移量:N数目 */
|
|
4375
|
-
offset?: number;
|
|
4376
|
-
/** 计算方式 */
|
|
4377
|
-
movingCalcFunction?: string;
|
|
4378
|
-
/** 计算范围 左 N数目 */
|
|
4379
|
-
movingPrevRef?: number;
|
|
4380
|
-
/** 计算范围 右 N数目 */
|
|
4381
|
-
movingNextRef?: number;
|
|
4382
|
-
/** 计算范围 左 */
|
|
4383
|
-
prevDirection?: string;
|
|
4384
|
-
/** 计算范围 右 N数目 */
|
|
4385
|
-
nextDirection?: string;
|
|
4386
3408
|
}
|
|
4387
3409
|
/** 同环比参数 */
|
|
4388
3410
|
export interface CompareParams {
|
|
@@ -4415,13 +3437,6 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4415
3437
|
condition = "condition",
|
|
4416
3438
|
conditionParam = "conditionParam"
|
|
4417
3439
|
}
|
|
4418
|
-
/** 数值筛选条件下数值类型枚举 */
|
|
4419
|
-
export enum NumberValueType {
|
|
4420
|
-
/** 常规类型 */
|
|
4421
|
-
conventional = "conventional",
|
|
4422
|
-
/** 百分比类型 */
|
|
4423
|
-
percentage = "percentage"
|
|
4424
|
-
}
|
|
4425
3440
|
export interface CommonCompInputComplexFilterItem {
|
|
4426
3441
|
values?: any[];
|
|
4427
3442
|
attributeId?: any;
|
|
@@ -4452,8 +3467,6 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4452
3467
|
aggregate: string;
|
|
4453
3468
|
}[];
|
|
4454
3469
|
itemType?: CommonFieldType;
|
|
4455
|
-
/** 数值筛选条件下数值的类型 */
|
|
4456
|
-
numberValueType?: NumberValueType;
|
|
4457
3470
|
}
|
|
4458
3471
|
/** 字段详细信息
|
|
4459
3472
|
*/
|
|
@@ -4546,10 +3559,6 @@ declare module '@quickbi/bi-types/data-panel/data-config' {
|
|
|
4546
3559
|
countParams?: CountParams;
|
|
4547
3560
|
/** 百分位参数 */
|
|
4548
3561
|
percentileParams?: PercentileParams;
|
|
4549
|
-
/** 差异参数 */
|
|
4550
|
-
differenceParams?: DifferenceParams;
|
|
4551
|
-
/** 移动计算参数 */
|
|
4552
|
-
movingCalculationParams?: MovingCalculationParams;
|
|
4553
3562
|
/** 存在表示维度 */
|
|
4554
3563
|
levels?: any[];
|
|
4555
3564
|
/** 下钻辅助字段,目前仅交叉表、明细表的drill会存在 */
|
|
@@ -4730,11 +3739,7 @@ declare module '@quickbi/bi-types/data-panel/data-schema-item' {
|
|
|
4730
3739
|
/** 时间补齐 */
|
|
4731
3740
|
timeCompletion = "timeCompletion",
|
|
4732
3741
|
/** 组合计算 */
|
|
4733
|
-
combinatorialCalculation = "combinatorialCalculation"
|
|
4734
|
-
/** 差异 */
|
|
4735
|
-
difference = "difference",
|
|
4736
|
-
/** 移动计算 */
|
|
4737
|
-
movingCalculation = "movingCalculation"
|
|
3742
|
+
combinatorialCalculation = "combinatorialCalculation"
|
|
4738
3743
|
}
|
|
4739
3744
|
export enum AdvanceCalcDateTypes {
|
|
4740
3745
|
day = "day",
|
|
@@ -6303,8 +5308,7 @@ declare module '@quickbi/bi-types/cube/data-source' {
|
|
|
6303
5308
|
greenplum_v6 = "greenplum_v6",
|
|
6304
5309
|
aurora_mysql = "aurora_mysql",
|
|
6305
5310
|
aurora_postgresql = "aurora_postgresql",
|
|
6306
|
-
aloudata_can = "aloudata_can"
|
|
6307
|
-
oscar = "oscar"
|
|
5311
|
+
aloudata_can = "aloudata_can"
|
|
6308
5312
|
}
|
|
6309
5313
|
export enum AcrossDsType {
|
|
6310
5314
|
UN_SET,
|