@gct-paas/core 0.1.4-dev.11 → 0.1.4-dev.12
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/index.esm.min.js +21679 -0
- package/es/constants/core.mjs +5 -4
- package/es/constants/default-date-type/default-date-type.mjs +73 -21
- package/es/constants/editor-register/editor-register.mjs +17 -5
- package/es/constants/expression-type/BuiltOperators.mjs +152 -147
- package/es/constants/expression-type/FunctionKeys.mjs +75 -79
- package/es/constants/expression-type/editor.mjs +10 -3
- package/es/constants/expression-type/function.mjs +602 -613
- package/es/constants/expression-type/index.mjs +111 -113
- package/es/constants/expression-type/modeCfg.mjs +256 -263
- package/es/constants/expression-type/variable.mjs +43 -39
- package/es/constants/form-container-type/form-container-type.mjs +17 -5
- package/es/constants/index.mjs +30 -10
- package/es/constants/page-designer/model.mjs +15 -5
- package/es/create-app-vue.mjs +15 -9
- package/es/enums/app-designer/index.d.ts +19 -0
- package/es/enums/app-designer/index.mjs +131 -63
- package/es/enums/appEnum.mjs +681 -360
- package/es/enums/appStateEnum.mjs +17 -10
- package/es/enums/authActionEnum.mjs +63 -51
- package/es/enums/breakpointEnum.mjs +27 -26
- package/es/enums/cacheEnum.mjs +22 -21
- package/es/enums/designEnum.mjs +110 -71
- package/es/enums/developer-center/integration.mjs +7 -6
- package/es/enums/exceptionEnum.mjs +21 -17
- package/es/enums/expressionEnum.d.ts +1 -1
- package/es/enums/expressionEnum.mjs +81 -74
- package/es/enums/globalEnum.mjs +59 -36
- package/es/enums/httpEnum.mjs +71 -61
- package/es/enums/index.mjs +43 -14
- package/es/enums/menuEnum.mjs +42 -38
- package/es/enums/page-designer/designer.mjs +403 -407
- package/es/enums/page-designer/index.mjs +4 -0
- package/es/enums/page-designer/panel.mjs +341 -213
- package/es/enums/page-designer/toolkit.mjs +13 -12
- package/es/enums/page-designer/widget.mjs +425 -338
- package/es/enums/pageEnum.mjs +14 -13
- package/es/enums/plugin-enum.mjs +23 -7
- package/es/enums/processEnum.mjs +95 -60
- package/es/enums/roleEnum.mjs +7 -6
- package/es/enums/sizeEnum.d.ts +18 -0
- package/es/enums/sizeEnum.mjs +28 -8
- package/es/global/gct/gct.mjs +84 -96
- package/es/global/index.mjs +1 -0
- package/es/hooks/index.mjs +4 -0
- package/es/hooks/use-app-inst/use-app-inst.mjs +11 -5
- package/es/hooks/use-modal/use-modal.mjs +16 -10
- package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +43 -23
- package/es/hooks/useCopyToClipboard.mjs +50 -50
- package/es/index.mjs +122 -114
- package/es/locale/index.mjs +43 -57
- package/es/modules/env-manager/env-manager.const.mjs +16 -8
- package/es/modules/env-manager/env-manager.interface.mjs +14 -7
- package/es/modules/env-manager/env-manager.mjs +104 -107
- package/es/modules/error-handler/error-handler.const.mjs +11 -16
- package/es/modules/error-handler/error-strategy.mjs +199 -175
- package/es/modules/error-handler/index.mjs +120 -106
- package/es/modules/mqtt/constants/mqtt.const.mjs +21 -24
- package/es/modules/mqtt/enums/mqtt-status.enum.mjs +23 -9
- package/es/modules/mqtt/index.mjs +4 -0
- package/es/modules/mqtt/mqtt-client.mjs +228 -261
- package/es/modules/mqtt/mqtt-manager.mjs +117 -77
- package/es/modules/platform-config/constants/index.mjs +4 -0
- package/es/modules/platform-config/constants/login.const.mjs +48 -45
- package/es/modules/platform-config/constants/org.const.mjs +57 -52
- package/es/modules/platform-config/constants/theme.const.mjs +11 -4
- package/es/modules/platform-config/constants/watermark.const.mjs +17 -12
- package/es/modules/platform-config/enums/deploy.enum.mjs +13 -6
- package/es/modules/platform-config/enums/login.enum.mjs +29 -15
- package/es/modules/platform-config/enums/platform.enum.mjs +16 -13
- package/es/modules/platform-config/index.mjs +9 -0
- package/es/modules/platform-config/store.mjs +68 -79
- package/es/modules/platform-config/useBasicSetting.mjs +47 -35
- package/es/modules/platform-config/useDeploySetting.mjs +29 -21
- package/es/modules/platform-config/useLoginSetting.mjs +151 -173
- package/es/modules/platform-config/useOrgSetting.mjs +63 -62
- package/es/modules/platform-config/useProjectSetting.mjs +14 -6
- package/es/modules/platform-config/useSecuritySetting.mjs +68 -56
- package/es/modules/platform-config/useThemeSetting.mjs +78 -59
- package/es/modules/platform-config/useWatermarkSetting.mjs +37 -23
- package/es/modules/user-stores/index.mjs +3 -0
- package/es/modules/user-stores/store/permission.store.mjs +27 -36
- package/es/modules/user-stores/store/tenant.store.mjs +20 -22
- package/es/modules/user-stores/store/user.store.mjs +94 -117
- package/es/router/index.mjs +25 -28
- package/es/setup-app.mjs +23 -39
- package/es/state/global-pinia-state/global-pinia-state.mjs +49 -71
- package/es/state/index.mjs +1 -0
- package/es/store/global-store.mjs +50 -72
- package/es/store/index.mjs +25 -19
- package/es/types/index.d.ts +7 -0
- package/es/utils/axios/interceptors.mjs +21 -17
- package/es/utils/cache-adapter/cache-adapter.mjs +61 -56
- package/es/utils/design/design.mjs +18 -12
- package/es/utils/deviceFingerprint.mjs +74 -63
- package/es/utils/dictionary/dictionary.mjs +142 -145
- package/es/utils/file/base64Conver.mjs +35 -30
- package/es/utils/file/download.mjs +94 -98
- package/es/utils/file/parser.d.ts +3 -0
- package/es/utils/file/parser.mjs +29 -0
- package/es/utils/i18n/index.mjs +14 -3
- package/es/utils/index.d.ts +1 -0
- package/es/utils/index.mjs +31 -0
- package/es/utils/is-sort-filed/is-sort-filed.mjs +42 -37
- package/es/utils/linked-list/linked-list.mjs +115 -118
- package/es/utils/linked-node/linked-node.mjs +41 -31
- package/es/utils/lowcode/utils.mjs +13 -18
- package/es/utils/lowcode/validate.mjs +20 -26
- package/es/utils/mitt/mitt.mjs +4 -4
- package/es/utils/model-loader/model-loader.mjs +280 -325
- package/es/utils/namespace/namespace.mjs +178 -164
- package/es/utils/openUtil/index.mjs +2 -0
- package/es/utils/openUtil/modal/modal.mjs +72 -79
- package/es/utils/openUtil/overlay-container/overlay-container.mjs +144 -138
- package/es/utils/permission.mjs +33 -37
- package/es/utils/plugin-static-resource/plugin-static-resource.mjs +46 -42
- package/es/utils/style/index.mjs +94 -138
- package/es/utils/tools/tools.mjs +86 -54
- package/es/utils/treeHelper/treeHelper.mjs +205 -233
- package/es/utils/uploader/uploader.mjs +81 -115
- package/es/utils/useUUid.mjs +79 -87
- package/es/utils/util.mjs +55 -35
- package/es/utils/uuid/uuid.d.ts +1 -0
- package/es/utils/uuid/uuid.mjs +36 -43
- package/es/utils/validate.mjs +15 -19
- package/es/utils/value-helper/value-helper.mjs +113 -98
- package/package.json +12 -13
- package/dist/index.esm.min.mjs +0 -18322
- package/dist/index.min.cjs +0 -393
- package/dist/index.system.min.js +0 -393
|
@@ -1,414 +1,410 @@
|
|
|
1
|
-
import { FIELD_TYPE } from
|
|
2
|
-
|
|
3
|
-
var SCOPE = /* @__PURE__ */ (
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
var FormComponents = /* @__PURE__ */ (
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
1
|
+
import { FIELD_TYPE } from "../appEnum.mjs";
|
|
2
|
+
//#region src/enums/page-designer/designer.ts
|
|
3
|
+
var SCOPE = /* @__PURE__ */ function(SCOPE) {
|
|
4
|
+
SCOPE["PAGE"] = "page";
|
|
5
|
+
SCOPE["MODAL"] = "modal";
|
|
6
|
+
return SCOPE;
|
|
7
|
+
}({});
|
|
8
|
+
var FormComponents = /* @__PURE__ */ function(FormComponents) {
|
|
9
|
+
FormComponents["RdoInput"] = "rdo-input";
|
|
10
|
+
FormComponents["Input"] = "input";
|
|
11
|
+
FormComponents["ElectronicSignature"] = "electronic-signature";
|
|
12
|
+
FormComponents["UseinfoButton"] = "useinfo-button";
|
|
13
|
+
FormComponents["ModelingButton"] = "modeling-button";
|
|
14
|
+
FormComponents["ImportButton"] = "gc-import-button";
|
|
15
|
+
FormComponents["ExportButton"] = "gc-export-button";
|
|
16
|
+
FormComponents["DocumentPrintButton"] = "document-print-button";
|
|
17
|
+
FormComponents["SubmitButton"] = "submit-button";
|
|
18
|
+
FormComponents["BatchDeleteButton"] = "batchdelete-button";
|
|
19
|
+
FormComponents["CustomButton"] = "custom-button";
|
|
20
|
+
FormComponents["TableLinkButton"] = "table-link-button";
|
|
21
|
+
FormComponents["TableInfoButton"] = "table-info-button";
|
|
22
|
+
FormComponents["TableApproveButton"] = "table-approve-button";
|
|
23
|
+
FormComponents["OpeButton"] = "ope-button";
|
|
24
|
+
FormComponents["ResetButton"] = "reset-button";
|
|
25
|
+
FormComponents["RdoSaveButton"] = "rdo-save-button";
|
|
26
|
+
FormComponents["LabelPrintButton"] = "labelprint-button";
|
|
27
|
+
FormComponents["ProcessButton"] = "process-button";
|
|
28
|
+
FormComponents["ProcessApproveButton"] = "process-approve-button";
|
|
29
|
+
FormComponents["CreateButton"] = "create-button";
|
|
30
|
+
FormComponents["DeleteButton"] = "delete-button";
|
|
31
|
+
FormComponents["CopyButton"] = "copy-button";
|
|
32
|
+
FormComponents["RefreshButton"] = "refresh-button";
|
|
33
|
+
FormComponents["CreateVersionButton"] = "create-version-button";
|
|
34
|
+
FormComponents["CopyVersionButton"] = "copy-version-button";
|
|
35
|
+
FormComponents["Checkbox"] = "checkbox";
|
|
36
|
+
FormComponents["DataTable"] = "data-table";
|
|
37
|
+
FormComponents["DataVTable"] = "data-v-table";
|
|
38
|
+
FormComponents["TreeTable"] = "tree-table";
|
|
39
|
+
FormComponents["DataTableColumn"] = "data-table-column";
|
|
40
|
+
FormComponents["RefDataTable"] = "ref-data-table";
|
|
41
|
+
FormComponents["DataList"] = "data-list";
|
|
42
|
+
FormComponents["RdoDataList"] = "rdo-data-list";
|
|
43
|
+
FormComponents["DataTableOpe"] = "data-table-ope";
|
|
44
|
+
FormComponents["DataTableFormula"] = "data-table-formula";
|
|
45
|
+
FormComponents["Datepicker"] = "datepicker";
|
|
46
|
+
FormComponents["DateTimepicker"] = "datetimepicker";
|
|
47
|
+
FormComponents["Department"] = "department";
|
|
48
|
+
FormComponents["Form"] = "form";
|
|
49
|
+
FormComponents["RdoForm"] = "rdo-form";
|
|
50
|
+
FormComponents["RdoTable"] = "rdo-table";
|
|
51
|
+
FormComponents["MedProRdoForm"] = "medprordo-form";
|
|
52
|
+
FormComponents["MedProRdoTable"] = "medprordo-table";
|
|
53
|
+
FormComponents["FormProcess"] = "form-process";
|
|
54
|
+
FormComponents["Inputmoney"] = "inputmoney";
|
|
55
|
+
FormComponents["Inputnumber"] = "inputnumber";
|
|
56
|
+
FormComponents["InputDouble"] = "inputdouble";
|
|
57
|
+
FormComponents["Radio"] = "radio";
|
|
58
|
+
FormComponents["Select"] = "select";
|
|
59
|
+
FormComponents["RdoSelect"] = "rdo-select";
|
|
60
|
+
FormComponents["Switch"] = "switch";
|
|
61
|
+
FormComponents["Textarea"] = "textarea";
|
|
62
|
+
FormComponents["Timepicker"] = "timepicker";
|
|
63
|
+
FormComponents["Userpicker"] = "userpicker";
|
|
64
|
+
FormComponents["Search"] = "search";
|
|
65
|
+
FormComponents["SelectSearch"] = "select-search";
|
|
66
|
+
FormComponents["QuickSearch"] = "quick-search";
|
|
67
|
+
FormComponents["LayoutContainer"] = "layout-container";
|
|
68
|
+
FormComponents["ButtonContainer"] = "button-container";
|
|
69
|
+
FormComponents["ButtonProcessContainer"] = "button-process-container";
|
|
70
|
+
FormComponents["BottomButtonContainer"] = "bottom-button-container";
|
|
71
|
+
FormComponents["Grid"] = "grid";
|
|
72
|
+
FormComponents["GridCol"] = "grid-col";
|
|
73
|
+
FormComponents["Tabs"] = "tabs";
|
|
74
|
+
FormComponents["TabPane"] = "tab-pane";
|
|
75
|
+
FormComponents["LeftRightColumns"] = "left-right-columns";
|
|
76
|
+
FormComponents["TopBottomColumns"] = "top-bottom-columns";
|
|
77
|
+
FormComponents["LeftLayoutThree"] = "left-layout-three";
|
|
78
|
+
FormComponents["TopLayoutThree"] = "top-layout-three";
|
|
79
|
+
FormComponents["UploadFile"] = "upload-file";
|
|
80
|
+
FormComponents["UploadImage"] = "upload-image";
|
|
81
|
+
FormComponents["SubTable"] = "sub-table";
|
|
82
|
+
FormComponents["SubTableOpe"] = "sub-table-ope";
|
|
83
|
+
FormComponents["SubTableAddBtn"] = "sub-table-add-button";
|
|
84
|
+
FormComponents["SubTableCopyBtn"] = "sub-table-copy-button";
|
|
85
|
+
FormComponents["SubTableEditBtn"] = "sub-table-edit-button";
|
|
86
|
+
FormComponents["SubTableDeleteBtn"] = "sub-table-delete-button";
|
|
87
|
+
FormComponents["LinkPageBtn"] = "link-page-button";
|
|
88
|
+
FormComponents["Collapse"] = "collapse";
|
|
89
|
+
FormComponents["SpaceOccupation"] = "space-occupation";
|
|
90
|
+
FormComponents["Divider"] = "divider";
|
|
91
|
+
FormComponents["CardList"] = "card-list";
|
|
92
|
+
FormComponents["CardHeaderLeft"] = "card-header-left";
|
|
93
|
+
FormComponents["CardHeaderRight"] = "card-header-right";
|
|
94
|
+
FormComponents["CardContent"] = "card-content";
|
|
95
|
+
FormComponents["CardOpeBtn"] = "card-ope-btn";
|
|
96
|
+
FormComponents["BaseButton"] = "base-button";
|
|
97
|
+
FormComponents["ReadonlyCmp"] = "readonlycmp";
|
|
98
|
+
FormComponents["TableSelect"] = "table-select";
|
|
99
|
+
FormComponents["GenCheckbox"] = "gen-checkbox";
|
|
100
|
+
FormComponents["GenRadio"] = "gen-radio";
|
|
101
|
+
FormComponents["GenSwitch"] = "gen-switch";
|
|
102
|
+
FormComponents["WorkflowNodes"] = "workflow-nodes";
|
|
103
|
+
FormComponents["WorkflowNodeModal"] = "workflow-node-modal";
|
|
104
|
+
FormComponents["ESOP"] = "e-sop";
|
|
105
|
+
/** 公式 */
|
|
106
|
+
FormComponents["EXPRESSION"] = "expression";
|
|
107
|
+
/** 公式条件 */
|
|
108
|
+
FormComponents["ExpressionCondition"] = "expression-condition";
|
|
109
|
+
/** 汇总 */
|
|
110
|
+
FormComponents["AGG"] = "agg";
|
|
111
|
+
FormComponents["DynamicFormType"] = "dynamic-form-type";
|
|
112
|
+
FormComponents["DynamicFormValue"] = "dynamic-form-value";
|
|
113
|
+
FormComponents["DynamicFormOpts"] = "dynamic-form-options";
|
|
114
|
+
FormComponents["DynamicFormShowType"] = "dynamic-form-show-type";
|
|
115
|
+
FormComponents["DynamicTable"] = "dynamic-table";
|
|
116
|
+
FormComponents["Transaction"] = "transaction";
|
|
117
|
+
FormComponents["SerialRule"] = "serial-rule";
|
|
118
|
+
FormComponents["LabelTemplate"] = "label-template";
|
|
119
|
+
FormComponents["LabelTemplateRef"] = "label-template-ref";
|
|
120
|
+
FormComponents["DocumentTemplate"] = "document-template";
|
|
121
|
+
FormComponents["Wacom"] = "wacom";
|
|
122
|
+
FormComponents["Text"] = "text";
|
|
123
|
+
FormComponents["CustomField"] = "custom-field";
|
|
124
|
+
FormComponents["Printer"] = "printer";
|
|
125
|
+
FormComponents["Descriptions"] = "descriptions";
|
|
126
|
+
FormComponents["RangeUser"] = "range-user";
|
|
127
|
+
FormComponents["GenImage"] = "gen-image";
|
|
128
|
+
FormComponents["TestButton"] = "test-button";
|
|
129
|
+
FormComponents["Iframe"] = "iframe";
|
|
130
|
+
FormComponents["ExcuteButton"] = "medproexcute-button";
|
|
131
|
+
FormComponents["SubDataTable"] = "sub-data-table";
|
|
132
|
+
FormComponents["Signature"] = "signature";
|
|
133
|
+
FormComponents["OnlineForm"] = "online-form";
|
|
134
|
+
FormComponents["TmplTreeSelect"] = "tmpl-tree-select";
|
|
135
|
+
FormComponents["Boolean"] = "boolean";
|
|
136
|
+
FormComponents["BizProcess"] = "biz-process";
|
|
137
|
+
FormComponents["ApprovalHistory"] = "approval-history";
|
|
138
|
+
FormComponents["FlowDiagram"] = "flow-diagram";
|
|
139
|
+
FormComponents["CustomCode"] = "custom-code";
|
|
140
|
+
FormComponents["ApprovalProcess"] = "approval-process";
|
|
141
|
+
return FormComponents;
|
|
142
|
+
}({});
|
|
143
|
+
var SearchComponents = /* @__PURE__ */ function(SearchComponents) {
|
|
144
|
+
SearchComponents["SearchInput"] = "SearchInput";
|
|
145
|
+
SearchComponents["SearchNumberInput"] = "SearchNumberInput";
|
|
146
|
+
SearchComponents["SearchStringNumberInput"] = "SearchStringNumberInput";
|
|
147
|
+
SearchComponents["SearchSwitch"] = "SearchSwitch";
|
|
148
|
+
SearchComponents["SearchDate"] = "SearchDate";
|
|
149
|
+
SearchComponents["SearchDateTime"] = "SearchDateTime";
|
|
150
|
+
SearchComponents["SearchTime"] = "SearchTime";
|
|
151
|
+
SearchComponents["SearchSelect"] = "SearchSelect";
|
|
152
|
+
SearchComponents["SearchUserSelect"] = "SearchUserSelect";
|
|
153
|
+
SearchComponents["SearchRdoSelect"] = "SearchRdoSelect";
|
|
154
|
+
SearchComponents["SearchTransaction"] = "SearchTransaction";
|
|
155
|
+
SearchComponents["SearchTmplTreeSelect"] = "SearchTmplTreeSelect";
|
|
156
|
+
SearchComponents["SearchPrinter"] = "SearchPrinter";
|
|
157
|
+
SearchComponents["SearchBizProcess"] = "SearchBizProcess";
|
|
158
|
+
SearchComponents["SearchSelectRangUser"] = "SearchSelectRangUser";
|
|
159
|
+
SearchComponents["SearchSelectDepartment"] = "SearchSelectDepartment";
|
|
160
|
+
return SearchComponents;
|
|
161
|
+
}({});
|
|
162
|
+
var tableColumnWidthEnum = /* @__PURE__ */ function(tableColumnWidthEnum) {
|
|
163
|
+
/**适配父容器 */
|
|
164
|
+
tableColumnWidthEnum["AUTO_PARENT_BOX"] = "AutoParentBox";
|
|
165
|
+
/**自适应 展示所有*/
|
|
166
|
+
tableColumnWidthEnum["ATUO"] = "selfAdaption";
|
|
167
|
+
/**固定 */
|
|
168
|
+
tableColumnWidthEnum["ENUMERATION"] = "fixed";
|
|
169
|
+
/**百分比 */
|
|
170
|
+
tableColumnWidthEnum["PERCENTAGE"] = "percentage";
|
|
171
|
+
return tableColumnWidthEnum;
|
|
172
|
+
}({});
|
|
173
|
+
var controlConfigEnum = /* @__PURE__ */ function(controlConfigEnum) {
|
|
174
|
+
controlConfigEnum["NULL"] = "NULL";
|
|
175
|
+
controlConfigEnum["STRING"] = "空字符串";
|
|
176
|
+
controlConfigEnum["ZERO"] = "0";
|
|
177
|
+
return controlConfigEnum;
|
|
178
|
+
}({});
|
|
179
|
+
var statisticalMethodEnum = /* @__PURE__ */ function(statisticalMethodEnum) {
|
|
180
|
+
statisticalMethodEnum["TOTAL"] = "total";
|
|
181
|
+
statisticalMethodEnum["AVERAGE"] = "average";
|
|
182
|
+
return statisticalMethodEnum;
|
|
183
|
+
}({});
|
|
184
|
+
var fixedAlignENUM = /* @__PURE__ */ function(fixedAlignENUM) {
|
|
185
|
+
fixedAlignENUM["RIGHT"] = "right";
|
|
186
|
+
fixedAlignENUM["NONE"] = "";
|
|
187
|
+
fixedAlignENUM["LEFT"] = "left";
|
|
188
|
+
return fixedAlignENUM;
|
|
189
|
+
}({});
|
|
190
|
+
var tableColumnTypeEnum = /* @__PURE__ */ function(tableColumnTypeEnum) {
|
|
191
|
+
tableColumnTypeEnum["COLUMN_TEXT"] = "COLUMN_TEXT";
|
|
192
|
+
tableColumnTypeEnum["COLUMN_NUMBER"] = "COLUMN_NUMBER";
|
|
193
|
+
tableColumnTypeEnum["COLUMNTEXT_DATA"] = "COLUMNTEXT_DATA";
|
|
194
|
+
tableColumnTypeEnum["COLUMNTEXT_REF"] = "COLUMNTEXT_REF";
|
|
195
|
+
tableColumnTypeEnum["COLUMNTEXT_ENUM"] = "COLUMNTEXT_ENUM";
|
|
196
|
+
tableColumnTypeEnum["COLUMNTEXT_ORG"] = "COLUMNTEXT_ORG";
|
|
197
|
+
tableColumnTypeEnum["COLUMNTEXT_USER"] = "COLUMNTEXT_USER";
|
|
198
|
+
tableColumnTypeEnum["COLUMNTEXT_BOOLEAN"] = "COLUMNTEXT_BOOLEAN";
|
|
199
|
+
tableColumnTypeEnum["COLUMNTEXT_IMAGE"] = "COLUMNTEXT_IMAGE";
|
|
200
|
+
return tableColumnTypeEnum;
|
|
201
|
+
}({});
|
|
202
|
+
var tabsTypeENUM = /* @__PURE__ */ function(tabsTypeENUM) {
|
|
203
|
+
tabsTypeENUM["LINE"] = "line";
|
|
204
|
+
tabsTypeENUM["CARD"] = "card";
|
|
205
|
+
tabsTypeENUM["TEXt"] = "text";
|
|
206
|
+
tabsTypeENUM["CAPSULE"] = "capsule";
|
|
207
|
+
tabsTypeENUM["CUSTOM"] = "custom";
|
|
208
|
+
return tabsTypeENUM;
|
|
209
|
+
}({});
|
|
210
|
+
var sortTypeEnum = /* @__PURE__ */ function(sortTypeEnum) {
|
|
211
|
+
sortTypeEnum["ASC"] = "asc";
|
|
212
|
+
sortTypeEnum["DESC"] = "desc";
|
|
213
|
+
return sortTypeEnum;
|
|
214
|
+
}({});
|
|
215
|
+
/** 组件类型下拉框枚举 */
|
|
216
|
+
var BindCmpStyleEnum = /* @__PURE__ */ function(BindCmpStyleEnum) {
|
|
217
|
+
/** 单行文本 */
|
|
218
|
+
BindCmpStyleEnum["CMP_TEXT"] = "TEXT";
|
|
219
|
+
/** 多行文本 */
|
|
220
|
+
BindCmpStyleEnum["CMP_TEXTAREA"] = "TEXTAREA";
|
|
221
|
+
/** 电子签名 */
|
|
222
|
+
BindCmpStyleEnum["CMP_ELECTRONICSIGNATURE"] = "ELECTRONICSIGNATURE";
|
|
223
|
+
/** 开关 */
|
|
224
|
+
BindCmpStyleEnum["CMP_BOOLEAN"] = "BOOLEAN";
|
|
225
|
+
/** 下拉列表 */
|
|
226
|
+
BindCmpStyleEnum["CMP_SELECT_LIST"] = "SELECT_LIST";
|
|
227
|
+
/** 单选框 */
|
|
228
|
+
BindCmpStyleEnum["CMP_RADIO"] = "RADIO";
|
|
229
|
+
/** 多选框 */
|
|
230
|
+
BindCmpStyleEnum["CMP_CHECKBOX"] = "CHECKBOX";
|
|
231
|
+
/** 下拉选择 */
|
|
232
|
+
BindCmpStyleEnum["CMP_DROPDOWN_SELECT"] = "dropdownSelection";
|
|
233
|
+
/** 模态框 */
|
|
234
|
+
BindCmpStyleEnum["CMP_MODAL"] = "modalBoxSelection";
|
|
235
|
+
/** 树形选择 */
|
|
236
|
+
BindCmpStyleEnum["CMP_TREE_SELECTION"] = "treeSelection";
|
|
237
|
+
/** 数值 */
|
|
238
|
+
BindCmpStyleEnum["CMP_NUMBER"] = "NUMBER";
|
|
239
|
+
/** 显示币种 */
|
|
240
|
+
BindCmpStyleEnum["CMP_CURRENCY"] = "CURRENCY";
|
|
241
|
+
/** 显示时间 */
|
|
242
|
+
BindCmpStyleEnum["CMP_TIME"] = "TIME";
|
|
243
|
+
return BindCmpStyleEnum;
|
|
244
|
+
}({});
|
|
245
|
+
/** 组件类型下拉框国际化枚举 */
|
|
246
|
+
var Ch_BindCmpStyleEnum = {
|
|
247
|
+
[BindCmpStyleEnum.CMP_TEXT]: "sys.pageDesigner.bindCmpStyle.bindText",
|
|
248
|
+
[BindCmpStyleEnum.CMP_TEXTAREA]: "sys.pageDesigner.bindCmpStyle.bindTextarea",
|
|
249
|
+
[BindCmpStyleEnum.CMP_ELECTRONICSIGNATURE]: "sys.pageDesigner.bindCmpStyle.electronicSignature",
|
|
250
|
+
[BindCmpStyleEnum.CMP_BOOLEAN]: "sys.pageDesigner.bindCmpStyle.bindBoolean",
|
|
251
|
+
[BindCmpStyleEnum.CMP_SELECT_LIST]: "sys.pageDesigner.bindCmpStyle.bindSelectList",
|
|
252
|
+
[BindCmpStyleEnum.CMP_RADIO]: "sys.pageDesigner.bindCmpStyle.bindRadio",
|
|
253
|
+
[BindCmpStyleEnum.CMP_CHECKBOX]: "sys.pageDesigner.bindCmpStyle.bindCheckbox",
|
|
254
|
+
[BindCmpStyleEnum.CMP_DROPDOWN_SELECT]: "sys.pageDesigner.bindCmpStyle.bindDropdownSelect",
|
|
255
|
+
[BindCmpStyleEnum.CMP_MODAL]: "sys.pageDesigner.bindCmpStyle.bindModal",
|
|
256
|
+
[BindCmpStyleEnum.CMP_TREE_SELECTION]: "sys.pageDesigner.bindCmpStyle.bindTreeSelection",
|
|
257
|
+
[BindCmpStyleEnum.CMP_NUMBER]: "sys.pageDesigner.bindCmpStyle.bindNumber",
|
|
258
|
+
[BindCmpStyleEnum.CMP_CURRENCY]: "sys.pageDesigner.bindCmpStyle.bindCurrency",
|
|
259
|
+
[BindCmpStyleEnum.CMP_TIME]: "sys.pageDesigner.bindCmpStyle.bindTime"
|
|
238
260
|
};
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
261
|
+
/** 组件类型下拉框类型 */
|
|
262
|
+
var BindCmpStyleTypeEnum = /* @__PURE__ */ function(BindCmpStyleTypeEnum) {
|
|
263
|
+
BindCmpStyleTypeEnum["BindText"] = "bindText";
|
|
264
|
+
BindCmpStyleTypeEnum["BindLongText"] = "BindLongText";
|
|
265
|
+
BindCmpStyleTypeEnum["BindBool"] = "bindBool";
|
|
266
|
+
BindCmpStyleTypeEnum["BindPerson"] = "bindPerson";
|
|
267
|
+
BindCmpStyleTypeEnum["BindDept"] = "bindDept";
|
|
268
|
+
BindCmpStyleTypeEnum["BindLink"] = "bindLink";
|
|
269
|
+
BindCmpStyleTypeEnum["BindMulti"] = "bindMulti";
|
|
270
|
+
BindCmpStyleTypeEnum["BindNum"] = "bindNum";
|
|
271
|
+
BindCmpStyleTypeEnum["BindDecimal"] = "bindDecimal";
|
|
272
|
+
return BindCmpStyleTypeEnum;
|
|
273
|
+
}({});
|
|
274
|
+
/** 组件类型下拉框类型对应组件类型 */
|
|
275
|
+
var transformBindCmp2CmpType = {
|
|
276
|
+
[BindCmpStyleEnum.CMP_TEXT]: FormComponents.Input,
|
|
277
|
+
[BindCmpStyleEnum.CMP_TEXTAREA]: FormComponents.Textarea,
|
|
278
|
+
[BindCmpStyleEnum.CMP_ELECTRONICSIGNATURE]: FormComponents.ElectronicSignature,
|
|
279
|
+
[BindCmpStyleEnum.CMP_SELECT_LIST]: FormComponents.Select,
|
|
280
|
+
[BindCmpStyleEnum.CMP_RADIO]: FormComponents.Radio,
|
|
281
|
+
[BindCmpStyleEnum.CMP_CHECKBOX]: FormComponents.Checkbox
|
|
258
282
|
};
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
["bindLink" /* BindLink */]: [
|
|
284
|
-
"SELECT_LIST" /* CMP_SELECT_LIST */,
|
|
285
|
-
"RADIO" /* CMP_RADIO */
|
|
286
|
-
],
|
|
287
|
-
["bindMulti" /* BindMulti */]: [
|
|
288
|
-
"SELECT_LIST" /* CMP_SELECT_LIST */,
|
|
289
|
-
"CHECKBOX" /* CMP_CHECKBOX */
|
|
290
|
-
],
|
|
291
|
-
["bindNum" /* BindNum */]: [
|
|
292
|
-
"NUMBER" /* CMP_NUMBER */,
|
|
293
|
-
"CURRENCY" /* CMP_CURRENCY */,
|
|
294
|
-
"TIME" /* CMP_TIME */
|
|
295
|
-
],
|
|
296
|
-
["bindDecimal" /* BindDecimal */]: [
|
|
297
|
-
"NUMBER" /* CMP_NUMBER */,
|
|
298
|
-
"CURRENCY" /* CMP_CURRENCY */
|
|
299
|
-
]
|
|
283
|
+
/** 组件类型下拉框集合 */
|
|
284
|
+
var bindCmpStyleMap = {
|
|
285
|
+
[BindCmpStyleTypeEnum.BindText]: [BindCmpStyleEnum.CMP_TEXT, BindCmpStyleEnum.CMP_TEXTAREA],
|
|
286
|
+
[BindCmpStyleTypeEnum.BindLongText]: [
|
|
287
|
+
BindCmpStyleEnum.CMP_TEXT,
|
|
288
|
+
BindCmpStyleEnum.CMP_TEXTAREA,
|
|
289
|
+
BindCmpStyleEnum.CMP_ELECTRONICSIGNATURE
|
|
290
|
+
],
|
|
291
|
+
[BindCmpStyleTypeEnum.BindBool]: [
|
|
292
|
+
BindCmpStyleEnum.CMP_BOOLEAN,
|
|
293
|
+
BindCmpStyleEnum.CMP_SELECT_LIST,
|
|
294
|
+
BindCmpStyleEnum.CMP_RADIO,
|
|
295
|
+
BindCmpStyleEnum.CMP_CHECKBOX
|
|
296
|
+
],
|
|
297
|
+
[BindCmpStyleTypeEnum.BindPerson]: [BindCmpStyleEnum.CMP_DROPDOWN_SELECT, BindCmpStyleEnum.CMP_MODAL],
|
|
298
|
+
[BindCmpStyleTypeEnum.BindDept]: [BindCmpStyleEnum.CMP_TREE_SELECTION, BindCmpStyleEnum.CMP_MODAL],
|
|
299
|
+
[BindCmpStyleTypeEnum.BindLink]: [BindCmpStyleEnum.CMP_SELECT_LIST, BindCmpStyleEnum.CMP_RADIO],
|
|
300
|
+
[BindCmpStyleTypeEnum.BindMulti]: [BindCmpStyleEnum.CMP_SELECT_LIST, BindCmpStyleEnum.CMP_CHECKBOX],
|
|
301
|
+
[BindCmpStyleTypeEnum.BindNum]: [
|
|
302
|
+
BindCmpStyleEnum.CMP_NUMBER,
|
|
303
|
+
BindCmpStyleEnum.CMP_CURRENCY,
|
|
304
|
+
BindCmpStyleEnum.CMP_TIME
|
|
305
|
+
],
|
|
306
|
+
[BindCmpStyleTypeEnum.BindDecimal]: [BindCmpStyleEnum.CMP_NUMBER, BindCmpStyleEnum.CMP_CURRENCY]
|
|
300
307
|
};
|
|
301
|
-
var buttonShowType = /* @__PURE__ */ (
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
FIELD_TYPE.RANGE_USER,
|
|
338
|
-
FIELD_TYPE.MESSAGE_TMPL
|
|
308
|
+
var buttonShowType = /* @__PURE__ */ function(buttonShowType) {
|
|
309
|
+
buttonShowType["FOLD_ALL"] = "foldAll";
|
|
310
|
+
buttonShowType["FOLD_PART"] = "foldPart";
|
|
311
|
+
return buttonShowType;
|
|
312
|
+
}({});
|
|
313
|
+
/** 支持查询的字段类型 */
|
|
314
|
+
var searchListByFieldType = [
|
|
315
|
+
FIELD_TYPE.BOOLEAN,
|
|
316
|
+
FIELD_TYPE.DATE,
|
|
317
|
+
FIELD_TYPE.DATE_TIME,
|
|
318
|
+
FIELD_TYPE.DECIMAL,
|
|
319
|
+
FIELD_TYPE.DOUBLE,
|
|
320
|
+
FIELD_TYPE.ENUM,
|
|
321
|
+
FIELD_TYPE.ENUM_MULTI,
|
|
322
|
+
FIELD_TYPE.INTEGER,
|
|
323
|
+
FIELD_TYPE.LONG,
|
|
324
|
+
FIELD_TYPE.LONG_TEXT,
|
|
325
|
+
FIELD_TYPE.TEXT,
|
|
326
|
+
FIELD_TYPE.USER_MULTI,
|
|
327
|
+
FIELD_TYPE.USER,
|
|
328
|
+
FIELD_TYPE.TIME,
|
|
329
|
+
FIELD_TYPE.REF_MULTI,
|
|
330
|
+
FIELD_TYPE.REF,
|
|
331
|
+
FIELD_TYPE.RDO_REF,
|
|
332
|
+
FIELD_TYPE.ORG_MULTI,
|
|
333
|
+
FIELD_TYPE.ORG,
|
|
334
|
+
FIELD_TYPE.SERIAL,
|
|
335
|
+
FIELD_TYPE.ONLINE_FORM_TEMPLATE,
|
|
336
|
+
FIELD_TYPE.E_DHR_TEMPLATE,
|
|
337
|
+
FIELD_TYPE.PRINTER,
|
|
338
|
+
FIELD_TYPE.LABEL_TEMPLATE_REF,
|
|
339
|
+
FIELD_TYPE.Biz_Process,
|
|
340
|
+
FIELD_TYPE.DOCUMENT_TEMPLATE,
|
|
341
|
+
FIELD_TYPE.TRANSACTION,
|
|
342
|
+
FIELD_TYPE.RANGE_USER,
|
|
343
|
+
FIELD_TYPE.MESSAGE_TMPL
|
|
339
344
|
];
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
FIELD_TYPE.TRANSACTION,
|
|
371
|
-
// FIELD_TYPE.RANGE_USER,
|
|
372
|
-
FIELD_TYPE.MESSAGE_TMPL
|
|
345
|
+
/** mobile 支持查询的字段类型 */
|
|
346
|
+
var mobileSearchListByFieldType = [
|
|
347
|
+
FIELD_TYPE.BOOLEAN,
|
|
348
|
+
FIELD_TYPE.DATE,
|
|
349
|
+
FIELD_TYPE.DATE_TIME,
|
|
350
|
+
FIELD_TYPE.DECIMAL,
|
|
351
|
+
FIELD_TYPE.DOUBLE,
|
|
352
|
+
FIELD_TYPE.ENUM,
|
|
353
|
+
FIELD_TYPE.ENUM_MULTI,
|
|
354
|
+
FIELD_TYPE.INTEGER,
|
|
355
|
+
FIELD_TYPE.LONG,
|
|
356
|
+
FIELD_TYPE.LONG_TEXT,
|
|
357
|
+
FIELD_TYPE.TEXT,
|
|
358
|
+
FIELD_TYPE.USER_MULTI,
|
|
359
|
+
FIELD_TYPE.USER,
|
|
360
|
+
FIELD_TYPE.TIME,
|
|
361
|
+
FIELD_TYPE.REF_MULTI,
|
|
362
|
+
FIELD_TYPE.REF,
|
|
363
|
+
FIELD_TYPE.RDO_REF,
|
|
364
|
+
FIELD_TYPE.ORG_MULTI,
|
|
365
|
+
FIELD_TYPE.ORG,
|
|
366
|
+
FIELD_TYPE.SERIAL,
|
|
367
|
+
FIELD_TYPE.ONLINE_FORM_TEMPLATE,
|
|
368
|
+
FIELD_TYPE.E_DHR_TEMPLATE,
|
|
369
|
+
FIELD_TYPE.PRINTER,
|
|
370
|
+
FIELD_TYPE.LABEL_TEMPLATE_REF,
|
|
371
|
+
FIELD_TYPE.Biz_Process,
|
|
372
|
+
FIELD_TYPE.DOCUMENT_TEMPLATE,
|
|
373
|
+
FIELD_TYPE.TRANSACTION,
|
|
374
|
+
FIELD_TYPE.MESSAGE_TMPL
|
|
373
375
|
];
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
// FIELD_TYPE.E_DHR_TEMPLATE,
|
|
400
|
-
FIELD_TYPE.PRINTER,
|
|
401
|
-
FIELD_TYPE.LABEL_TEMPLATE_REF,
|
|
402
|
-
// FIELD_TYPE.Biz_Process,
|
|
403
|
-
// FIELD_TYPE.DOCUMENT_TEMPLATE,
|
|
404
|
-
FIELD_TYPE.TRANSACTION
|
|
405
|
-
// FIELD_TYPE.RANGE_USER,
|
|
406
|
-
// FIELD_TYPE.MESSAGE_TMPL,
|
|
376
|
+
/** 支持查询的字段类型 */
|
|
377
|
+
var padSearchListByFieldType = [
|
|
378
|
+
FIELD_TYPE.BOOLEAN,
|
|
379
|
+
FIELD_TYPE.DATE,
|
|
380
|
+
FIELD_TYPE.DATE_TIME,
|
|
381
|
+
FIELD_TYPE.DECIMAL,
|
|
382
|
+
FIELD_TYPE.DOUBLE,
|
|
383
|
+
FIELD_TYPE.ENUM,
|
|
384
|
+
FIELD_TYPE.ENUM_MULTI,
|
|
385
|
+
FIELD_TYPE.INTEGER,
|
|
386
|
+
FIELD_TYPE.LONG,
|
|
387
|
+
FIELD_TYPE.LONG_TEXT,
|
|
388
|
+
FIELD_TYPE.TEXT,
|
|
389
|
+
FIELD_TYPE.USER_MULTI,
|
|
390
|
+
FIELD_TYPE.USER,
|
|
391
|
+
FIELD_TYPE.TIME,
|
|
392
|
+
FIELD_TYPE.REF_MULTI,
|
|
393
|
+
FIELD_TYPE.REF,
|
|
394
|
+
FIELD_TYPE.RDO_REF,
|
|
395
|
+
FIELD_TYPE.ORG_MULTI,
|
|
396
|
+
FIELD_TYPE.ORG,
|
|
397
|
+
FIELD_TYPE.SERIAL,
|
|
398
|
+
FIELD_TYPE.PRINTER,
|
|
399
|
+
FIELD_TYPE.LABEL_TEMPLATE_REF,
|
|
400
|
+
FIELD_TYPE.TRANSACTION
|
|
407
401
|
];
|
|
408
|
-
var SCOPEINFO = /* @__PURE__ */ (
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
402
|
+
var SCOPEINFO = /* @__PURE__ */ function(SCOPEINFO) {
|
|
403
|
+
/**字段列表 */
|
|
404
|
+
SCOPEINFO["FIELD_LIST"] = "fieldList";
|
|
405
|
+
/**字段表单*/
|
|
406
|
+
SCOPEINFO["FIELD_FORM"] = "fieldForm";
|
|
407
|
+
return SCOPEINFO;
|
|
408
|
+
}({});
|
|
409
|
+
//#endregion
|
|
414
410
|
export { BindCmpStyleEnum, BindCmpStyleTypeEnum, Ch_BindCmpStyleEnum, FormComponents, SCOPE, SCOPEINFO, SearchComponents, bindCmpStyleMap, buttonShowType, controlConfigEnum, fixedAlignENUM, mobileSearchListByFieldType, padSearchListByFieldType, searchListByFieldType, sortTypeEnum, statisticalMethodEnum, tableColumnTypeEnum, tableColumnWidthEnum, tabsTypeENUM, transformBindCmp2CmpType };
|