super-page-runtime 2.2.29-tmp2 → 2.2.32
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/dist/es/_virtual/_plugin-vue_export-helper.js +5 -7
- package/dist/es/assets/chart-themes/theme1.js +2 -6
- package/dist/es/assets/chart-themes/theme2.js +2 -6
- package/dist/es/assets/chart-themes/theme3.js +2 -6
- package/dist/es/components/runtime/utils/api/api-util.js +4 -7
- package/dist/es/components/runtime/utils/api/page-expose-util.js +135 -443
- package/dist/es/components/runtime/utils/assemblys-config.js +13 -369
- package/dist/es/components/runtime/utils/barcode-util.js +9 -33
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +122 -306
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +29 -68
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +68 -152
- package/dist/es/components/runtime/utils/charts/chart-radar-util.js +46 -124
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +36 -99
- package/dist/es/components/runtime/utils/charts/chart-util.js +224 -522
- package/dist/es/components/runtime/utils/common-util.js +76 -156
- package/dist/es/components/runtime/utils/eventBus.js +3 -8
- package/dist/es/components/runtime/utils/events/event-util.js +362 -775
- package/dist/es/components/runtime/utils/events/print-label.js +72 -140
- package/dist/es/components/runtime/utils/events/standard-event.js +808 -2320
- package/dist/es/components/runtime/utils/events/validator-util.js +224 -560
- package/dist/es/components/runtime/utils/form/date-shortcuts.js +28 -88
- package/dist/es/components/runtime/utils/form/scan-util.js +61 -162
- package/dist/es/components/runtime/utils/global-refs.js +53 -84
- package/dist/es/components/runtime/utils/i18n-util.js +11 -20
- package/dist/es/components/runtime/utils/interfaces/page-design-types.d.ts +6 -0
- package/dist/es/components/runtime/utils/interfaces/page-design-types.js +2 -7
- package/dist/es/components/runtime/utils/page-helper-util.js +280 -660
- package/dist/es/components/runtime/utils/page-init-util.js +141 -406
- package/dist/es/components/runtime/utils/page-permission-util.js +22 -531
- package/dist/es/components/runtime/utils/page-store.js +23 -68
- package/dist/es/components/runtime/utils/store-util.js +9 -13
- package/dist/es/components/runtime/utils/store.js +2 -2
- package/dist/es/components/runtime/utils/table-utils.d.ts +4 -0
- package/dist/es/components/runtime/utils/table-utils.js +40 -81
- package/dist/es/components/runtime/utils/tree-utils.js +17 -37
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +21 -83
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +14 -46
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +36 -132
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +4 -18
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +17 -107
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +50 -198
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +12 -42
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +7 -60
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +52 -203
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +4 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +46 -162
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +32 -109
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +43 -166
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +32 -117
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +32 -118
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +246 -597
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +4 -42
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +8 -62
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +29 -160
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +13 -62
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +212 -594
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +29 -139
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +21 -125
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +16 -102
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +18 -81
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +17 -82
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +14 -86
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +21 -79
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +16 -61
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +10 -37
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +38 -127
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +28 -76
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +61 -178
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +317 -810
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +262 -635
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +40 -115
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +56 -215
- package/dist/es/components/runtime/views/assemblys/error-render.vue.js +3 -21
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +42 -154
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +34 -98
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +52 -200
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +68 -239
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +31 -109
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +21 -59
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +56 -188
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +22 -103
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +57 -245
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +32 -174
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +28 -107
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +4 -4
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +13 -50
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +64 -194
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +88 -249
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +80 -263
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +13 -57
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +30 -155
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +40 -129
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +22 -107
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +89 -188
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/object-render.vue.js +133 -272
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +18 -46
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +21 -49
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +20 -58
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +16 -53
- package/dist/es/components/runtime/views/home-chart.vue.js +41 -160
- package/dist/es/components/runtime/views/home-chart.vue2.js +2 -2
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +20 -139
- package/dist/es/components/runtime/views/super-page-dialog.vue2.js +2 -2
- package/dist/es/components/runtime/views/super-page.vue.js +226 -754
- package/dist/es/components/runtime/views/super-page.vue2.js +2 -2
- package/dist/es/i18n/langs/cn.js +2 -55
- package/dist/es/i18n/langs/en.js +2 -55
- package/package.json +2 -2
|
@@ -1,437 +1,172 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { getAdditionalParamMap } from "./events/standard-event.js";
|
|
3
|
-
import { PageDimensions } from "./interfaces/page-design-types.js";
|
|
4
|
-
import { getFormPropName, getValueFromVariable, setVariableValue, formatVariableValue } from "./page-helper-util.js";
|
|
5
|
-
import { getSessionCache } from "agilebuilder-ui/src/utils/auth";
|
|
6
|
-
import { functions } from "./api/page-expose-util.js";
|
|
7
|
-
import { isWorkflowPage, deepCopy } from "./common-util.js";
|
|
8
|
-
import { packageCustomValidator } from "./events/validator-util.js";
|
|
9
|
-
import { isMobileBrowser } from "agilebuilder-ui/src/utils/common-util";
|
|
10
|
-
function
|
|
11
|
-
return
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
function convertToPageContext(pageDesign) {
|
|
1
|
+
import e from "agilebuilder-ui/src/utils/request";
|
|
2
|
+
import { getAdditionalParamMap as t } from "./events/standard-event.js";
|
|
3
|
+
import { PageDimensions as s } from "./interfaces/page-design-types.js";
|
|
4
|
+
import { getFormPropName as i, getValueFromVariable as n, setVariableValue as o, formatVariableValue as r } from "./page-helper-util.js";
|
|
5
|
+
import { getSessionCache as l } from "agilebuilder-ui/src/utils/auth";
|
|
6
|
+
import { functions as a } from "./api/page-expose-util.js";
|
|
7
|
+
import { isWorkflowPage as p, deepCopy as u } from "./common-util.js";
|
|
8
|
+
import { packageCustomValidator as d } from "./events/validator-util.js";
|
|
9
|
+
import { isMobileBrowser as m } from "agilebuilder-ui/src/utils/common-util";
|
|
10
|
+
function f(t2) {
|
|
11
|
+
return e.get(window.$vueApp.config.globalProperties.baseAPI + "/component/super-page-design/runtime/" + t2);
|
|
12
|
+
}
|
|
13
|
+
function c(e2) {
|
|
16
14
|
var _a;
|
|
17
|
-
if (
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// conversionCodes: pageDesign.conversionCodes, // 数据转换规则。按钮上配置的,此处不需要
|
|
41
|
-
pageType: pageDesign.pageType,
|
|
42
|
-
// 页面类型:form、list、chart
|
|
43
|
-
beanName: pageDesign.props ? pageDesign.props.beanName : null,
|
|
44
|
-
// 业务处理类,继承CommonBaseService接口的类
|
|
45
|
-
importBeanName: pageDesign.props ? pageDesign.props.importBeanName : null,
|
|
46
|
-
// 导入处理类,继承ImportDefinitionService接口的类
|
|
47
|
-
subTablePageInfo: pageDesign.subTablePageInfo,
|
|
48
|
-
// 列表分页信息,格式是:{列表编码: 每页显示多少条记录},表单页面中校验有分页的子表时提示使用,提示信息格式:第 {pageNum} 页第 {row} 行记录
|
|
49
|
-
workflowCode: pageDesign.workflowCode,
|
|
50
|
-
workflowVersion: pageDesign.workflowVersion,
|
|
51
|
-
refercePropMap: (_a = pageDesign.runtime) == null ? void 0 : _a.refercePropMap,
|
|
52
|
-
//当前表单页面中引用字段信息集合,get请求时需要使用,格式为{tableName:[字段名,.. ... ], tableName:[字段名,.. ... ]}
|
|
53
|
-
subTableWatchProps: pageDesign.subTableWatchProps,
|
|
54
|
-
dataTypeMaps: pageDesign.dataTypeMaps,
|
|
55
|
-
// 列表页面时后台会传该属性到前端
|
|
56
|
-
isWorkflowEntity: pageDesign.isWorkflowEntity,
|
|
57
|
-
// 列表页面时后台会传该属性到前端。列表删除时会用到该属性。
|
|
58
|
-
allChartUuids: pageDesign.allChartUuids,
|
|
59
|
-
entity: {
|
|
60
|
-
data: {},
|
|
61
|
-
task: {},
|
|
62
|
-
request: {},
|
|
63
|
-
//初始化request对象
|
|
64
|
-
page: {},
|
|
65
|
-
context: pageDesign.contextParam,
|
|
66
|
-
system: pageDesign.systemParam
|
|
67
|
-
}
|
|
68
|
-
};
|
|
69
|
-
if (pageDesign.props && pageDesign.props.notIdInitializationList) {
|
|
70
|
-
let notIdInitializationList = pageDesign.props.notIdInitializationList;
|
|
71
|
-
if (typeof notIdInitializationList === "string") {
|
|
72
|
-
notIdInitializationList = JSON.parse(notIdInitializationList);
|
|
73
|
-
}
|
|
74
|
-
if (notIdInitializationList.length > 0) {
|
|
75
|
-
pageContext["notIdInitializationList"] = notIdInitializationList;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
if (pageDesign.variables) {
|
|
79
|
-
const pageObj = pageContext.entity.page;
|
|
80
|
-
for (const variable of pageDesign.variables) {
|
|
81
|
-
if (variable.name) {
|
|
82
|
-
if (variable.isArrayElement) {
|
|
83
|
-
pageObj[variable.name] = [];
|
|
84
|
-
} else if (variable.defaultValue) {
|
|
85
|
-
pageObj[variable.name] = variable.defaultValue;
|
|
86
|
-
} else {
|
|
87
|
-
pageObj[variable.name] = void 0;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
setMobilePageVarValue(pageContext);
|
|
93
|
-
Object.assign(pageContext, pageDesign);
|
|
94
|
-
pageContext.dimensions = getPageDimensions();
|
|
95
|
-
pageContext.events = pageDesign.runtime && pageDesign.runtime.events ? pageDesign.runtime.events : [];
|
|
96
|
-
return pageContext;
|
|
97
|
-
}
|
|
98
|
-
function setMobilePageVarValue(pageContext) {
|
|
99
|
-
const isMobile = isMobileBrowser();
|
|
100
|
-
if (isMobile) {
|
|
101
|
-
pageContext.entity.page["_isMobile"] = "true";
|
|
102
|
-
const userAgentOrg = navigator ? navigator.userAgent : null;
|
|
103
|
-
if (userAgentOrg) {
|
|
104
|
-
if (userAgentOrg.indexOf(" uni-app ") > 0) {
|
|
105
|
-
pageContext.entity.page["_isMobileApp"] = "true";
|
|
106
|
-
pageContext.entity.page["_isMobileBrowser"] = "false";
|
|
107
|
-
} else {
|
|
108
|
-
pageContext.entity.page["_isMobileApp"] = "false";
|
|
109
|
-
pageContext.entity.page["_isMobileBrowser"] = "true";
|
|
110
|
-
}
|
|
111
|
-
} else {
|
|
112
|
-
pageContext.entity.page["_isMobileApp"] = "false";
|
|
113
|
-
pageContext.entity.page["_isMobileBrowser"] = "false";
|
|
114
|
-
}
|
|
115
|
-
} else {
|
|
116
|
-
pageContext.entity.page["_isMobile"] = "false";
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
function getJudgeHeavyList(pageDesign) {
|
|
15
|
+
if (null == e2) return null;
|
|
16
|
+
const t2 = { uuid: e2.uuid, name: e2.name, label: e2.label, code: e2.code, version: e2.version, dimensions: e2.dimensions, systemCode: e2.systemCode, systemVersion: e2.systemVersion, backendUrl: e2.backendUrl, rules: {}, tableUuids: e2.tableUuids, listCodesMap: e2.listCodesMap, formNoRuleCode: e2.props ? e2.props.formNoRuleCode : null, judgeHeavyList: g(e2), pageType: e2.pageType, beanName: e2.props ? e2.props.beanName : null, importBeanName: e2.props ? e2.props.importBeanName : null, subTablePageInfo: e2.subTablePageInfo, workflowCode: e2.workflowCode, workflowVersion: e2.workflowVersion, refercePropMap: (_a = e2.runtime) == null ? void 0 : _a.refercePropMap, subTableWatchProps: e2.subTableWatchProps, dataTypeMaps: e2.dataTypeMaps, isWorkflowEntity: e2.isWorkflowEntity, allChartUuids: e2.allChartUuids, entity: { data: {}, task: {}, request: {}, page: {}, context: e2.contextParam, system: e2.systemParam } };
|
|
17
|
+
if (e2.props && e2.props.notIdInitializationList) {
|
|
18
|
+
let s2 = e2.props.notIdInitializationList;
|
|
19
|
+
"string" == typeof s2 && (s2 = JSON.parse(s2)), s2.length > 0 && (t2.notIdInitializationList = s2);
|
|
20
|
+
}
|
|
21
|
+
if (e2.variables) {
|
|
22
|
+
const s2 = t2.entity.page;
|
|
23
|
+
for (const t3 of e2.variables) t3.name && (t3.isArrayElement ? s2[t3.name] = [] : t3.defaultValue ? s2[t3.name] = t3.defaultValue : s2[t3.name] = void 0);
|
|
24
|
+
}
|
|
25
|
+
return function(e3) {
|
|
26
|
+
if (m()) {
|
|
27
|
+
e3.entity.page._isMobile = "true";
|
|
28
|
+
const t3 = navigator ? navigator.userAgent : null;
|
|
29
|
+
t3 ? t3.indexOf(" uni-app ") > 0 ? (e3.entity.page._isMobileApp = "true", e3.entity.page._isMobileBrowser = "false") : (e3.entity.page._isMobileApp = "false", e3.entity.page._isMobileBrowser = "true") : (e3.entity.page._isMobileApp = "false", e3.entity.page._isMobileBrowser = "false");
|
|
30
|
+
} else e3.entity.page._isMobile = "false";
|
|
31
|
+
}(t2), Object.assign(t2, e2), t2.dimensions = function() {
|
|
32
|
+
const e3 = window.outerWidth;
|
|
33
|
+
if (!e3) return s.PC;
|
|
34
|
+
return e3 > 768 ? s.PC : e3 > 414 ? s.IPAD : s.PHONE;
|
|
35
|
+
}(), t2.events = e2.runtime && e2.runtime.events ? e2.runtime.events : [], t2;
|
|
36
|
+
}
|
|
37
|
+
function g(e2) {
|
|
120
38
|
try {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
if (typeof field === "string") {
|
|
126
|
-
return { propDbName: field };
|
|
127
|
-
}
|
|
128
|
-
return field;
|
|
129
|
-
});
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
return pageDesign.props.judgeHeavyList;
|
|
133
|
-
} else {
|
|
134
|
-
return null;
|
|
135
|
-
}
|
|
136
|
-
} catch (e) {
|
|
137
|
-
console.error("getJudgeHeavyList error:", e);
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
function getPageDimensions() {
|
|
141
|
-
const winWidth = window.outerWidth;
|
|
142
|
-
if (!winWidth) {
|
|
143
|
-
return PageDimensions.PC;
|
|
144
|
-
}
|
|
145
|
-
if (winWidth > 768) {
|
|
146
|
-
return PageDimensions.PC;
|
|
147
|
-
} else if (winWidth > 414) {
|
|
148
|
-
return PageDimensions.IPAD;
|
|
149
|
-
} else {
|
|
150
|
-
return PageDimensions.PHONE;
|
|
39
|
+
return e2.props && e2.props.judgeHeavyList.length > 0 ? (e2.props.judgeHeavyList.forEach((e3) => {
|
|
40
|
+
e3.duplicateFieldList && e3.duplicateFieldList.length > 0 && (e3.duplicateFieldList = e3.duplicateFieldList.map((e4) => "string" == typeof e4 ? { propDbName: e4 } : e4));
|
|
41
|
+
}), e2.props.judgeHeavyList) : null;
|
|
42
|
+
} catch (e3) {
|
|
151
43
|
}
|
|
152
44
|
}
|
|
153
|
-
function
|
|
154
|
-
let
|
|
155
|
-
if (
|
|
156
|
-
|
|
157
|
-
const
|
|
158
|
-
for (const
|
|
159
|
-
const
|
|
160
|
-
|
|
45
|
+
function b(e2) {
|
|
46
|
+
let t2 = decodeURI(window.location.href);
|
|
47
|
+
if (t2 && t2.includes("?")) {
|
|
48
|
+
t2 = t2.substring(t2.lastIndexOf("?") + 1);
|
|
49
|
+
const s2 = t2.split("&");
|
|
50
|
+
for (const t3 of s2) {
|
|
51
|
+
const s3 = t3.split("=");
|
|
52
|
+
e2[s3[0]] = s3.length > 1 ? s3[1] : "";
|
|
161
53
|
}
|
|
162
54
|
}
|
|
163
|
-
|
|
55
|
+
e2._t_;
|
|
164
56
|
}
|
|
165
|
-
function
|
|
166
|
-
if (
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
const paramStoreId = pageRequest.paramStoreId;
|
|
170
|
-
packageAdditionalMap(paramStoreId, requestObj);
|
|
171
|
-
delete pageRequest.paramStoreId;
|
|
172
|
-
console.log("packageAdditionalMapWithPageRequest----requestObj=", requestObj);
|
|
173
|
-
if (pageRequest.jumpMode) {
|
|
174
|
-
requestObj.jumpMode = pageRequest.jumpMode;
|
|
175
|
-
}
|
|
57
|
+
function y(e2, t2) {
|
|
58
|
+
if (e2) {
|
|
59
|
+
Object.assign(t2, e2);
|
|
60
|
+
E(e2.paramStoreId, t2), delete e2.paramStoreId, e2.jumpMode && (t2.jumpMode = e2.jumpMode);
|
|
176
61
|
}
|
|
177
62
|
}
|
|
178
|
-
function
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
Object.assign(requestObj, route.params);
|
|
183
|
-
}
|
|
184
|
-
console.log("packageAdditionalMapWithRoute----route.query=", route.query);
|
|
185
|
-
if (route.query) {
|
|
186
|
-
Object.assign(requestObj, route.query);
|
|
187
|
-
const paramStoreId = route.query.paramStoreId;
|
|
188
|
-
packageAdditionalMap(paramStoreId, requestObj);
|
|
189
|
-
}
|
|
190
|
-
console.log("packageAdditionalMapWithRoute----requestObj=", requestObj);
|
|
63
|
+
function h(e2, t2) {
|
|
64
|
+
if (e2 && (e2.params && Object.assign(t2, e2.params), e2.query)) {
|
|
65
|
+
Object.assign(t2, e2.query);
|
|
66
|
+
E(e2.query.paramStoreId, t2);
|
|
191
67
|
}
|
|
192
68
|
}
|
|
193
|
-
function
|
|
194
|
-
if (
|
|
195
|
-
const
|
|
196
|
-
if (
|
|
197
|
-
const
|
|
198
|
-
Object.assign(
|
|
199
|
-
console.log("已获取到附加参数", additionalParamMap);
|
|
69
|
+
function E(e2, t2) {
|
|
70
|
+
if (e2) {
|
|
71
|
+
const s2 = l(e2);
|
|
72
|
+
if (s2) {
|
|
73
|
+
const e3 = JSON.parse(s2);
|
|
74
|
+
Object.assign(t2, e3);
|
|
200
75
|
}
|
|
201
76
|
}
|
|
202
77
|
}
|
|
203
|
-
function
|
|
204
|
-
let
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
propName = propsBase.prop;
|
|
209
|
-
}
|
|
210
|
-
let fields = null;
|
|
211
|
-
if (prop && !prop.startsWith("${")) {
|
|
212
|
-
fields = ["data", prop];
|
|
213
|
-
} else if (formItemConfigure && (!propName || !propName.startsWith("${"))) {
|
|
214
|
-
fields = ["page", formItemConfigure.uuid];
|
|
215
|
-
} else if (propName.startsWith("${")) {
|
|
216
|
-
propName = propName.substring(2, propName.length - 1);
|
|
217
|
-
fields = propName.split(".");
|
|
218
|
-
if (formItemConfigure && fields.length < 2) {
|
|
219
|
-
fields = [formItemConfigure.uuid];
|
|
220
|
-
}
|
|
221
|
-
} else if (formItemConfigure) {
|
|
222
|
-
fields = ["page", formItemConfigure.uuid];
|
|
223
|
-
}
|
|
224
|
-
if (!fields && !formItemConfigure) {
|
|
225
|
-
return ["temp"];
|
|
226
|
-
}
|
|
227
|
-
return fields;
|
|
78
|
+
function v(e2, t2) {
|
|
79
|
+
let s2, i2 = t2;
|
|
80
|
+
t2 || (s2 = e2.props.base ? e2.props.base : {}, i2 = s2.prop);
|
|
81
|
+
let n2 = null;
|
|
82
|
+
return t2 && !t2.startsWith("${") ? n2 = ["data", t2] : !e2 || i2 && i2.startsWith("${") ? i2.startsWith("${") ? (i2 = i2.substring(2, i2.length - 1), n2 = i2.split("."), e2 && n2.length < 2 && (n2 = [e2.uuid])) : e2 && (n2 = ["page", e2.uuid]) : n2 = ["page", e2.uuid], n2 || e2 ? n2 : ["temp"];
|
|
228
83
|
}
|
|
229
|
-
function
|
|
230
|
-
const
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
componentType = formItemConfigure.name;
|
|
239
|
-
multiple = propsBase.multiple;
|
|
240
|
-
}
|
|
241
|
-
const value = getValueFromVariable(entity, prop, null);
|
|
242
|
-
if (value === void 0 || value === null) {
|
|
243
|
-
const defaultValueSet = propsBase ? propsBase.defaultValue : null;
|
|
244
|
-
const defaultValue = getDefaultValue(
|
|
245
|
-
pageContext,
|
|
246
|
-
defaultValueSet,
|
|
247
|
-
componentType,
|
|
248
|
-
multiple
|
|
249
|
-
);
|
|
250
|
-
if (defaultValue !== void 0 && defaultValue !== null) {
|
|
251
|
-
setVariableValue(entity, fields, defaultValue);
|
|
252
|
-
}
|
|
84
|
+
function w(e2, t2, s2) {
|
|
85
|
+
const i2 = v(t2, s2), r2 = e2.entity;
|
|
86
|
+
if (null == r2.data.ID && null == r2.data.id) {
|
|
87
|
+
let l2, a2, p2 = false;
|
|
88
|
+
t2 && (l2 = t2.props.base ? t2.props.base : {}, a2 = t2.name, p2 = l2.multiple);
|
|
89
|
+
const u2 = n(r2, s2, null);
|
|
90
|
+
if (null == u2) {
|
|
91
|
+
const t3 = P(e2, l2 ? l2.defaultValue : null, a2, p2);
|
|
92
|
+
null != t3 && o(r2, i2, t3);
|
|
253
93
|
}
|
|
254
94
|
}
|
|
255
|
-
return
|
|
95
|
+
return i2;
|
|
256
96
|
}
|
|
257
|
-
function
|
|
258
|
-
let
|
|
259
|
-
if (
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
let isMultiple = false;
|
|
263
|
-
if (componentType == "checkbox") {
|
|
264
|
-
isMultiple = true;
|
|
265
|
-
} else if (componentType == "select") {
|
|
266
|
-
isMultiple = multiple;
|
|
267
|
-
}
|
|
268
|
-
if (isMultiple) {
|
|
269
|
-
defaultValue = (defaultValue + "").split(",");
|
|
270
|
-
}
|
|
271
|
-
}
|
|
97
|
+
function P(e2, t2, s2, i2) {
|
|
98
|
+
let n2;
|
|
99
|
+
if (t2 && (n2 = r(e2, t2), null != n2 && null != n2 && s2)) {
|
|
100
|
+
let e3 = false;
|
|
101
|
+
"checkbox" == s2 ? e3 = true : "select" == s2 && (e3 = i2), e3 && (n2 = (n2 + "").split(","));
|
|
272
102
|
}
|
|
273
|
-
return
|
|
103
|
+
return n2;
|
|
274
104
|
}
|
|
275
|
-
function
|
|
276
|
-
if (!
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
for (
|
|
282
|
-
|
|
105
|
+
function M(e2, t2) {
|
|
106
|
+
if (!t2 || !e2 || t2.isTest) return "true";
|
|
107
|
+
const s2 = [];
|
|
108
|
+
if (e2.autoPermissions) for (const i2 of e2.autoPermissions) s2.push(t2.code + "." + i2.simpleCode);
|
|
109
|
+
if (e2.functionCodes) {
|
|
110
|
+
const i2 = e2.sourceTypes ? e2.sourceTypes : [], n2 = e2.functionCodes;
|
|
111
|
+
for (let e3 = 0; e3 < n2.length; e3++) {
|
|
112
|
+
const o2 = n2[e3];
|
|
113
|
+
let r2 = "";
|
|
114
|
+
r2 = "service" == (e3 < i2.length ? i2[e3] : "") ? o2 : t2.code + "." + o2, s2.includes(r2) || s2.push(r2);
|
|
283
115
|
}
|
|
284
116
|
}
|
|
285
|
-
|
|
286
|
-
const sourceTypes = configure.sourceTypes ? configure.sourceTypes : [];
|
|
287
|
-
const functionCodes = configure.functionCodes;
|
|
288
|
-
for (let i = 0; i < functionCodes.length; i++) {
|
|
289
|
-
const functionCode = functionCodes[i];
|
|
290
|
-
const sourceType = i < sourceTypes.length ? sourceTypes[i] : "";
|
|
291
|
-
let newCode = "";
|
|
292
|
-
if (sourceType == "service") {
|
|
293
|
-
newCode = functionCode;
|
|
294
|
-
} else {
|
|
295
|
-
newCode = pageContext.code + "." + functionCode;
|
|
296
|
-
}
|
|
297
|
-
if (!codes.includes(newCode)) {
|
|
298
|
-
codes.push(newCode);
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
return codes.join(",");
|
|
117
|
+
return s2.join(",");
|
|
303
118
|
}
|
|
304
|
-
function
|
|
305
|
-
const
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
if (additionalParamMap && Object.keys(additionalParamMap) > 0) {
|
|
310
|
-
additionalParamMapJson = JSON.stringify(additionalParamMap);
|
|
311
|
-
}
|
|
312
|
-
return http.post(
|
|
313
|
-
window["$vueApp"].config.globalProperties.baseAPI + "/component/super-page-design/super-grids",
|
|
314
|
-
{
|
|
315
|
-
tableRuntimes,
|
|
316
|
-
additionalParamMapJson,
|
|
317
|
-
pageCode,
|
|
318
|
-
publishVersion,
|
|
319
|
-
pageType: pageDesign.pageType
|
|
320
|
-
}
|
|
321
|
-
);
|
|
119
|
+
function j(s2, i2, n2) {
|
|
120
|
+
const o2 = s2.tableRuntimes, r2 = t(i2);
|
|
121
|
+
let l2;
|
|
122
|
+
const a2 = i2.code;
|
|
123
|
+
return r2 && Object.keys(r2) > 0 && (l2 = JSON.stringify(r2)), e.post(window.$vueApp.config.globalProperties.baseAPI + "/component/super-page-design/super-grids", { tableRuntimes: o2, additionalParamMapJson: l2, pageCode: a2, publishVersion: n2, pageType: s2.pageType });
|
|
322
124
|
}
|
|
323
|
-
function
|
|
125
|
+
function C(e2, t2) {
|
|
324
126
|
var _a, _b;
|
|
325
|
-
const
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
if (!allFieldsDisabled && configure.name !== "button-detail" && pageContext.fieldPermissionMap) {
|
|
352
|
-
const propEditPermission = pageContext.fieldPermissionMap.get(propName);
|
|
353
|
-
if (!configure.runtime.props) {
|
|
354
|
-
configure.runtime.props = {};
|
|
355
|
-
}
|
|
356
|
-
if (propEditPermission) {
|
|
357
|
-
if (propEditPermission["canEdit"] === false) {
|
|
358
|
-
configure.runtime.props.state = "disabled";
|
|
359
|
-
} else if (propEditPermission["canEdit"]) {
|
|
360
|
-
configure.runtime.props.state = "";
|
|
361
|
-
configure.runtime.props.required = true;
|
|
362
|
-
}
|
|
363
|
-
} else {
|
|
364
|
-
configure.runtime.props.state = "";
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
if ((_b = configure.props) == null ? void 0 : _b.customRuleEvents) {
|
|
368
|
-
if (!pageContext.customRuleEvents) {
|
|
369
|
-
pageContext.customRuleEvents = [];
|
|
370
|
-
}
|
|
371
|
-
pageContext.customRuleEvents.push({
|
|
372
|
-
prop: propName,
|
|
373
|
-
events: configure.props.customRuleEvents
|
|
374
|
-
});
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
function controlObjectRenderState(pageContext, propName) {
|
|
379
|
-
if (pageContext.initInfo) {
|
|
380
|
-
const types = [
|
|
381
|
-
"dynamicControlFormEdit",
|
|
382
|
-
"disableElement",
|
|
383
|
-
"enableElement",
|
|
384
|
-
"hideElement",
|
|
385
|
-
"showElement"
|
|
386
|
-
];
|
|
387
|
-
types.forEach((type) => {
|
|
388
|
-
const infos = pageContext.initInfo[type];
|
|
389
|
-
if (infos) {
|
|
390
|
-
if (type === "dynamicControlFormEdit") {
|
|
391
|
-
let settings = infos.filter(
|
|
392
|
-
(item) => item.name === "_all_fields" || item.name === propName
|
|
393
|
-
);
|
|
394
|
-
if (settings && settings.length > 0) {
|
|
395
|
-
settings = settings.filter((item) => item.name === "_all_fields");
|
|
396
|
-
if (settings && settings.length > 0) {
|
|
397
|
-
const copySetting = deepCopy(settings[0]);
|
|
398
|
-
copySetting.name = propName;
|
|
399
|
-
settings = [copySetting];
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
|
-
functions.dynamicControlFormEdit(pageContext, settings, false);
|
|
403
|
-
} else if (type === "disableElement") {
|
|
404
|
-
if (infos.indexOf(propName) >= 0) {
|
|
405
|
-
functions.disableElement(pageContext, [propName], false);
|
|
406
|
-
}
|
|
407
|
-
} else if (type === "enableElement") {
|
|
408
|
-
if (infos.indexOf(propName) >= 0) {
|
|
409
|
-
functions.enableElement(pageContext, [propName], false);
|
|
410
|
-
}
|
|
411
|
-
} else if (type === "hideElement") {
|
|
412
|
-
if (infos.indexOf(propName) >= 0) {
|
|
413
|
-
functions.hideElement(pageContext, [propName], false);
|
|
414
|
-
}
|
|
415
|
-
} else if (type === "showElement") {
|
|
416
|
-
if (infos.indexOf(propName) >= 0) {
|
|
417
|
-
functions.showElement(pageContext, [propName], false);
|
|
418
|
-
}
|
|
127
|
+
const s2 = t2.props && t2.props.base ? t2.props.base.prop : null;
|
|
128
|
+
let n2 = false;
|
|
129
|
+
if (p(e2) && "button-detail" !== t2.name && e2.fieldPermissionMap) {
|
|
130
|
+
const s3 = e2.fieldPermissionMap.get("all_fields");
|
|
131
|
+
false === (s3 == null ? void 0 : s3.canEdit) && ((_a = t2.runtime) == null ? void 0 : _a.props) && (t2.runtime.props.state = "disabled", n2 = true);
|
|
132
|
+
}
|
|
133
|
+
if (s2) {
|
|
134
|
+
const o2 = i(s2);
|
|
135
|
+
if (e2.rules || (e2.rules = {}), t2.props.rules && t2.props.rules.length > 0 && (e2.rules[o2] || (e2.rules[o2] = []), t2.props.rules.forEach((e3) => {
|
|
136
|
+
d(e3);
|
|
137
|
+
}), e2.rules[o2] = t2.props.rules), !n2 && "button-detail" !== t2.name && e2.fieldPermissionMap) {
|
|
138
|
+
const s3 = e2.fieldPermissionMap.get(o2);
|
|
139
|
+
t2.runtime.props || (t2.runtime.props = {}), s3 ? false === s3.canEdit ? t2.runtime.props.state = "disabled" : s3.canEdit && (t2.runtime.props.state = "", t2.runtime.props.required = true) : t2.runtime.props.state = "";
|
|
140
|
+
}
|
|
141
|
+
((_b = t2.props) == null ? void 0 : _b.customRuleEvents) && (e2.customRuleEvents || (e2.customRuleEvents = []), e2.customRuleEvents.push({ prop: o2, events: t2.props.customRuleEvents }));
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
function I(e2, t2) {
|
|
145
|
+
if (e2.initInfo) {
|
|
146
|
+
["dynamicControlFormEdit", "disableElement", "enableElement", "hideElement", "showElement"].forEach((s2) => {
|
|
147
|
+
const i2 = e2.initInfo[s2];
|
|
148
|
+
if (i2) if ("dynamicControlFormEdit" === s2) {
|
|
149
|
+
let s3 = i2.filter((e3) => "_all_fields" === e3.name || e3.name === t2);
|
|
150
|
+
if (s3 && s3.length > 0 && (s3 = s3.filter((e3) => "_all_fields" === e3.name), s3 && s3.length > 0)) {
|
|
151
|
+
const e3 = u(s3[0]);
|
|
152
|
+
e3.name = t2, s3 = [e3];
|
|
419
153
|
}
|
|
420
|
-
|
|
154
|
+
a.dynamicControlFormEdit(e2, s3, false);
|
|
155
|
+
} else "disableElement" === s2 ? i2.indexOf(t2) >= 0 && a.disableElement(e2, [t2], false) : "enableElement" === s2 ? i2.indexOf(t2) >= 0 && a.enableElement(e2, [t2], false) : "hideElement" === s2 ? i2.indexOf(t2) >= 0 && a.hideElement(e2, [t2], false) : "showElement" === s2 && i2.indexOf(t2) >= 0 && a.showElement(e2, [t2], false);
|
|
421
156
|
});
|
|
422
157
|
}
|
|
423
158
|
}
|
|
424
159
|
export {
|
|
425
|
-
controlObjectRenderState,
|
|
426
|
-
convertToPageContext,
|
|
427
|
-
getDefaultValue,
|
|
428
|
-
getFormModelFields,
|
|
429
|
-
getModelFields,
|
|
430
|
-
getPermissionCodes,
|
|
431
|
-
packageAdditionalMapWithLocationSearch,
|
|
432
|
-
packageAdditionalMapWithPageRequest,
|
|
433
|
-
packageAdditionalMapWithRoute,
|
|
434
|
-
packageFormRules,
|
|
435
|
-
queryPageDesignByCode,
|
|
436
|
-
queryPageSuperGrids
|
|
160
|
+
I as controlObjectRenderState,
|
|
161
|
+
c as convertToPageContext,
|
|
162
|
+
P as getDefaultValue,
|
|
163
|
+
w as getFormModelFields,
|
|
164
|
+
v as getModelFields,
|
|
165
|
+
M as getPermissionCodes,
|
|
166
|
+
b as packageAdditionalMapWithLocationSearch,
|
|
167
|
+
y as packageAdditionalMapWithPageRequest,
|
|
168
|
+
h as packageAdditionalMapWithRoute,
|
|
169
|
+
C as packageFormRules,
|
|
170
|
+
f as queryPageDesignByCode,
|
|
171
|
+
j as queryPageSuperGrids
|
|
437
172
|
};
|