@byteluck-fe/model-driven-driven 4.41.0-lx0 → 5.3.1-1-zt
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/esm/Builder.js +46 -31
- package/dist/esm/Driven.js +2 -1
- package/dist/esm/Store.js +9 -9
- package/dist/esm/constants.js +7 -6
- package/dist/esm/designerUtils.js +8 -3
- package/dist/esm/utils.js +8 -75
- package/dist/index.umd.js +3 -3
- package/dist/types/Builder.d.ts +2 -1
- package/dist/types/Driven.d.ts +2 -0
- package/dist/types/designerUtils.d.ts +0 -1
- package/dist/types/utils.d.ts +1 -15
- package/package.json +6 -6
package/dist/esm/Builder.js
CHANGED
|
@@ -30,6 +30,7 @@ function _define_property(obj, key, value) {
|
|
|
30
30
|
}
|
|
31
31
|
return obj;
|
|
32
32
|
}
|
|
33
|
+
import { getLocaleText } from '@byteluck-fe/locale-message';
|
|
33
34
|
import Designer from './Designer';
|
|
34
35
|
import { CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
|
|
35
36
|
export var Builder = /*#__PURE__*/ function() {
|
|
@@ -97,39 +98,53 @@ export var Builder = /*#__PURE__*/ function() {
|
|
|
97
98
|
listview.children.push(simpleSearch);
|
|
98
99
|
// @ts-ignore
|
|
99
100
|
listview.children.push(gridTable);
|
|
100
|
-
listview.props.
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
101
|
+
listview.props.rowStyle = {
|
|
102
|
+
type: 'rules',
|
|
103
|
+
"interval": {
|
|
104
|
+
"color": ""
|
|
105
|
+
},
|
|
106
|
+
rules: [
|
|
105
107
|
{
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
'
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
108
|
+
id: 'default',
|
|
109
|
+
name: getLocaleText('CMD.approvedDocuments', null, '审批通过单据'),
|
|
110
|
+
color: 'theme',
|
|
111
|
+
filters: [
|
|
112
|
+
{
|
|
113
|
+
ruleId: 1,
|
|
114
|
+
symbol: 'op_equal',
|
|
115
|
+
leftVariableBo: {
|
|
116
|
+
type: 'varchar',
|
|
117
|
+
value: 'process_status',
|
|
118
|
+
name: getLocaleText('CMD.processStatus', null, '流程状态')
|
|
119
|
+
},
|
|
120
|
+
checked: false,
|
|
121
|
+
describe: 'ruleLine',
|
|
122
|
+
type: 'condition',
|
|
123
|
+
rightVariableBo: {
|
|
124
|
+
type: 'custom',
|
|
125
|
+
value: [
|
|
126
|
+
'COMPLETE'
|
|
127
|
+
],
|
|
128
|
+
displayBos: []
|
|
129
|
+
},
|
|
130
|
+
isLowPerformance: false,
|
|
131
|
+
isMoreRelation: false
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"settings": [
|
|
135
|
+
{
|
|
136
|
+
"color": "theme",
|
|
137
|
+
"field_codes": [
|
|
138
|
+
"process_status"
|
|
139
|
+
],
|
|
140
|
+
"type": "fontColor",
|
|
141
|
+
"scope": "col"
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
script: "(SpecialMatch(data,sys,'process_status','varchar','op_equal','COMPLETE'))"
|
|
125
145
|
}
|
|
126
146
|
]
|
|
127
|
-
}
|
|
128
|
-
listview.props.rowStyleRulesScript.push({
|
|
129
|
-
id: 'default',
|
|
130
|
-
script: "(params.data['process_status']==='COMPLETE')",
|
|
131
|
-
color: 'theme'
|
|
132
|
-
});
|
|
147
|
+
};
|
|
133
148
|
return listview;
|
|
134
149
|
}
|
|
135
150
|
},
|
|
@@ -157,7 +172,7 @@ export var Builder = /*#__PURE__*/ function() {
|
|
|
157
172
|
var grid = this.designer.createControlInstance(// @ts-ignore
|
|
158
173
|
CONTROL_TYPE.GRID);
|
|
159
174
|
var vueFormItem = this.designer.createControlInstance(// @ts-ignore
|
|
160
|
-
CONTROL_TYPE.
|
|
175
|
+
CONTROL_TYPE.VUE_PAGE);
|
|
161
176
|
// @ts-ignore
|
|
162
177
|
vueFormItem.props.isHideCaption = true;
|
|
163
178
|
// @ts-ignore
|
package/dist/esm/Driven.js
CHANGED
|
@@ -186,6 +186,7 @@ import { Designer } from './Designer';
|
|
|
186
186
|
import EventLogic from './EventLogic';
|
|
187
187
|
import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from './utils';
|
|
188
188
|
import { Group, initSettings, Tab } from '@byteluck-fe/model-driven-settings';
|
|
189
|
+
import { DEFAULT_LOCALE } from '@byteluck-fe/model-driven-shared';
|
|
189
190
|
// 当前正在注册的插件名称
|
|
190
191
|
var applyingPluginName = '';
|
|
191
192
|
/**
|
|
@@ -211,7 +212,7 @@ var applyingPluginName = '';
|
|
|
211
212
|
_define_property(_this, "getModelBindInfoList", getModelBindInfoList), // TODO 拿到permission_controls
|
|
212
213
|
_define_property(_this, "generatePermissions", generatePermissions);
|
|
213
214
|
_this.$options = Object.freeze(options);
|
|
214
|
-
var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? false : _this_$options_autoMount, tmp = _this_$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _this_$options.schema, _this_$options_mode = _this_$options.mode, mode = _this_$options_mode === void 0 ? 'form' : _this_$options_mode, tmp1 = _this_$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1;
|
|
215
|
+
var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? false : _this_$options_autoMount, tmp = _this_$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _this_$options.schema, _this_$options_mode = _this_$options.mode, mode = _this_$options_mode === void 0 ? 'form' : _this_$options_mode, tmp1 = _this_$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1, messagesI18n = _this_$options.messagesI18n, _this_$options_language = _this_$options.language, language = _this_$options_language === void 0 ? DEFAULT_LOCALE : _this_$options_language;
|
|
215
216
|
_this.eventLogic = new EventLogic();
|
|
216
217
|
_this.designer = new DesignerClass();
|
|
217
218
|
_this.store = new Store(_object_spread({
|
package/dist/esm/Store.js
CHANGED
|
@@ -89,7 +89,7 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
89
89
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
90
90
|
}
|
|
91
91
|
import { isDataBind } from '@byteluck-fe/model-driven-core';
|
|
92
|
-
import { hasChildrenControl,
|
|
92
|
+
import { hasChildrenControl, hasHeaderControl } from './designerUtils';
|
|
93
93
|
import { CONTROL_BASE_TYPE, CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
|
|
94
94
|
// 维护当前selected,。。 selectedControlSetting
|
|
95
95
|
export var Store = /*#__PURE__*/ function() {
|
|
@@ -294,9 +294,11 @@ function setInstanceInDataFieldCodeMap(instance, dataFieldCodeMap) {
|
|
|
294
294
|
if (isDataBind(dataBind)) {
|
|
295
295
|
setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance);
|
|
296
296
|
} else {
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
297
|
+
if (dataBind) {
|
|
298
|
+
Object.values(dataBind).forEach(function(subDataBind) {
|
|
299
|
+
setDataFieldCodeMap(dataFieldCodeMap, subDataBind, instance);
|
|
300
|
+
});
|
|
301
|
+
}
|
|
300
302
|
}
|
|
301
303
|
}
|
|
302
304
|
}
|
|
@@ -312,11 +314,9 @@ export function loop(instances, callback) {
|
|
|
312
314
|
if (hasHeaderControl(item)) {
|
|
313
315
|
loop(item.props.headers, callback);
|
|
314
316
|
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
loop((_item_props_footers = (_item_props = item.props) === null || _item_props === void 0 ? void 0 : _item_props.footers) !== null && _item_props_footers !== void 0 ? _item_props_footers : [], callback);
|
|
319
|
-
}
|
|
317
|
+
// if(item)) {
|
|
318
|
+
// loop(item.props?.footers ?? [], callback)
|
|
319
|
+
// }
|
|
320
320
|
});
|
|
321
321
|
}
|
|
322
322
|
export function isDataScopeInstance(instance) {
|
package/dist/esm/constants.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { getLocaleText } from '@byteluck-fe/locale-message';
|
|
1
2
|
import { CONTROL_TYPE, FieldTypes } from '@byteluck-fe/model-driven-shared';
|
|
2
3
|
// 使用ObjectDataBind 的控件
|
|
3
4
|
export var objectDataBindControlTypes = [
|
|
@@ -7,27 +8,27 @@ export var objectDataBindControlTypes = [
|
|
|
7
8
|
];
|
|
8
9
|
export var objectDataBindKeyToFieldType = {
|
|
9
10
|
amount: {
|
|
10
|
-
caption: '金额',
|
|
11
|
+
caption: getLocaleText('CMD.amount', null, '金额'),
|
|
11
12
|
fieldType: FieldTypes.DECIMAL
|
|
12
13
|
},
|
|
13
14
|
currency: {
|
|
14
|
-
caption: '币种',
|
|
15
|
+
caption: getLocaleText('CMD.currency', null, '币种'),
|
|
15
16
|
fieldType: FieldTypes.VARCHAR
|
|
16
17
|
},
|
|
17
18
|
result: {
|
|
18
|
-
caption: '结果',
|
|
19
|
+
caption: getLocaleText('CMD.result', null, '结果'),
|
|
19
20
|
fieldType: FieldTypes.DECIMAL
|
|
20
21
|
},
|
|
21
22
|
unit: {
|
|
22
|
-
caption: '单位',
|
|
23
|
+
caption: getLocaleText('CMD.unit', null, '单位'),
|
|
23
24
|
fieldType: FieldTypes.VARCHAR
|
|
24
25
|
},
|
|
25
26
|
min: {
|
|
26
|
-
caption: '开始时间',
|
|
27
|
+
caption: getLocaleText('CMD.startTime', null, '开始时间'),
|
|
27
28
|
fieldType: FieldTypes.TIMESTAMP
|
|
28
29
|
},
|
|
29
30
|
max: {
|
|
30
|
-
caption: '结束时间',
|
|
31
|
+
caption: getLocaleText('CMD.endTime', null, '结束时间'),
|
|
31
32
|
fieldType: FieldTypes.TIMESTAMP
|
|
32
33
|
}
|
|
33
34
|
};
|
|
@@ -5,9 +5,14 @@ export function hasChildrenControl(instance) {
|
|
|
5
5
|
export function hasHeaderControl(instance) {
|
|
6
6
|
return 'headers' in instance.props && isArray(instance.props.headers);
|
|
7
7
|
}
|
|
8
|
-
export function hasFooterControl(
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
// export function hasFooterControl(
|
|
9
|
+
// instance: DesignerControl
|
|
10
|
+
// ): instance is DesignerListControl {
|
|
11
|
+
// return (
|
|
12
|
+
// 'footers' in instance.props &&
|
|
13
|
+
// isArray((instance as DesignerListControl).props.footers)
|
|
14
|
+
// )
|
|
15
|
+
// }
|
|
11
16
|
export function loopFormControl(control, callback) {
|
|
12
17
|
if (Array.isArray(control)) {
|
|
13
18
|
control.map(function(item) {
|
package/dist/esm/utils.js
CHANGED
|
@@ -177,9 +177,11 @@ function _ts_generator(thisArg, body) {
|
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
import { loopFormControl } from './designerUtils';
|
|
180
|
-
import { CONTROL_BASE_TYPE, CONTROL_TYPE,
|
|
181
|
-
|
|
182
|
-
|
|
180
|
+
import { CONTROL_BASE_TYPE, CONTROL_TYPE, // FieldTypes,
|
|
181
|
+
// FieldTypeToColumnType,
|
|
182
|
+
isArray } from '@byteluck-fe/model-driven-shared';
|
|
183
|
+
import { objectDataBindControlTypes } from './constants';
|
|
184
|
+
import { getLocaleText } from '@byteluck-fe/locale-message';
|
|
183
185
|
export function getMasterFormControls(controls) {
|
|
184
186
|
var formctls = [];
|
|
185
187
|
// @ts-ignore
|
|
@@ -225,75 +227,6 @@ function fieldCodeBeforeAddPrefix(fieldCode) {
|
|
|
225
227
|
}
|
|
226
228
|
return prefix + fieldCode;
|
|
227
229
|
}
|
|
228
|
-
/**
|
|
229
|
-
* @description 通过fieldType获取列表表头的type
|
|
230
|
-
* */ export function getColumnTypeFromFiledType(fieldType) {
|
|
231
|
-
return FieldTypeToColumnType[fieldType];
|
|
232
|
-
}
|
|
233
|
-
/**
|
|
234
|
-
* @description 通过modelBindInfoList生成多个columns
|
|
235
|
-
* */ export function getColumnsFromModelBindInfoList(modelBindInfoList) {
|
|
236
|
-
var designer = new Designer();
|
|
237
|
-
var columns = [];
|
|
238
|
-
modelBindInfoList.forEach(function(item) {
|
|
239
|
-
// 控件在明细子表内或者没有dataBind的话 不做生成
|
|
240
|
-
if (item.parentId || !item.dataBind) return;
|
|
241
|
-
// 如果是对象形式的dataBind的话
|
|
242
|
-
if (objectDataBindControlTypes.includes(item.type)) {
|
|
243
|
-
var objectDataBind = item.dataBind;
|
|
244
|
-
var datasourceBind = item.datasourceBind;
|
|
245
|
-
// 对象的每一个key生成一个column
|
|
246
|
-
Object.keys(objectDataBind).forEach(function(key) {
|
|
247
|
-
// 对应的dataBind
|
|
248
|
-
var dataBind = objectDataBind[key];
|
|
249
|
-
// 当前key对应的fieldType
|
|
250
|
-
var fieldType = objectDataBindKeyToFieldType[key].fieldType;
|
|
251
|
-
// 拼接当前列的caption
|
|
252
|
-
var caption = item.caption + '_' + objectDataBindKeyToFieldType[key].caption;
|
|
253
|
-
// 通过fieldType获取列类型
|
|
254
|
-
var controlType = getColumnTypeFromFiledType(fieldType);
|
|
255
|
-
if (!controlType) return;
|
|
256
|
-
var props = {
|
|
257
|
-
caption: caption,
|
|
258
|
-
dataBind: dataBind
|
|
259
|
-
};
|
|
260
|
-
if (key === 'currency') {
|
|
261
|
-
props.optionConfig = 'datasource';
|
|
262
|
-
props.datasourceBind = datasourceBind;
|
|
263
|
-
}
|
|
264
|
-
// @ts-ignore
|
|
265
|
-
var column = designer.createControlInstance(controlType, {
|
|
266
|
-
props: props
|
|
267
|
-
});
|
|
268
|
-
column && columns.push(column);
|
|
269
|
-
});
|
|
270
|
-
} else {
|
|
271
|
-
var controlType = getColumnTypeFromFiledType(item.fieldType);
|
|
272
|
-
if (!controlType) return;
|
|
273
|
-
// @ts-ignore
|
|
274
|
-
var column = designer.createControlInstance(controlType, {
|
|
275
|
-
props: {
|
|
276
|
-
caption: item.caption,
|
|
277
|
-
dataBind: item.dataBind,
|
|
278
|
-
datasourceBind: item.datasourceBind
|
|
279
|
-
}
|
|
280
|
-
});
|
|
281
|
-
column && columns.push(column);
|
|
282
|
-
}
|
|
283
|
-
});
|
|
284
|
-
return columns;
|
|
285
|
-
}
|
|
286
|
-
export function getColumnsFromFiledType(fieldTypes) {
|
|
287
|
-
var designer = new Designer();
|
|
288
|
-
var fieldTypesMap = Array.isArray(fieldTypes) ? fieldTypes : [
|
|
289
|
-
fieldTypes
|
|
290
|
-
];
|
|
291
|
-
var result = fieldTypesMap.map(function(fieldType) {
|
|
292
|
-
var columnType = getColumnTypeFromFiledType(fieldType);
|
|
293
|
-
return designer.createControlInstance(columnType);
|
|
294
|
-
});
|
|
295
|
-
return Array.isArray(fieldTypes) ? result : result[0];
|
|
296
|
-
}
|
|
297
230
|
function toSchema(schema) {
|
|
298
231
|
if (Array.isArray(schema)) {
|
|
299
232
|
return schema.map(function(item) {
|
|
@@ -383,15 +316,15 @@ var cannotEditControlTypes = [
|
|
|
383
316
|
var LIST_OPERATION_BUTTON_PERMISSIONS_MAPS = {
|
|
384
317
|
check: {
|
|
385
318
|
id: 'listPageCheckBtnId',
|
|
386
|
-
caption: '查看'
|
|
319
|
+
caption: getLocaleText('CMD.view', null, '查看')
|
|
387
320
|
},
|
|
388
321
|
edit: {
|
|
389
322
|
id: 'listPageEditBtnId',
|
|
390
|
-
caption: '编辑'
|
|
323
|
+
caption: getLocaleText('CMD.edit', null, '编辑')
|
|
391
324
|
},
|
|
392
325
|
delete: {
|
|
393
326
|
id: 'listPageDeleteBtnId',
|
|
394
|
-
caption: '删除'
|
|
327
|
+
caption: getLocaleText('CMD.delete', null, '删除')
|
|
395
328
|
}
|
|
396
329
|
};
|
|
397
330
|
// 生成权限字段
|
package/dist/index.umd.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var wd=Object.defineProperty;var Kr=Object.getOwnPropertySymbols;var Bd=Object.prototype.hasOwnProperty,Sd=Object.prototype.propertyIsEnumerable;var Jr=(b,O,$)=>O in b?wd(b,O,{enumerable:!0,configurable:!0,writable:!0,value:$}):b[O]=$,de=(b,O)=>{for(var $ in O||(O={}))Bd.call(O,$)&&Jr(b,$,O[$]);if(Kr)for(var $ of Kr(O))Sd.call(O,$)&&Jr(b,$,O[$]);return b};var cn=(b,O,$)=>new Promise((Ze,Ie)=>{var Ye=G=>{try{pe($.next(G))}catch(he){Ie(he)}},et=G=>{try{pe($.throw(G))}catch(he){Ie(he)}},pe=G=>G.done?Ze(G.value):Promise.resolve(G.value).then(Ye,et);pe(($=$.apply(b,O)).next())});(function(b,O){typeof exports=="object"&&typeof module!="undefined"?O(exports):typeof define=="function"&&define.amd?define(["exports"],O):(b=typeof globalThis!="undefined"?globalThis:b||self,O(b.modelDrivenDriven={}))})(this,function(b){"use strict";var O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",$="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Ze="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Ie="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ye="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",et="{caption}\u5FC5\u586B",pe="\u8BF7\u8F93\u5165\u6807\u9898",G="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",he="\u8BF7\u8F93\u5165\u884C\u6807\u9898",Xr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Qr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zr="\u8BF7\u7ED1\u5B9A\u8868\u5355",Yr="\u8BF7\u7ED1\u5B9A\u5217\u8868",ei="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",ti="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ni="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ri="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ii="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ui="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",oi="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ai="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",li="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",si="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",ci="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",fi="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",di="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",pi="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",hi="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",yi="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",vi="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",_i="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",gi="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",mi="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",bi="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ei="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",wi="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Bi="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Si="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ai="\u8BF7\u9009\u62E9\u7701",Fi="\u8BF7\u9009\u62E9\u5E02",Ci="\u8BF7\u9009\u62E9\u533A",Ii="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Oi="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",$i="\u8BF7\u8F93\u5165\u5217\u5BBD",Pi="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Di="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Ti="\u8BF7\u9009\u62E9\u63A7\u4EF6",Mi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ri="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",xi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Li="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ji="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",qi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ni="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ui="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ki="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Vi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Gi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Hi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",zi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Wi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ki="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Ji="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Xi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Qi="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Yi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",eu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",tu="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",nu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",ru="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",iu="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",uu="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ou="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",au={isNotNumber:O,isNotString:$,isNotObject:Ze,isNotArray:Ie,isNotBoolean:Ye,runtimeRequired:et,pleaseEnterCaption:pe,pleaseEnterCaptionTip:G,pleaseEnterRowCaption:he,pleaseEnterPlaceholder:Xr,pleaseEnterFieldCode:Qr,pleaseEnterForm:Zr,pleaseEnterList:Yr,pleaseEnterProcess:ei,pleaseEnterLabel:ti,pleaseEnterValue:ni,bizKeyNotBindFiled:ri,pleaseSelectOneField:ii,pleaseEnterNumberRange:ui,pleaseEnterAValueGreaterThanMin:oi,pleaseEnterAValueLessThanMax:ai,numberRangeSetError:li,stringRangeError:si,attachmentMaxSize:ci,pleaseEnterTotalScoreSetting:fi,theTotalScoreMustNotBeLessThan1:di,scoreDefaultValueRange:pi,attachmentLimitError:hi,PleaseReselectTheOptionalQuantity:yi,TheMaximumLengthIsGreaterThanTheMinimumLength:vi,TheMinimumLengthIsGreaterThanTheMaximumLength:_i,PleaseSelectTheCorrectOptionSettings:gi,optionIdIsRepeat:mi,optionIsRequired:bi,pleaseEnterDataCode:Ei,pleaseEnterValueFieldCode:wi,pleaseEnterSvcCode:Bi,pleaseBindAtLeastOneDisplayValue:Si,pleaseSelectProvince:Ai,pleaseSelectCity:Fi,pleaseSelectDistrict:Ci,limitRowsCannotBeLessThan0:Ii,TheNumberOfRowsCannotBeLessThanMinRows:Oi,pleaseEnterColumnWidth:$i,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Pi,pleaseCompleteAllRulesAndConditions:Di,pleaseSelectControl:Ti,pleaseSelectAtLeastOneColumn:Mi,pleaseSelectFillBackMode:Ri,pleaseSelectDashboard:xi,rootNodeIsRequired:Li,theViewNameCannotBeEmpty:ji,pleaseSelectOcrType:qi,pleaseSelectAtLeastOneFieldToFillIn:Ni,pleaseChooseAtLeastOne:Ui,pleaseEnterButtonContent:ki,pleaseEnterDataCodeInDataSetting:Vi,pleaseEnterValueFieldCodeInDataSetting:Gi,pleaseEnterSvcCodeInDataSetting:Hi,pleaseBindAtLeastOneDisplayValueInDataSetting:zi,rootNodeIsRequiredInDataSetting:Wi,pleaseEnterMaxHeight:Ki,pleaseEnter:Ji,pleaseEnterWatermark:Xi,pleaseEnterFileName:Qi,pleaseUploadAtLeastOnePrintTemplate:Zi,pleaseAssignBusiness:Yi,pleaseAssignExternal:eu,pleaseEnterAliasCode:tu,pleaseSelectDataCode:nu,pleaseSelectSvcCode:ru,pleaseSelectJoinFieldCode:iu,pleaseSelectMainFieldCode:uu,pleaseSelectSortFieldCode:ou},lu="Please enter a number",su="Please enter a string",cu="Please enter an object",fu="Please enter an array",du="Please enter a boolean",pu="{caption} Required",hu="Please enter the title",yu="Please enter the bubble prompt",vu="Please enter the row title",_u="Please enter the prompt text",gu="Please bind data items",mu="Please bind the form",bu="Please bind the list",Eu="Please bind the process",wu="Please enter the displayed value",Bu="Please enter the stored value",Su="The document number is not bound to the data item",Au="Please select at least one display field",Fu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Cu="Please enter a value greater than or equal to {min}",Iu="Please enter a value less than or equal to {max}",Ou="The value range is set incorrectly",$u="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Pu="The attachment size must be between 0MB and 1000MB",Du="Please fill in the total score setting",Tu="The total score cannot be less than 1",Mu="The default value must be between {min} and {max}",Ru="The number of attachments uploaded must be between {min} and {max}",xu="Please re-select the optional quantity",Lu="The maximum length of the control must be greater than the minimum length",ju="The minimum length of the control must be less than the maximum length",qu="Please select the correct option setting",Nu="Option ID cannot be repeated",Uu="Please enter at least one option",ku="Please bind the data source",Vu="Please bind the stored value",Gu="Please bind the service",Hu="At least one display value must be bound",zu="Please select a province",Wu="Please select a city",Ku="Please select a district",Ju="The minimum number of lines to fill in cannot be less than 0",Xu="The number of rows cannot be less than {min} rows",Qu="Please enter the column width",Zu="Please set the logical relationship of all rule conditions",Yu="Please complete all rules and conditions",eo="please select control",to="Please select the dashboard",no="View name cannot be empty",ro="Please select recognition type",io="Please select at least one field to fill in",uo="Please select at least one",oo="Please enter the button title",ao="Please bind the business model in the data settings",lo="Please bind storage values in data settings",so="Please bind the service in the data settings",co="Please bind at least one display value in the data settings",fo="Please select the root node in the data settings",po="Please enter the maximum height",ho="The input content cannot be empty",yo="Watermark cannot be empty",vo="File name cannot be empty",_o="Please upload at least one printing template!\uFF01",go="Please select a specific business department",mo="Please select a specified external organization",bo="Please enter a sub table alias",Eo="Please select the associated table to set the business model",wo="Please select the association table to set the binding service",Bo="Select associated sub table fields",So="Please select the associated main table field",Ao="Please select the sort field",Fo={isNotNumber:lu,isNotString:su,isNotObject:cu,isNotArray:fu,isNotBoolean:du,runtimeRequired:pu,pleaseEnterCaption:hu,pleaseEnterCaptionTip:yu,pleaseEnterRowCaption:vu,pleaseEnterPlaceholder:_u,pleaseEnterFieldCode:gu,pleaseEnterForm:mu,pleaseEnterList:bu,pleaseEnterProcess:Eu,pleaseEnterLabel:wu,pleaseEnterValue:Bu,bizKeyNotBindFiled:Su,pleaseSelectOneField:Au,pleaseEnterNumberRange:Fu,pleaseEnterAValueGreaterThanMin:Cu,pleaseEnterAValueLessThanMax:Iu,numberRangeSetError:Ou,stringRangeError:$u,attachmentMaxSize:Pu,pleaseEnterTotalScoreSetting:Du,theTotalScoreMustNotBeLessThan1:Tu,scoreDefaultValueRange:Mu,attachmentLimitError:Ru,PleaseReselectTheOptionalQuantity:xu,TheMaximumLengthIsGreaterThanTheMinimumLength:Lu,TheMinimumLengthIsGreaterThanTheMaximumLength:ju,PleaseSelectTheCorrectOptionSettings:qu,optionIdIsRepeat:Nu,optionIsRequired:Uu,pleaseEnterDataCode:ku,pleaseEnterValueFieldCode:Vu,pleaseEnterSvcCode:Gu,pleaseBindAtLeastOneDisplayValue:Hu,pleaseSelectProvince:zu,pleaseSelectCity:Wu,pleaseSelectDistrict:Ku,limitRowsCannotBeLessThan0:Ju,TheNumberOfRowsCannotBeLessThanMinRows:Xu,pleaseEnterColumnWidth:Qu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Zu,pleaseCompleteAllRulesAndConditions:Yu,pleaseSelectControl:eo,pleaseSelectDashboard:to,theViewNameCannotBeEmpty:no,pleaseSelectOcrType:ro,pleaseSelectAtLeastOneFieldToFillIn:io,pleaseChooseAtLeastOne:uo,pleaseEnterButtonContent:oo,pleaseEnterDataCodeInDataSetting:ao,pleaseEnterValueFieldCodeInDataSetting:lo,pleaseEnterSvcCodeInDataSetting:so,pleaseBindAtLeastOneDisplayValueInDataSetting:co,rootNodeIsRequiredInDataSetting:fo,pleaseEnterMaxHeight:po,pleaseEnter:ho,pleaseEnterWatermark:yo,pleaseEnterFileName:vo,pleaseUploadAtLeastOnePrintTemplate:_o,pleaseAssignBusiness:go,pleaseAssignExternal:mo,pleaseEnterAliasCode:bo,pleaseSelectDataCode:Eo,pleaseSelectSvcCode:wo,pleaseSelectJoinFieldCode:Bo,pleaseSelectMainFieldCode:So,pleaseSelectSortFieldCode:Ao},Co="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Io="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$o="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Po="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Do="{caption}\u5FC5\u9808",To="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mo="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ro="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Lo="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",jo="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qo="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",No="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Uo="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ko="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vo="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Go="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ho="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zo="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Wo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ko="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Jo="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xo="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Qo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Zo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Yo="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ea="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ta="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",na="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ra="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ia="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ua="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",oa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",aa="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",la="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",sa="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ca="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",fa="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",da="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pa="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ha="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ya="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",va="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_a="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ga="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",ma="please select control",ba="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ea="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",wa="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ba="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Aa="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Fa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ca="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ia="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Oa="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",$a="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Pa="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Da="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ta="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ma="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ra="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",xa="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",La="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ja="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qa="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Na="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",ka="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Va="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ga={isNotNumber:Co,isNotString:Io,isNotObject:Oo,isNotArray:$o,isNotBoolean:Po,runtimeRequired:Do,pleaseEnterCaption:To,pleaseEnterCaptionTip:Mo,pleaseEnterRowCaption:Ro,pleaseEnterPlaceholder:xo,pleaseEnterFieldCode:Lo,pleaseEnterForm:jo,pleaseEnterList:qo,pleaseEnterProcess:No,pleaseEnterLabel:Uo,pleaseEnterValue:ko,bizKeyNotBindFiled:Vo,pleaseSelectOneField:Go,pleaseEnterNumberRange:Ho,pleaseEnterAValueGreaterThanMin:zo,pleaseEnterAValueLessThanMax:Wo,numberRangeSetError:Ko,stringRangeError:Jo,attachmentMaxSize:Xo,pleaseEnterTotalScoreSetting:Qo,theTotalScoreMustNotBeLessThan1:Zo,scoreDefaultValueRange:Yo,attachmentLimitError:ea,PleaseReselectTheOptionalQuantity:ta,TheMaximumLengthIsGreaterThanTheMinimumLength:na,TheMinimumLengthIsGreaterThanTheMaximumLength:ra,PleaseSelectTheCorrectOptionSettings:ia,optionIdIsRepeat:ua,optionIsRequired:oa,pleaseEnterDataCode:aa,pleaseEnterValueFieldCode:la,pleaseEnterSvcCode:sa,pleaseBindAtLeastOneDisplayValue:ca,pleaseSelectProvince:fa,pleaseSelectCity:da,pleaseSelectDistrict:pa,limitRowsCannotBeLessThan0:ha,TheNumberOfRowsCannotBeLessThanMinRows:ya,pleaseEnterColumnWidth:va,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_a,pleaseCompleteAllRulesAndConditions:ga,pleaseSelectControl:ma,pleaseSelectDashboard:ba,theViewNameCannotBeEmpty:Ea,pleaseSelectOcrType:wa,pleaseSelectAtLeastOneFieldToFillIn:Ba,pleaseChooseAtLeastOne:Sa,pleaseEnterButtonContent:Aa,pleaseEnterDataCodeInDataSetting:Fa,pleaseEnterValueFieldCodeInDataSetting:Ca,pleaseEnterSvcCodeInDataSetting:Ia,pleaseBindAtLeastOneDisplayValueInDataSetting:Oa,rootNodeIsRequiredInDataSetting:$a,pleaseEnterMaxHeight:Pa,pleaseEnter:Da,pleaseEnterWatermark:Ta,pleaseEnterFileName:Ma,pleaseUploadAtLeastOnePrintTemplate:Ra,pleaseAssignBusiness:xa,pleaseAssignExternal:La,pleaseEnterAliasCode:ja,pleaseSelectDataCode:qa,pleaseSelectSvcCode:Na,pleaseSelectJoinFieldCode:Ua,pleaseSelectMainFieldCode:ka,pleaseSelectSortFieldCode:Va},Ha={zhCN:au,enUS:Fo,jaJP:Ga},za="zh-CN",Wa=function(){};function R(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var D=function(e){return e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e}({}),y=function(e){return e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.SENSITIVEN_INFORMATION="sensitiven-information",e}({}),W=function(e){return e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field",e}({}),P,Ka=(P={},R(P,"array","array-column"),R(P,"auto_number","auto-number-column"),R(P,"decimal","decimal-column"),R(P,"department","department-column"),R(P,"file","file-column"),R(P,"image","image-column"),R(P,"location","location-column"),R(P,"people","employee-column"),R(P,"text","text-column"),R(P,"timescope","timescope-column"),R(P,"timestamp","timestamp-column"),R(P,"varchar","varchar-column"),R(P,"relation","varchar-column"),P),fn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ja=fn+"0123456789";function tt(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?fn:Ja,i=Math.random()*r.length;t+=r[parseInt(String(i),10)]}return t}function nt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Xa(e){if(Array.isArray(e))return nt(e)}function Qa(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dn(e,t,n){return t=ye(t),tl(e,it()?Reflect.construct(t,n||[],ye(e).constructor):t.apply(e,n))}function pn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oe(e,t,n){return it()?Oe=Reflect.construct:Oe=function(i,u,o){var l=[null];l.push.apply(l,u);var s=Function.bind.apply(i,l),a=new s;return o&&ve(a,o.prototype),a},Oe.apply(null,arguments)}function ye(e){return ye=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ye(e)}function hn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ve(e,t)}function Za(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Ya(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function el(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function tl(e,t){return t&&(nl(t)==="object"||typeof t=="function")?t:Qa(e)}function ve(e,t){return ve=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},ve(e,t)}function yn(e){return Xa(e)||Ya(e)||rl(e)||el()}function nl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function rl(e,t){if(!!e){if(typeof e=="string")return nt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nt(e,t)}}function rt(e){var t=typeof Map=="function"?new Map:void 0;return rt=function(r){if(r===null||!Za(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Oe(r,arguments,ye(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),ve(i,r)},rt(e)}function it(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(it=function(){return!!e})()}var ut=console;function $e(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,i=t.slice(1);(r=ut).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(yn(i)))}function vn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,i=t.slice(1);(r=ut).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(yn(i)))}function il(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var ot=function(e){hn(t,e);function t(n){pn(this,t);var r;return r=dn(this,t,[n]),r.name="\u{1F4A5} Driven Error",r.message=n?il(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",r}return t}(rt(Error)),ul=function(e){hn(t,e);function t(n){pn(this,t);var r;return r=dn(this,t,[n]),r.name="\u{1F6A8} Driven Reference Error",r}return t}(ot);function _e(e){throw new ot(e)}function _n(e){throw new ul(e)}function ol(e){ut.error(new ot(e))}var al=Object.prototype.toString;function gn(e,t){return al.call(e)==="[object "+t+"]"}function ll(e){return gn(e,"String")}function sl(e){return gn(e,"Promise")}var cl=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();sl(r)?r.then(function(i){n._messageCache.clear(),n.messages[n.localeInMessageKey]=i}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var i=this.getMessage(t);return i?this.formatMessage(i,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(i,u,o,l){if(i!==void 0){var s=i[u];if(!(o===l.length-1&&!ll(s)))return s}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,i){var u=n[i];return u!==void 0?String(u):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function fl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function mn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function dl(e,t,n){return t&&mn(e.prototype,t),n&&mn(e,n),e}function pl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var j=function(){function e(){fl(this,e)}return dl(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:za;return new cl({locale:n,messages:Ha})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();pl(j,"$i18n",j.resetI18n());function bn(e,t,n){var r=t.replace(/\[(\d)]/g,function(u,o){return"."+o}).split("."),i=!1;return r.reduce(function(u,o,l,s){var a=u;if(!!u){if(!Object.prototype.hasOwnProperty.call(u,o)){$e("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),u,u);return}return l===s.length-1&&!Object.is(a[o],n)&&(a[o]=n,i=!0),a[o]}},e),i}var hl=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},yl={exports:{}};(function(e){(function(t){var n=function(c,p,F){if(!a(p)||h(p)||v(p)||m(p)||s(p))return p;var w,C=0,k=0;if(f(p))for(w=[],k=p.length;C<k;C++)w.push(n(c,p[C],F));else{w={};for(var S in p)Object.prototype.hasOwnProperty.call(p,S)&&(w[c(S,F)]=n(c,p[S],F))}return w},r=function(c,p){p=p||{};var F=p.separator||"_",w=p.split||/(?=[A-Z])/;return c.split(w).join(F)},i=function(c){return g(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(p,F){return F?F.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},u=function(c){var p=i(c);return p.substr(0,1).toUpperCase()+p.substr(1)},o=function(c,p){return r(c,p).toLowerCase()},l=Object.prototype.toString,s=function(c){return typeof c=="function"},a=function(c){return c===Object(c)},f=function(c){return l.call(c)=="[object Array]"},h=function(c){return l.call(c)=="[object Date]"},v=function(c){return l.call(c)=="[object RegExp]"},m=function(c){return l.call(c)=="[object Boolean]"},g=function(c){return c=c-0,c===c},d=function(c,p){var F=p&&"process"in p?p.process:p;return typeof F!="function"?c:function(w,C){return F(w,c,C)}},_={camelize:i,decamelize:o,pascalize:u,depascalize:o,camelizeKeys:function(c,p){return n(d(i,p),c)},decamelizeKeys:function(c,p){return n(d(o,p),c,p)},pascalizeKeys:function(c,p){return n(d(u,p),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=_:t.humps=_})(hl)})(yl);var En={};Object.defineProperty(En,"__esModule",{value:!0});function at(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:at(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:at(r)}return t}}var vl=En.default=at;function wn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function te(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":wn(e))==="object"?vl(e):e}function lt(e){return Object.prototype.toString.call(e)==="[object Object]"}function _l(e){return e!=null&&(typeof e=="undefined"?"undefined":wn(e))==="object"&&Array.isArray(e)===!1}function re(e){return Array.isArray(e)}function st(e){return typeof e=="string"}function gl(e){return Object.values(y).includes(e)}function ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ml(e){if(Array.isArray(e))return ct(e)}function Bn(e,t,n,r,i,u,o){try{var l=e[u](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,i)}function bl(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(s){Bn(u,r,i,o,l,"next",s)}function l(s){Bn(u,r,i,o,l,"throw",s)}o(void 0)})}}function El(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function wl(e,t,n){return t&&Sn(e.prototype,t),n&&Sn(e,n),e}function An(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Bl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Sl(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ft(e){return ml(e)||Bl(e)||Al(e)||Sl()}function Al(e,t){if(!!e){if(typeof e=="string")return ct(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ct(e,t)}}function Fl(e,t){var n,r,i,u={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(u=0)),u;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return u.label++,{value:a[1],done:!1};case 5:u.label++,r=a[1],a=[0];continue;case 7:a=u.ops.pop(),u.trys.pop();continue;default:if(i=u.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){u=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){u.label=a[1];break}if(a[0]===6&&u.label<i[1]){u.label=i[1],i=a;break}if(i&&u.label<i[2]){u.label=i[2],u.ops.push(a);break}i[2]&&u.ops.pop(),u.trys.pop();continue}a=t.call(e,u)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Fn=function(){function e(){El(this,e),An(this,"_events",new Map),An(this,"debug",!1)}return wl(e,[{key:"emit",value:function(n){for(var r=arguments.length,i=new Array(r>1?r-1:0),u=1;u<r;u++)i[u-1]=arguments[u];return bl(function(){var o,l,s,a,f,h,v,m,g,d,_,c;return Fl(this,function(p){switch(p.label){case 0:if(o=this._events.get(n),l=[],!o)return[3,10];s=o.slice(),a=!0,f=!1,h=void 0,p.label=1;case 1:p.trys.push([1,8,9,10]),v=s[Symbol.iterator](),p.label=2;case 2:if(a=(m=v.next()).done)return[3,7];if(g=m.value,!o.includes(g))return[3,6];p.label=3;case 3:return p.trys.push([3,5,,6]),this.debug&&vn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"\u3002")].concat(ft(i))),[4,g.apply(null,ft(i))];case 4:return d=p.sent(),this.debug&&vn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(g.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+g.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(i.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(ft(i),[d])),l.push(d),d===!1?[3,7]:[3,6];case 5:return _=p.sent(),ol(String(_)+":"+String(_.stack)),[3,6];case 6:return a=!0,[3,2];case 7:return[3,10];case 8:return c=p.sent(),f=!0,h=c,[3,10];case 9:try{!a&&v.return!=null&&v.return()}finally{if(f)throw h}return[7];case 10:return[2,l]}})}).call(this)}},{key:"on",value:function(n,r){if(this._events.has(n)){var i;(i=this._events.get(n))===null||i===void 0||i.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var i=this._events.get(n),u=i==null?void 0:i.indexOf(r);i==null||i.splice(u,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function Cl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Il(e,t,n){return t&&Cn(e.prototype,t),n&&Cn(e,n),e}function Ol(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var $l=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],ge=function(){function e(){Cl(this,e)}return Il(e,null,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(i){return r.includes(i.key)})}},{key:"getEventsFromControl",value:function(n){var r=[],i=n.eventKeys;r=r.concat(e.events.filter(function(o){return i.includes(o.key)}));var u=n.customEvents.map(function(o){var l=o.key;return{key:l,code:o.key,name:o.name}});return r=r.concat(u),r}}]),e}();Ol(ge,"events",$l);function dt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Pl(e){if(Array.isArray(e))return dt(e)}function Dl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Tl(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function In(e){return Pl(e)||Dl(e)||Ml(e)||Tl()}function Ml(e,t){if(!!e){if(typeof e=="string")return dt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return dt(e,t)}}function pt(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function On(e,t,n){n!=="Runtime"&&(e.parent=t,pt(e,"parent"))}function Rl(e,t,n){e.forEach(function(r){On(r,t,n)})}var $n=Symbol("targetKey");function Pn(e){var t;return(t=e[$n])!==null&&t!==void 0?t:e}function Dn(e,t,n){return Rl(e,t,n),new Proxy(e,{get:function(i,u){for(var o=arguments.length,l=new Array(o>2?o-2:0),s=2;s<o;s++)l[s-2]=arguments[s];var a;return u===$n?i:(a=Reflect).get.apply(a,[i,u].concat(In(l)))},set:function(i,u,o){for(var l=arguments.length,s=new Array(l>3?l-3:0),a=3;a<l;a++)s[a-3]=arguments[a];var f;if(re(e)&&u==="length"&&o===e.length)return!0;var h=(f=Reflect).set.apply(f,[i,u,o].concat(In(s)));return lt(o)&&On(o,t,n),h}})}function ht(e,t,n,r,i){var u=r!=null?r:e,o=Dn(Pn(n!=null?n:[]),u,i);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=Dn(Pn(s),u,i)},enumerable:!0})}function xl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ll(e,t,n){return t&&Tn(e.prototype,t),n&&Tn(e,n),e}function K(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Mn=[],me=function(){function e(t){xl(this,e),K(this,"registeredControlTypes",new Set),K(this,"controlConfigMap",new Map),K(this,"_controls",[]),K(this,"_type",void 0),this._type=t,this._initControls(t)}return Ll(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||_e("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(i){return i.controlType===n.controlType});return r>-1&&($e("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===D.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===D.FORM}},{key:"isListControl",value:function(n){return n.controlType===D.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===D.COLUMN}},{key:"createControl",value:function(n,r){var i=this;if(Array.isArray(n))return n.map(function(f){return i.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return i.createControl(f,r)})),this.isListControl(n)){var u=n.props;u.headers&&(u.headers=u.headers.map(function(f){return i.createControl(f,r)})),u.footers&&(u.footers=u.footers.map(function(f){var h;return f&&(h=i.createControl(f,r)),h}))}var o=this.getControlFormType(n.type);if(o){var l=n;if(typeof r=="function"){var s=r(l);s&&(l=s)}var a;return o.mode==="Runtime"?(a=l,a.fieldType=o.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new o(l),a}else _e("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),pt(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var u=n.id,o=r._controlParentIdMap,l=r.instanceMap;if(!(!o||!l)){var s=o[u],a=l[u];if(!(!s&&!a)){var f=a.findIndex(function(m){return m==n}),h=l[s]||[],v;return h.length!==a.length?v=h[0]:v=h[f],v}}}}),pt(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var i=this.getControlFormType(n);if(i)return new i(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(i){r.register(i[n]),e.staticControlsRuntimeRules.set(i.Runtime.controlType,i.Property.RuntimeRules),i.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var i=e.staticControlsRuntimeRules.get(n),u=[];if(i){var o=new i(r);u=Array.from(o)}return u}},{key:"register",value:function(n,r){var i=n.Designer,u=n.Runtime,o=n.Property;(!i||!u||!i.__is_control__||!u.__is_control__)&&_e("".concat(n," is can't register as a Control"));var l=this.staticControls.findIndex(function(s){return s.Designer.controlType===i.controlType});return l>-1&&($e("The ".concat(i.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(l,1)),this.staticRegisteredTypes.add(i.controlType),this.staticControls.push(n),o.mode=r,this}}]),e}();K(me,"staticControlsRuntimeRules",new Map),K(me,"staticControls",Mn),K(me,"staticRegisteredTypes",new Set(Mn.map(function(e){return e.Designer.controlType}))),K(me,"staticRegisteredConfigs",new Map);function yt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Rn=function e(t){yt(this,e),q(this,"dataCode",void 0),q(this,"fieldCode",void 0),q(this,"fieldType",void 0),q(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var i;this.fieldType=(i=t==null?void 0:t.fieldType)!==null&&i!==void 0?i:"",this.aliasCode=t==null?void 0:t.aliasCode},jl=function e(t){yt(this,e),q(this,"minWidth",void 0),q(this,"maxWidth",void 0),q(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},ql=function(e){return e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT",e}({}),Nl=function e(t){yt(this,e),q(this,"width",void 0),q(this,"height",void 0),q(this,"widthConfig",void 0),q(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var i;this.widthConfig=(i=t==null?void 0:t.widthConfig)!==null&&i!==void 0?i:"fill";var u;this.heightConfig=(u=t==null?void 0:t.heightConfig)!==null&&u!==void 0?u:"fill"};function Ul(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kl(e,t,n){return t=be(t),Hl(e,gt()?Reflect.construct(t,n||[],be(e).constructor):t.apply(e,n))}function vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pe(e,t,n){return gt()?Pe=Reflect.construct:Pe=function(i,u,o){var l=[null];l.push.apply(l,u);var s=Function.bind.apply(i,l),a=new s;return o&&Ee(a,o.prototype),a},Pe.apply(null,arguments)}function J(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},be(e)}function Vl(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ee(e,t)}function Gl(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Hl(e,t){return t&&(zl(t)==="object"||typeof t=="function")?t:Ul(e)}function Ee(e,t){return Ee=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Ee(e,t)}function zl(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function _t(e){var t=typeof Map=="function"?new Map:void 0;return _t=function(r){if(r===null||!Gl(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Pe(r,arguments,be(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),Ee(i,r)},_t(e)}function gt(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(gt=function(){return!!e})()}var mt=function e(t){vt(this,e),J(this,"isHide",{type:"boolean"})},xn=function(e){Vl(t,e);function t(n){return vt(this,t),kl(this,t)}return t}(_t(Array)),H=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";vt(this,e),J(this,"isHide",void 0),J(this,"className",void 0),J(this,"style",void 0),J(this,"caption",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new Nl(t==null?void 0:t.style);var i;this.caption=(i=t==null?void 0:t.caption)!==null&&i!==void 0?i:n};J(H,"mode",void 0),J(H,"Rules",mt),J(H,"RuntimeRules",xn);function N(){return N=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},N.apply(this,arguments)}function Wl(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function bt(e){return bt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},bt(e)}function De(e,t){return De=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},De(e,t)}function Kl(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Te(e,t,n){return Kl()?Te=Reflect.construct:Te=function(i,u,o){var l=[null];l.push.apply(l,u);var s=Function.bind.apply(i,l),a=new s;return o&&De(a,o.prototype),a},Te.apply(null,arguments)}function Jl(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Et(e){var t=typeof Map=="function"?new Map:void 0;return Et=function(r){if(r===null||!Jl(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,i)}function i(){return Te(r,arguments,bt(this).constructor)}return i.prototype=Object.create(r.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),De(i,r)},Et(e)}var Xl=/%[sdj%]/g,Ln=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Ln=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function wt(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function x(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,i=t[0],u=t.length;if(typeof i=="function")return i.apply(null,t.slice(1));if(typeof i=="string"){var o=String(i).replace(Xl,function(l){if(l==="%%")return"%";if(r>=u)return l;switch(l){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(s){return"[Circular]"}break;default:return l}});return o}return i}function Ql(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function I(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Ql(t)&&typeof e=="string"&&!e)}function Zl(e,t,n){var r=[],i=0,u=e.length;function o(l){r.push.apply(r,l),i++,i===u&&n(r)}e.forEach(function(l){t(l,o)})}function jn(e,t,n){var r=0,i=e.length;function u(o){if(o&&o.length){n(o);return}var l=r;r=r+1,l<i?t(e[l],u):n([])}u([])}function Yl(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var qn=function(e){Wl(t,e);function t(n,r){var i;return i=e.call(this,"Async Validation Error")||this,i.errors=n,i.fields=r,i}return t}(Et(Error));function es(e,t,n,r){if(t.first){var i=new Promise(function(h,v){var m=function(_){return r(_),_.length?v(new qn(_,wt(_))):h()},g=Yl(e);jn(g,n,m)});return i.catch(function(h){return h}),i}var u=t.firstFields||[];u===!0&&(u=Object.keys(e));var o=Object.keys(e),l=o.length,s=0,a=[],f=new Promise(function(h,v){var m=function(d){if(a.push.apply(a,d),s++,s===l)return r(a),a.length?v(new qn(a,wt(a))):h()};o.length||(r(a),h()),o.forEach(function(g){var d=e[g];u.indexOf(g)!==-1?jn(d,n,m):Zl(d,n,m)})});return f.catch(function(h){return h}),f}function Nn(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function Un(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=N(N({},e[n]),r):e[n]=r}}return e}function kn(e,t,n,r,i,u){e.required&&(!n.hasOwnProperty(e.field)||I(t,u||e.type))&&r.push(x(i.messages.required,e.fullField))}function ts(e,t,n,r,i){(/^\s+$/.test(t)||t==="")&&r.push(x(i.messages.whitespace,e.fullField))}var Bt={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},we={integer:function(t){return we.number(t)&&parseInt(t,10)===t},float:function(t){return we.number(t)&&!we.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!we.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(Bt.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(Bt.url)},hex:function(t){return typeof t=="string"&&!!t.match(Bt.hex)}};function ns(e,t,n,r,i){if(e.required&&t===void 0){kn(e,t,n,r,i);return}var u=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;u.indexOf(o)>-1?we[o](t)||r.push(x(i.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(x(i.messages.types[o],e.fullField,e.type))}function rs(e,t,n,r,i){var u=typeof e.len=="number",o=typeof e.min=="number",l=typeof e.max=="number",s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,h=typeof t=="number",v=typeof t=="string",m=Array.isArray(t);if(h?f="number":v?f="string":m&&(f="array"),!f)return!1;m&&(a=t.length),v&&(a=t.replace(s,"_").length),u?a!==e.len&&r.push(x(i.messages[f].len,e.fullField,e.len)):o&&!l&&a<e.min?r.push(x(i.messages[f].min,e.fullField,e.min)):l&&!o&&a>e.max?r.push(x(i.messages[f].max,e.fullField,e.max)):o&&l&&(a<e.min||a>e.max)&&r.push(x(i.messages[f].range,e.fullField,e.min,e.max))}var ie="enum";function is(e,t,n,r,i){e[ie]=Array.isArray(e[ie])?e[ie]:[],e[ie].indexOf(t)===-1&&r.push(x(i.messages[ie],e.fullField,e[ie].join(", ")))}function us(e,t,n,r,i){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(x(i.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var u=new RegExp(e.pattern);u.test(t)||r.push(x(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var E={required:kn,whitespace:ts,type:ns,range:rs,enum:is,pattern:us};function os(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"string")&&!e.required)return n();E.required(e,t,r,u,i,"string"),I(t,"string")||(E.type(e,t,r,u,i),E.range(e,t,r,u,i),E.pattern(e,t,r,u,i),e.whitespace===!0&&E.whitespace(e,t,r,u,i))}n(u)}function as(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&E.type(e,t,r,u,i)}n(u)}function ls(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&(E.type(e,t,r,u,i),E.range(e,t,r,u,i))}n(u)}function ss(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&E.type(e,t,r,u,i)}n(u)}function cs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),I(t)||E.type(e,t,r,u,i)}n(u)}function fs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&(E.type(e,t,r,u,i),E.range(e,t,r,u,i))}n(u)}function ds(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&(E.type(e,t,r,u,i),E.range(e,t,r,u,i))}n(u)}function ps(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();E.required(e,t,r,u,i,"array"),t!=null&&(E.type(e,t,r,u,i),E.range(e,t,r,u,i))}n(u)}function hs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&E.type(e,t,r,u,i)}n(u)}var ys="enum";function vs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i),t!==void 0&&E[ys](e,t,r,u,i)}n(u)}function _s(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"string")&&!e.required)return n();E.required(e,t,r,u,i),I(t,"string")||E.pattern(e,t,r,u,i)}n(u)}function gs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t,"date")&&!e.required)return n();if(E.required(e,t,r,u,i),!I(t,"date")){var l;t instanceof Date?l=t:l=new Date(t),E.type(e,l,r,u,i),l&&E.range(e,l.getTime(),r,u,i)}}n(u)}function ms(e,t,n,r,i){var u=[],o=Array.isArray(t)?"array":typeof t;E.required(e,t,r,u,i,o),n(u)}function St(e,t,n,r,i){var u=e.type,o=[],l=e.required||!e.required&&r.hasOwnProperty(e.field);if(l){if(I(t,u)&&!e.required)return n();E.required(e,t,r,o,i,u),I(t,u)||E.type(e,t,r,o,i)}n(o)}function bs(e,t,n,r,i){var u=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(I(t)&&!e.required)return n();E.required(e,t,r,u,i)}n(u)}var Be={string:os,method:as,number:ls,boolean:ss,regexp:cs,integer:fs,float:ds,array:ps,object:hs,enum:vs,pattern:_s,date:gs,url:St,hex:St,email:St,required:ms,any:bs};function At(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var Ft=At();function X(e){this.rules=null,this._messages=Ft,this.define(e)}X.prototype={messages:function(t){return t&&(this._messages=Un(At(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var i=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var u=t,o=n,l=r;if(typeof o=="function"&&(l=o,o={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function s(d){var _,c=[],p={};function F(w){if(Array.isArray(w)){var C;c=(C=c).concat.apply(C,w)}else c.push(w)}for(_=0;_<d.length;_++)F(d[_]);c.length?p=wt(c):(c=null,p=null),l(c,p)}if(o.messages){var a=this.messages();a===Ft&&(a=At()),Un(a,o.messages),o.messages=a}else o.messages=this.messages();var f,h,v={},m=o.keys||Object.keys(this.rules);m.forEach(function(d){f=i.rules[d],h=u[d],f.forEach(function(_){var c=_;typeof c.transform=="function"&&(u===t&&(u=N({},u)),h=u[d]=c.transform(h)),typeof c=="function"?c={validator:c}:c=N({},c),c.validator=i.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=i.getType(c),c.validator&&(v[d]=v[d]||[],v[d].push({rule:c,value:h,source:u,field:d}))})});var g={};return es(v,o,function(d,_){var c=d.rule,p=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");p=p&&(c.required||!c.required&&d.value),c.field=d.field;function F(k,S){return N(N({},S),{},{fullField:c.fullField+"."+k})}function w(k){k===void 0&&(k=[]);var S=k;if(Array.isArray(S)||(S=[S]),!o.suppressWarning&&S.length&&X.warning("async-validator:",S),S.length&&c.message!==void 0&&(S=[].concat(c.message)),S=S.map(Nn(c)),o.first&&S.length)return g[c.field]=1,_(S);if(!p)_(S);else{if(c.required&&!d.value)return c.message!==void 0?S=[].concat(c.message).map(Nn(c)):o.error&&(S=[o.error(c,x(o.messages.required,c.field))]),_(S);var V={};if(c.defaultField)for(var zr in d.value)d.value.hasOwnProperty(zr)&&(V[zr]=c.defaultField);V=N(N({},V),d.rule.fields);for(var ce in V)if(V.hasOwnProperty(ce)){var Ed=Array.isArray(V[ce])?V[ce]:[V[ce]];V[ce]=Ed.map(F.bind(null,ce))}var Wr=new X(V);Wr.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Wr.validate(d.value,d.rule.options||o,function(sn){var fe=[];S&&S.length&&fe.push.apply(fe,S),sn&&sn.length&&fe.push.apply(fe,sn),_(fe.length?fe:null)})}}var C;c.asyncValidator?C=c.asyncValidator(c,d.value,w,d.source,o):c.validator&&(C=c.validator(c,d.value,w,d.source,o),C===!0?w():C===!1?w(c.message||c.field+" fails"):C instanceof Array?w(C):C instanceof Error&&w(C.message)),C&&C.then&&C.then(function(){return w()},function(k){return w(k)})},function(d){s(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Be.hasOwnProperty(t.type))throw new Error(x("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Be.required:Be[this.getType(t)]||!1}},X.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Be[t]=n},X.warning=Ln,X.messages=Ft,X.validators=Be;var Es={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function ws(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new X(e);return n.messages(Object.assign(Es,t)),n}var Vn=new Fn;function Ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Bs(e){if(Array.isArray(e))return e}function Ss(e){if(Array.isArray(e))return Ct(e)}function Gn(e,t,n,r,i,u,o){try{var l=e[u](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,i)}function Hn(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(s){Gn(u,r,i,o,l,"next",s)}function l(s){Gn(u,r,i,o,l,"throw",s)}o(void 0)})}}function As(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Fs(e,t,n){return t&&zn(e.prototype,t),n&&zn(e,n),e}function B(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Wn(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Kn(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Cs(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Is(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Jn(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){B(e,i,n[i])})}return e}function Os(e){return Bs(e)||Kn(e)||Xn(e)||Cs()}function It(e){return Ss(e)||Kn(e)||Xn(e)||Is()}function $s(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xn(e,t){if(!!e){if(typeof e=="string")return Ct(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ct(e,t)}}function Qn(e,t){var n,r,i,u={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(u=0)),u;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return u.label++,{value:a[1],done:!1};case 5:u.label++,r=a[1],a=[0];continue;case 7:a=u.ops.pop(),u.trys.pop();continue;default:if(i=u.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){u=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){u.label=a[1];break}if(a[0]===6&&u.label<i[1]){u.label=i[1],i=a;break}if(i&&u.label<i[2]){u.label=i[2],u.ops.push(a);break}i[2]&&u.ops.pop(),u.trys.pop();continue}a=t.call(e,u)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var T=function(){function t(n){var r=this;As(this,t),B(this,"id",void 0),B(this,"name",void 0),B(this,"icon",void 0),B(this,"type",void 0),B(this,"controlType",void 0),B(this,"props",void 0),B(this,"setting",[]),B(this,"fieldType",void 0),B(this,"eventKeys",[]),B(this,"customEvents",[]),B(this,"parent",null),B(this,"updateSetting",Yn),B(this,"removeSetting",Zn),this._callControlHooks("preInstance",n);var i=Wn(this,t)?this.constructor:void 0,u=i.controlName,o=i.controlIcon,l=i.controlType,s=i.controlFieldType,a=i.controlEventKeys,f=i.controlCustomEvents,h=i.name,v=i.setting;u&&o&&l||_n("The ".concat(h," controlName,controlIcon,controlType is not define"));var m;this.id=(m=n==null?void 0:n.id)!==null&&m!==void 0?m:tt(10),this.name=u,this.icon=o;var g;this.type=(g=n==null?void 0:n.type)!==null&&g!==void 0?g:l,this.props=new H(n==null?void 0:n.props,(Wn(this,t)?this.constructor:void 0).controlName);var d;this.controlType=(d=n==null?void 0:n.controlType)!==null&&d!==void 0?d:"base",this.setting=te(v);var _;this.fieldType=(_=n==null?void 0:n.fieldType)!==null&&_!==void 0?_:s,this.eventKeys=te(a),this.customEvents=te(f),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Fs(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,i=new Array(r),u=0;u<r;u++)i[u]=arguments[u];var o,l=Os(i),s=l[0],a=l.slice(1);return(o=Vn).emit.apply(o,[s,this].concat(It(a)))}},{key:"preUpdate",value:function(r,i){this._callControlHooks("preUpdateProps",r,i)}},{key:"postUpdate",value:function(r,i){this._callControlHooks("postUpdateProps",r,i)}},{key:"updateProps",value:function(r,i){this.preUpdate(r,i),bn(this.props,r,i),this.postUpdate(r,i)}},{key:"preValidate",value:function(){return Hn(function(){var r,i,u;return Qn(this,function(o){switch(o.label){case 0:return r=Jn({},this.rules),[4,this._callControlHooks("preValidate",r)];case 1:return i=o.sent(),u=i[i.length-1],[2,u===!1?void 0:u]}})}).call(this)}},{key:"validate",value:function(r,i){return Hn(function(){var u,o,l,s;return Qn(this,function(a){switch(a.label){case 0:return[4,this.preValidate()];case 1:u=a.sent(),o=u!==void 0?u:Jn({},this.rules),Array.isArray(i)&&i.forEach(function(f){o.hasOwnProperty(f)&&delete o[f]}),l=ws(o,r),a.label=2;case 2:return a.trys.push([2,4,,5]),[4,l.validate(this.props)];case 3:return a.sent(),[2,!0];case 4:throw s=a.sent(),s.control||(s.control=this),s;case 5:return[2]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this.fieldType,u=this.id,o=this.type,l=this.props,s=l.dataBind,a=l.datasourceBind,f=l.optionConfig,h=l.caption,v=l.required,m=l.maxLength,g=l.options,d=l.encrypted,_=l.encryptedMode;if(!(!i&&!s&&!a)){var c={parentId:r,fieldType:i,controlId:u,caption:h,type:o,props:{}};switch(s&&(c.dataBind=s),f){case"datasource":case void 0:a&&(c.datasourceBind=a);break;case"custom":c.props.options=g;break}return v!==void 0&&(c.required=v),m!==void 0&&(c.maxLength=m),d!==void 0&&(c.encrypted=d),_!==void 0&&(c.encryptedMode=_),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:te(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,i){if(r==="setting"){if(i.add){var u;(u=this.setting).push.apply(u,It(i.add))}i.remove&&this.removeSettingItem(i.remove),i.update}}}]),t}();B(T,"mode","Designer"),B(T,"controlName","\u63A7\u4EF6"),B(T,"controlIcon","icon"),B(T,"controlType","control"),B(T,"controlFieldType",void 0),B(T,"controlEventKeys",[]),B(T,"controlCustomEvents",[]),B(T,"setting",[]),B(T,"__is_control__",!0),B(T,"removeSettingItem",Zn),B(T,"updateSettingItem",Yn);function Zn(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var i,u=typeof r!="string",o=(i=t.setting)===null||i===void 0?void 0:i.findIndex(function(a){return a.key===(u?r.key:r)});if(o!==-1){var l,s;u?t.setting[o].showItems=(l=t.setting[o].showItems)===null||l===void 0?void 0:l.filter(function(a){return!r.hideItems.includes(a)}):t.setting.splice(o,1),u&&!(!((s=t.setting[o].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(o,1)}})}function Yn(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(i){var u=n.setting.find(function(a){return a.key===i});if(u){if(typeof t=="boolean")u.visible=t;else if((typeof t=="undefined"?"undefined":$s(t))==="object"){var o,l=(o=t.type)!==null&&o!==void 0?o:"replace";if(l==="replace")u.showItems=t.showItems;else{var s;(s=u.showItems).push.apply(s,It(t.showItems))}}}})}function Ps(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function er(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ds(e,t,n){return t&&er(e.prototype,t),n&&er(e,n),e}function L(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ts(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var Se=function(){function t(n){Ps(this,t),L(this,"id",void 0),L(this,"type",void 0),L(this,"controlType",void 0),L(this,"props",void 0),L(this,"fieldType",void 0),L(this,"customEvents",[]),L(this,"pageStatus",void 0),L(this,"parent",null);var r=Ts(this,t)?this.constructor:void 0,i=r.controlType,u=r.controlFieldType,o=r.name,l=r.controlCustomEvents;i||_n("The ".concat(o," controlType is not define"));var s;this.id=(s=n==null?void 0:n.id)!==null&&s!==void 0?s:tt(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:i,this.props=new H(n==null?void 0:n.props),this.customEvents=l;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var h;this.fieldType=(h=n==null?void 0:n.fieldType)!==null&&h!==void 0?h:u;var v;this.pageStatus=(v=n==null?void 0:n.pageStatus)!==null&&v!==void 0?v:ql.UNKNOWN}return Ds(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var i=new r(this.props);return Array.from(i)}return[]}}]),t}();L(Se,"mode","Runtime"),L(Se,"controlType","control"),L(Se,"controlFieldType",void 0),L(Se,"__is_control__",!0),L(Se,"controlCustomEvents",[]);function tr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function Ms(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ot(e,t,n){return t=Me(t),Rs(e,nr()?Reflect.construct(t,n||[],Me(e).constructor):t.apply(e,n))}function $t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function A(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Me(e){return Me=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Me(e)}function Pt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Dt(e,t)}function Rs(e,t){return t&&(xs(t)==="object"||typeof t=="function")?t:Ms(e)}function Dt(e,t){return Dt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Dt(e,t)}function xs(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function nr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(nr=function(){return!!e})()}var Ls=function(e){Pt(t,e);function t(n){$t(this,t);var r;r=Ot(this,t,[n]),A(r,"dataBind",{}),A(r,"caption",{type:"string",required:!0,message:j.getMessage("pleaseEnterCaption")}),A(r,"isHideCaption",{type:"boolean"}),A(r,"labelPosition",{type:"enum",enum:["top","left"]}),A(r,"defaultState",{type:"enum",enum:["default","readonly"]}),A(r,"required",{type:"boolean"}),A(r,"captionTip",{type:"string",required:!1,message:j.getMessage("pleaseEnterCaptionTip")});var i={fieldCode:{type:"string",required:!0,message:j.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:j.getMessage("pleaseEnterFieldCode")}};if(tr(n.dataBind))r.dataBind={type:"object",required:!0,fields:te(i),message:j.getMessage("pleaseEnterFieldCode")};else{var u={type:"object",required:!0,fields:{},message:j.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(o){u.fields[o]={type:"object",required:!0,fields:te(i),message:j.getMessage("pleaseEnterFieldCode")}}),r.dataBind=u}return n.isShowCaptionTip&&(r.captionTip.required=!0),r}return t}(mt),js=function(e){Pt(t,e);function t(n){$t(this,t);var r;r=Ot(this,t,[n]);var i=n.isHide?!1:n.required;return i&&r.push({type:"string",required:i,message:n.requiredMessage!==""?n.requiredMessage:j.getMessage("runtimeRequired",{caption:n.caption})}),r}return t}(xn),Tt=function(e){Pt(t,e);function t(n){$t(this,t);var r;r=Ot(this,t,[n]),A(r,"caption",void 0),A(r,"captionSize",void 0),A(r,"captionColor",void 0),A(r,"isCaptionItalic",void 0),A(r,"isHideCaption",void 0),A(r,"isShowCaptionTip",void 0),A(r,"captionTip",void 0),A(r,"labelPosition",void 0),A(r,"dataBind",void 0),A(r,"defaultValue",void 0),A(r,"placeholder",void 0),A(r,"defaultState",void 0),A(r,"required",void 0),A(r,"requiredMessage",void 0);var i;r.caption=(i=n==null?void 0:n.caption)!==null&&i!==void 0?i:"";var u;r.captionSize=(u=n==null?void 0:n.captionSize)!==null&&u!==void 0?u:"14";var o;r.captionColor=(o=n==null?void 0:n.captionColor)!==null&&o!==void 0?o:"";var l;r.isCaptionItalic=(l=n==null?void 0:n.isCaptionItalic)!==null&&l!==void 0?l:!1;var s;r.isHideCaption=(s=n==null?void 0:n.isHideCaption)!==null&&s!==void 0?s:!1;var a;r.isShowCaptionTip=(a=n==null?void 0:n.isShowCaptionTip)!==null&&a!==void 0?a:!1;var f;r.captionTip=(f=n==null?void 0:n.captionTip)!==null&&f!==void 0?f:"";var h;r.defaultState=(h=n==null?void 0:n.defaultState)!==null&&h!==void 0?h:"default";var v;r.labelPosition=(v=n==null?void 0:n.labelPosition)!==null&&v!==void 0?v:"top";var m;r.placeholder=(m=n==null?void 0:n.placeholder)!==null&&m!==void 0?m:"";var g;r.required=(g=n==null?void 0:n.required)!==null&&g!==void 0?g:!1;var d;r.requiredMessage=(d=n==null?void 0:n.requiredMessage)!==null&&d!==void 0?d:"",r.dataBind=new Rn(n==null?void 0:n.dataBind);var _;return r.defaultValue=(_=n==null?void 0:n.defaultValue)!==null&&_!==void 0?_:"",r}return t}(H);A(Tt,"Rules",Ls),A(Tt,"RuntimeRules",js);function qs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ns(e,t,n){return t=xe(t),Vs(e,rr()?Reflect.construct(t,n||[],xe(e).constructor):t.apply(e,n))}function Us(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function xe(e){return xe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},xe(e)}function ks(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Mt(e,t)}function Vs(e,t){return t&&(Gs(t)==="object"||typeof t=="function")?t:qs(e)}function Mt(e,t){return Mt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Mt(e,t)}function Gs(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function rr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(rr=function(){return!!e})()}var ir=function(e){ks(t,e);function t(n){Us(this,t);var r;return r=Ns(this,t,[n]),Re(r,"controlType","form"),Re(r,"props",void 0),r.props=new Tt(n==null?void 0:n.props),r}return t}(T);Re(ir,"controlEventKeys",["on_change","on_focus","on_blur"]),Re(ir,"controlCustomAttributes",void 0);function Hs(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zs(e,t,n){return t=Le(t),Js(e,ur()?Reflect.construct(t,n||[],Le(e).constructor):t.apply(e,n))}function Ws(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Le(e){return Le=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Le(e)}function Ks(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Rt(e,t)}function Js(e,t){return t&&(Xs(t)==="object"||typeof t=="function")?t:Hs(e)}function Rt(e,t){return Rt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Rt(e,t)}function Xs(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ur(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(ur=function(){return!!e})()}var Qs=function(e){Ks(t,e);function t(n){return Ws(this,t),zs(this,t,[n])}return t}(H);function xt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Zs(e){if(Array.isArray(e))return xt(e)}function Ys(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function or(e,t,n,r,i,u,o){try{var l=e[u](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,i)}function ec(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(s){or(u,r,i,o,l,"next",s)}function l(s){or(u,r,i,o,l,"throw",s)}o(void 0)})}}function tc(e,t,n){return t=Z(t),fc(e,sr()?Reflect.construct(t,n||[],Z(e).constructor):t.apply(e,n))}function nc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ar(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function rc(e,t,n){return t&&ar(e.prototype,t),n&&ar(e,n),e}function Q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ue(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ue=Reflect.get:ue=function(i,u,o){var l=dc(i,u);if(!!l){var s=Object.getOwnPropertyDescriptor(l,u);return s.get?s.get.call(o||i):s.value}},ue(e,t,n||e)}function Z(e){return Z=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Z(e)}function ic(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Lt(e,t)}function uc(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function oc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ac(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function lc(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){Q(e,i,n[i])})}return e}function sc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function cc(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):sc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function fc(e,t){return t&&(pc(t)==="object"||typeof t=="function")?t:Ys(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Lt(e,t)}function dc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Z(e),e!==null););return e}function lr(e){return Zs(e)||oc(e)||hc(e)||ac()}function pc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function hc(e,t){if(!!e){if(typeof e=="string")return xt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return xt(e,t)}}function sr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(sr=function(){return!!e})()}function yc(e,t){var n,r,i,u={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(u=0)),u;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return u.label++,{value:a[1],done:!1};case 5:u.label++,r=a[1],a=[0];continue;case 7:a=u.ops.pop(),u.trys.pop();continue;default:if(i=u.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){u=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){u.label=a[1];break}if(a[0]===6&&u.label<i[1]){u.label=i[1],i=a;break}if(i&&u.label<i[2]){u.label=i[2],u.ops.push(a);break}i[2]&&u.ops.pop(),u.trys.pop();continue}a=t.call(e,u)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var vc=1e4,cr=function(t){ic(n,t);function n(r){nc(this,n);var i;i=tc(this,n,[r]),Q(i,"controlType","layout"),Q(i,"children",void 0),Q(i,"excludes",void 0),Q(i,"childrenMaxLength",void 0),Q(i,"props",void 0);var u=uc(this,n)?this.constructor:void 0,o=u.excludes,l=u.childrenMaxLength;return i.props=new Qs(r==null?void 0:r.props),ht(i,"children",r==null?void 0:r.children,void 0,"Designer"),i.excludes=te(o),i.childrenMaxLength=l,i}return rc(n,[{key:"judgeExcludesChildren",value:function(i){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(i)}},{key:"judgeJoinChildren",value:function(i){var u=this.judgeExcludesChildren(i);return u&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(i,u){var o=this,l=this,s=function(){return ue(Z(n.prototype),"validate",o)};return ec(function(){return yc(this,function(a){switch(a.label){case 0:return[4,s().call(l,i,u)];case 1:return a.sent(),[4,Promise.all(this.children.map(function(f){return f.validate(i,u)}))];case 2:return a.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=ue(Z(n.prototype),"toDataBindModel",this).call(this),o=u?[u]:[];return this.children.reduce(function(l,s){var a=s.toDataBindModel(i);if(Array.isArray(a)){var f=a.filter(function(h){return!!h});return lr(l).concat(lr(f))}return a&&l.push(a),l},o)}},{key:"toSchema",value:function(){var i=ue(Z(n.prototype),"toSchema",this).call(this),u=this.children.map(function(o){var l=o.toSchema();return l});return cc(lc({},i),{children:u})}}]),n}(T);Q(cr,"excludes",!1),Q(cr,"childrenMaxLength",vc);function _c(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gc(e,t,n){return t=je(t),Ec(e,fr()?Reflect.construct(t,n||[],je(e).constructor):t.apply(e,n))}function mc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},je(e)}function bc(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&jt(e,t)}function Ec(e,t){return t&&(wc(t)==="object"||typeof t=="function")?t:_c(e)}function jt(e,t){return jt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},jt(e,t)}function wc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(fr=function(){return!!e})()}var Bc=function(e){bc(t,e);function t(n,r,i){mc(this,t);var u;u=gc(this,t,[r]),oe(u,"headers",void 0),oe(u,"footers",void 0),oe(u,"pageIndex",void 0),oe(u,"pageSize",void 0),oe(u,"pageSizeOptions",void 0),oe(u,"totalCount",void 0),ht(u,"headers",r==null?void 0:r.headers,n,i),ht(u,"footers",r==null?void 0:r.footers,n);var o;u.pageIndex=(o=r==null?void 0:r.pageIndex)!==null&&o!==void 0?o:1;var l;u.pageSize=(l=r==null?void 0:r.pageSize)!==null&&l!==void 0?l:20;var s;u.pageSizeOptions=(s=r==null?void 0:r.pageSizeOptions)!==null&&s!==void 0?s:[20];var a;return u.totalCount=(a=r==null?void 0:r.totalCount)!==null&&a!==void 0?a:0,u}return t}(H);function qt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Sc(e){if(Array.isArray(e))return qt(e)}function Ac(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dr(e,t,n,r,i,u,o){try{var l=e[u](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,i)}function Fc(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var u=e.apply(t,n);function o(s){dr(u,r,i,o,l,"next",s)}function l(s){dr(u,r,i,o,l,"throw",s)}o(void 0)})}}function Cc(e,t,n){return t=Y(t),Mc(e,_r()?Reflect.construct(t,n||[],Y(e).constructor):t.apply(e,n))}function Ic(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Oc(e,t,n){return t&&pr(e.prototype,t),n&&pr(e,n),e}function qe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ae(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?ae=Reflect.get:ae=function(i,u,o){var l=Rc(i,u);if(!!l){var s=Object.getOwnPropertyDescriptor(l,u);return s.get?s.get.call(o||i):s.value}},ae(e,t,n||e)}function Y(e){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Y(e)}function $c(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Nt(e,t)}function Pc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Dc(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function hr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){qe(e,i,n[i])})}return e}function Tc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function yr(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Tc(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Mc(e,t){return t&&(xc(t)==="object"||typeof t=="function")?t:Ac(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Nt(e,t)}function Rc(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Y(e),e!==null););return e}function vr(e){return Sc(e)||Pc(e)||Lc(e)||Dc()}function xc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Lc(e,t){if(!!e){if(typeof e=="string")return qt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return qt(e,t)}}function _r(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_r=function(){return!!e})()}function jc(e,t){var n,r,i,u={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(u=0)),u;)try{if(n=1,r&&(i=a[0]&2?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return u.label++,{value:a[1],done:!1};case 5:u.label++,r=a[1],a=[0];continue;case 7:a=u.ops.pop(),u.trys.pop();continue;default:if(i=u.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){u=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){u.label=a[1];break}if(a[0]===6&&u.label<i[1]){u.label=i[1],i=a;break}if(i&&u.label<i[2]){u.label=i[2],u.ops.push(a);break}i[2]&&u.ops.pop(),u.trys.pop();continue}a=t.call(e,u)}catch(f){a=[6,f],r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var qc=function(e){$c(t,e);function t(n){Ic(this,t);var r;return r=Cc(this,t,[n]),qe(r,"controlType","list"),qe(r,"props",void 0),r.props=new Bc(r,n==null?void 0:n.props,"Designer"),r}return Oc(t,[{key:"validate",value:function(r,i){var u=this,o=this,l=function(){return ae(Y(t.prototype),"validate",u)};return Fc(function(){return jc(this,function(s){switch(s.label){case 0:return[4,l().call(o,r)];case 1:return s.sent(),[4,Promise.all(this.props.headers.map(function(a){return a.validate(r,i)}))];case 2:return s.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=ae(Y(t.prototype),"toDataBindModel",this).call(this),i=r?[r]:[],u=this.id;return this.props.headers.reduce(function(o,l){var s=l.toDataBindModel(u);if(Array.isArray(s)){var a=s.filter(function(f){return!!f});return vr(o).concat(vr(a))}return s&&o.push(s),o},i)}},{key:"toSchema",value:function(){var r,i,u=ae(Y(t.prototype),"toSchema",this).call(this),o=this.props.headers.map(function(s){return s.toSchema()}),l=(i=this.props)===null||i===void 0||(r=i.footers)===null||r===void 0?void 0:r.map(function(s){if(s)return s.toSchema()});return yr(hr({},u),{props:yr(hr({},this.props),{headers:o,footers:l})})}}]),t}(T);qe(qc,"controlFieldType",W.LIST);function Nc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gr(e,t,n){return t=Ne(t),Uc(e,Er()?Reflect.construct(t,n||[],Ne(e).constructor):t.apply(e,n))}function mr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function M(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function br(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ut(e,t)}function Uc(e,t){return t&&(kc(t)==="object"||typeof t=="function")?t:Nc(e)}function Ut(e,t){return Ut=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Ut(e,t)}function kc(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Er(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Er=function(){return!!e})()}var Vc=function(e){br(t,e);function t(n){mr(this,t);var r;return r=gr(this,t,[n]),M(r,"caption",{type:"string",required:!0,message:j.getMessage("pleaseEnterCaption")}),M(r,"width",{type:"number",required:!1,message:j.getMessage("pleaseEnterColumnWidth")}),r.width.required=n.widthType==="px",r}return t}(mt),Gc=function(e){br(t,e);function t(n){mr(this,t);var r;r=gr(this,t,[n]),M(r,"widthType",void 0),M(r,"width",void 0),M(r,"caption",void 0),M(r,"dataBind",void 0),M(r,"autoWidth",void 0),M(r,"fixed",void 0),M(r,"sort",void 0),M(r,"align",void 0),M(r,"colSpan",void 0),M(r,"autoHeight",void 0),M(r,"children",void 0);var i;r.width=(i=n==null?void 0:n.width)!==null&&i!==void 0?i:150,r.widthType=(n==null?void 0:n.widthType)||"auto";var u;r.caption=(u=n==null?void 0:n.caption)!==null&&u!==void 0?u:"";var o;r.fixed=(o=n==null?void 0:n.fixed)!==null&&o!==void 0?o:"none",r.autoWidth=new jl(n==null?void 0:n.autoWidth),r.dataBind=new Rn(n==null?void 0:n.dataBind);var l;r.sort=(l=n==null?void 0:n.sort)!==null&&l!==void 0?l:!0,r.align=n==null?void 0:n.align,r.colSpan=n==null?void 0:n.colSpan;var s;return r.autoHeight=(s=n==null?void 0:n.autoHeight)!==null&&s!==void 0?s:!1,r}return t}(H);M(Gc,"Rules",Vc);function kt(e){return"children"in e&&re(e.children)}function wr(e){return"headers"in e.props&&re(e.props.headers)}function Br(e){return"footers"in e.props&&re(e.props.footers)}function Ue(e,t){Array.isArray(e)&&e.map(n=>{n.type===y.SUBTABLE?Ue(n.props.headers,t):kt(n)?Ue(n==null?void 0:n.children,t):n.controlType===D.FORM&&t(n)})}const Sr=[y.AMOUNT,y.CALC,y.DATE_RANGE],Ar={amount:{caption:"\u91D1\u989D",fieldType:W.DECIMAL},currency:{caption:"\u5E01\u79CD",fieldType:W.VARCHAR},result:{caption:"\u7ED3\u679C",fieldType:W.DECIMAL},unit:{caption:"\u5355\u4F4D",fieldType:W.VARCHAR},min:{caption:"\u5F00\u59CB\u65F6\u95F4",fieldType:W.TIMESTAMP},max:{caption:"\u7ED3\u675F\u65F6\u95F4",fieldType:W.TIMESTAMP}};function Hc(e){let t=[];return Ue(e,n=>{n.controlType===D.FORM?t.push(n):(n.type,y.SUBTABLE)}),t}function zc(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===y.TITLE)return n;if(Sr.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(i=>{const u=r[i],o=n.controlId+"_"+i;u.fieldCode=Fr(o),u.dataCode=t})}else n.dataBind.fieldCode=Fr(n.controlId),n.dataBind.dataCode=t;return n})}function Fr(e){const t="field_";return e.startsWith(t)?e:t+e}function ke(e){return Ka[e]}function Wc(e){const t=new ee,n=[];return e.forEach(r=>{if(!(r.parentId||!r.dataBind))if(Sr.includes(r.type)){const i=r.dataBind,u=r.datasourceBind;Object.keys(i).forEach(o=>{const l=i[o],s=Ar[o].fieldType,a=r.caption+"_"+Ar[o].caption,f=ke(s);if(!f)return;const h={caption:a,dataBind:l};o==="currency"&&(h.optionConfig="datasource",h.datasourceBind=u);const v=t.createControlInstance(f,{props:h});v&&n.push(v)})}else{const i=ke(r.fieldType);if(!i)return;const u=t.createControlInstance(i,{props:{caption:r.caption,dataBind:r.dataBind,datasourceBind:r.datasourceBind}});u&&n.push(u)}}),n}function Kc(e){const t=new ee,r=(Array.isArray(e)?e:[e]).map(i=>{const u=ke(i);return t.createControlInstance(u)});return Array.isArray(e)?r:r[0]}function Vt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Gt(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Ht(e,t,n){return cn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(i=>i.validate(t,n)))).every(i=>i):yield e.validate(t,n)})}const Jc=[y.TITLE,y.GRID_TABLE_COLUMN,y.SUBTABLE_COLUMN,y.OPERATION_COLUMN,y.DATA_VIEW,y.LIST_VIEW,y.HEADER,y.FOOTER,y.SIMPLE_SEARCH,y.ROW,y.GRID_ROW,y.COL,y.GRID,y.DIVIDER,y.TAB_PANE,y.TAB,y.CARD_GROUP,y.ACTION_BAR,y.GRID_LAYOUT_CONTAINER,y.GRID_LAYOUT_WRAP],Xc=[y.CALC],Qc={check:{id:"listPageCheckBtnId",caption:"\u67E5\u770B"},edit:{id:"listPageEditBtnId",caption:"\u7F16\u8F91"},delete:{id:"listPageDeleteBtnId",caption:"\u5220\u9664"}};function Ae(e,t){var r,i,u,o,l,s,a,f,h;const n=[];if(re(e))n.push(...e.map(v=>Ae(v,t)).flat());else{const v=e.type,{caption:m,content:g}=e.props;let d;if(Jc.includes(v))v===y.OPERATION_COLUMN&&Object.entries(Qc).reduce((_,[c,{caption:p,id:F}])=>{var C;const w=e.props[c];return w&&w.isShow&&_.push({controlId:F,caption:p,type:e.type,controlType:e.controlType,parentId:(C=t==null?void 0:t.controlId)!=null?C:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),_},n);else if(d={controlId:e.id,caption:m||g||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Xc.includes(v),canRead:!0,canHide:!0,group:"element"},t&&t.type===y.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),v===y.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===D.FORM||e.controlType===D.COLUMN)&&((u=(i=e.props)==null?void 0:i.dataBind)==null?void 0:u.fieldCode)!==void 0&&((l=(o=e.props)==null?void 0:o.dataBind)==null?void 0:l.fieldCode)!==""&&(d.group="field"),n.push(d),v===y.VUE_FORM_ITEM){let _="element";((a=(s=e.props)==null?void 0:s.dataBind)==null?void 0:a.fieldCode)!==void 0&&((h=(f=e.props)==null?void 0:f.dataBind)==null?void 0:h.fieldCode)!==""&&(_="field");const c=e.props.permissions;c==null||c.map(p=>{var F;d={controlId:p.key,caption:p.caption,type:e.type,controlType:e.controlType,parentId:(F=e.id)!=null?F:null,canEdit:!0,canRead:!0,canHide:!0,group:_},n.push(d)})}e.children&&n.push(...e.children.map(_=>Ae(_,t)).flat()),e.controlType===D.LIST&&n.push(...e.props.headers.map(_=>Ae(_,d)).flat())}return n}class ee extends me{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new ge,this.fieldTypes=W,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t,"Designer");const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(i){throw i}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return cn(this,null,function*(){return Ht(...t)})}getModelBindInfoList(...t){return Gt(...t)}getSchema(...t){return Vt(...t)}listenControlHook(...t){return Vn.on(...t)}}ee.EventLogic=ge;class Zc{constructor(){this.designer=new ee}ListPageBuilder(){const t=this.designer.createControlInstance(y.LIST_VIEW),n=this.designer.createControlInstance(y.SIMPLE_SEARCH),r=this.designer.createControlInstance(y.GRID_TABLE),i=this.designer.createControlInstance(y.CREATE_FORM_LIST_BUTTON),u=this.designer.createControlInstance(y.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(y.EXPORT_LIST_BUTTON),l=this.designer.createControlInstance(y.EXPORT_RECORD_LIST_BUTTON);return r.children.push(i),r.children.push(u),r.children.push(o),r.children.push(l),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(y.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(y.SIMPLE_SEARCH),r=this.designer.createControlInstance(y.GRID_TABLE),i=this.designer.createControlInstance(y.EXPORT_LIST_BUTTON),u=this.designer.createControlInstance(y.EXPORT_RECORD_LIST_BUTTON);return r.children.push(i),r.children.push(u),t.children.push(n),t.children.push(r),t.props.rowStyleRules.push({id:"default",name:"\u5BA1\u6279\u901A\u8FC7\u5355\u636E",color:"theme",filters:[{ruleId:1,symbol:"op_equal",leftVariableBo:{type:"varchar",value:"process_status",name:"\u6D41\u7A0B\u72B6\u6001"},checked:!1,describe:"ruleLine",type:"condition",rightVariableBo:{type:"custom",value:["COMPLETE"],displayBos:[]},isLowPerformance:!1,isMoreRelation:!1}]}),t.props.rowStyleRulesScript.push({id:"default",script:"(params.data['process_status']==='COMPLETE')",color:"theme"}),t}FormPageBuilder(){const t=this.designer.createControlInstance(y.DATA_VIEW),n=this.designer.createControlInstance(y.TITLE),r=this.designer.createControlInstance(y.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(y.GRID),n=this.designer.createControlInstance(y.VUE_FORM_ITEM);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}class Cr{constructor(t){var n;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?Fe(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?$r(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=Fe(t)}updateDataFieldCodeMap(t){const n=Fe(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[i,u]of r.entries())if(u.id===t.id){r.delete(i);break}Or(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;le(this.instance,i=>{t.push(i),n.set(i.id,i),Or(i,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Ir(e,t,n){const{dataCode:r,fieldCode:i}=t;r&&i&&(e.has(r)||e.set(r,new Map),e.get(r).set(i,n))}function Or(e,t){if(e.controlType===D.FORM){const n=e.props.dataBind;tr(n)?Ir(t,n,e):Object.values(n).forEach(r=>{Ir(t,r,e)})}}function le(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{var i,u;t(r),kt(r)&&le(r.children,t),wr(r)&&le(r.props.headers,t),Br(r)&&le((u=(i=r.props)==null?void 0:i.footers)!=null?u:[],t)})}function zt(e){return[y.SUBTABLE,y.DATA_VIEW,y.LIST_VIEW].includes(e.type)}function Fe(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!zt(t);)t=t.parent;return t}function $r(e){const t=[e];return le(e,n=>{n!==e&&t.includes(n.parent)&&!zt(n)&&t.push(n)}),t}function Yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ef(e,t,n){return t&&Pr(e.prototype,t),n&&Pr(e,n),e}function Wt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var z=function(){function e(t){Yc(this,e),Wt(this,"visible",void 0),Wt(this,"expression",void 0),Wt(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var i;this.updateParent=(i=t==null?void 0:t.updateParent)!==null&&i!==void 0?i:!1}return ef(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function tf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Dr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function nf(e,t,n){return t&&Dr(e.prototype,t),n&&Dr(e,n),e}function U(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var rf=function(){function e(t){tf(this,e),U(this,"type",void 0),U(this,"label",void 0),U(this,"key",void 0),U(this,"component",void 0),U(this,"effect",void 0),U(this,"scopeEffect",void 0),U(this,"defaultValue",void 0),U(this,"validator",void 0),U(this,"props",void 0),U(this,"effectKeys",void 0),this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component;var n;this.effect=(n=t.effect)!==null&&n!==void 0?n:{};var r;this.scopeEffect=(r=t.scopeEffect)!==null&&r!==void 0?r:Wa,this.defaultValue=t.defaultValue,this.validator=t.validator;var i;this.props=(i=t.props)!==null&&i!==void 0?i:new z,this.effectKeys=Object.keys(this.effect)}return nf(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(i){var u=new RegExp("^".concat(i,"(\\.\\w+)*$"));return u.test(n)}).map(function(i){return r.effect[i]})}},{key:"callEffectFn",value:function(n,r){try{var i=n.apply(null,r);lt(i)&&Object.assign(this.props,i)}catch(u){_e(`effect error
|
|
2
|
-
`.concat(u))}}},{key:"callEffect",value:function(n){for(var r=this,i=arguments.length,u=new Array(i>1?i-1:0),o=1;o<i;o++)u[o-1]=arguments[o];this.filterEffects(n).forEach(function(l){return r.callEffectFn(l,u)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];this.callEffectFn(this.scopeEffect,r)}}]),e}();function uf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ne(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Tr=function e(t){uf(this,e),ne(this,"type","group"),ne(this,"title",void 0),ne(this,"required",void 0),ne(this,"items",void 0),ne(this,"tips",void 0),ne(this,"fromId",void 0),ne(this,"visible",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(function(i){var u;return(u=i.props)===null||u===void 0?void 0:u.visible})};function of(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function af(e){return"type"in e&&e.type==="tab"}var Ce=function e(t){of(this,e),Kt(this,"type","tab"),Kt(this,"title",void 0),Kt(this,"items",void 0),this.title=t.title,this.items=t.items};function Mr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function lf(e){if(Array.isArray(e))return e}function sf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cf(e,t,n){return t=Ve(t),yf(e,Rr()?Reflect.construct(t,n||[],Ve(e).constructor):t.apply(e,n))}function ff(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(e)}function df(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Jt(e,t)}function pf(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],i=!0,u=!1,o,l;try{for(n=n.call(e);!(i=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));i=!0);}catch(s){u=!0,l=s}finally{try{!i&&n.return!=null&&n.return()}finally{if(u)throw l}}return r}}function hf(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function yf(e,t){return t&&(_f(t)==="object"||typeof t=="function")?t:sf(e)}function Jt(e,t){return Jt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Jt(e,t)}function vf(e,t){return lf(e)||pf(e,t)||gf(e,t)||hf()}function _f(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function gf(e,t){if(!!e){if(typeof e=="string")return Mr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Mr(e,t)}}function Rr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Rr=function(){return!!e})()}var mf=function(e){df(t,e);function t(n){ff(this,t);var r;return r=cf(this,t,[n]),lt(n)&&Object.entries(n).forEach(function(i){var u=vf(i,2),o=u[0],l=u[1];r[o]=l}),r}return t}(z);function bf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ef(e,t,n){return t=He(t),Sf(e,xr()?Reflect.construct(t,n||[],He(e).constructor):t.apply(e,n))}function wf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ge(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function He(e){return He=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},He(e)}function Bf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Xt(e,t)}function Sf(e,t){return t&&(Af(t)==="object"||typeof t=="function")?t:bf(e)}function Xt(e,t){return Xt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Xt(e,t)}function Af(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function xr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(xr=function(){return!!e})()}var Ff=function(e){Bf(t,e);function t(n){wf(this,t);var r;r=Ef(this,t,[n]),Ge(r,"maxLength",void 0),Ge(r,"minLength",void 0),Ge(r,"placeholder",void 0),Ge(r,"i18n",void 0);var i;r.maxLength=(i=n==null?void 0:n.maxLength)!==null&&i!==void 0?i:"";var u;r.minLength=(u=n==null?void 0:n.minLength)!==null&&u!==void 0?u:"";var o;r.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"";var l;return r.i18n=(l=n==null?void 0:n.i18n)!==null&&l!==void 0?l:!1,r}return t}(z);function Cf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function If(e,t,n){return t=ze(t),Pf(e,Lr()?Reflect.construct(t,n||[],ze(e).constructor):t.apply(e,n))}function Of(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Qt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ze(e){return ze=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ze(e)}function $f(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Zt(e,t)}function Pf(e,t){return t&&(Df(t)==="object"||typeof t=="function")?t:Cf(e)}function Zt(e,t){return Zt=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},Zt(e,t)}function Df(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Lr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Lr=function(){return!!e})()}var Tf=function(e){$f(t,e);function t(n){Of(this,t);var r;r=If(this,t,[n]),Qt(r,"max",void 0),Qt(r,"min",void 0),Qt(r,"placeholder",void 0);var i;r.max=(i=n==null?void 0:n.max)!==null&&i!==void 0?i:"";var u;r.min=(u=n==null?void 0:n.min)!==null&&u!==void 0?u:"";var o;return r.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"",r}return t}(z);function Mf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Rf(e,t,n){return t=We(t),jf(e,jr()?Reflect.construct(t,n||[],We(e).constructor):t.apply(e,n))}function xf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function Lf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&en(e,t)}function jf(e,t){return t&&(qf(t)==="object"||typeof t=="function")?t:Mf(e)}function en(e,t){return en=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},en(e,t)}function qf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function jr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(jr=function(){return!!e})()}var Nf=function(e){Lf(t,e);function t(n){xf(this,t);var r;r=Rf(this,t,[n]),Yt(r,"showType",void 0),Yt(r,"tips",void 0),Yt(r,"disabled",void 0);var i;r.showType=(i=n==null?void 0:n.showType)!==null&&i!==void 0?i:"switch";var u;r.tips=(u=n==null?void 0:n.tips)!==null&&u!==void 0?u:"";var o;return r.disabled=(o=n==null?void 0:n.disabled)!==null&&o!==void 0?o:!1,r}return t}(z);function Uf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kf(e,t,n){return t=Ke(t),zf(e,qr()?Reflect.construct(t,n||[],Ke(e).constructor):t.apply(e,n))}function Vf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ke(e){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(e)}function Hf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&tn(e,t)}function zf(e,t){return t&&(Wf(t)==="object"||typeof t=="function")?t:Uf(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},tn(e,t)}function Wf(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function qr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(qr=function(){return!!e})()}var Kf=function(e){Hf(t,e);function t(n){Vf(this,t);var r;r=kf(this,t,[n]),Gf(r,"options",void 0);var i;return r.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[],r}return t}(z);function Jf(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Xf(e,t,n){return t=Je(t),Yf(e,Ur()?Reflect.construct(t,n||[],Je(e).constructor):t.apply(e,n))}function Qf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Je(e){return Je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Je(e)}function Zf(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&nn(e,t)}function Yf(e,t){return t&&(ed(t)==="object"||typeof t=="function")?t:Jf(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},nn(e,t)}function ed(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Ur(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Ur=function(){return!!e})()}var td=function(e){Zf(t,e);function t(n){Qf(this,t);var r;r=Xf(this,t,[n]),Nr(r,"placeholder",void 0),Nr(r,"options",void 0);var i;r.placeholder=(i=n==null?void 0:n.placeholder)!==null&&i!==void 0?i:"";var u;return r.options=(u=n==null?void 0:n.options)!==null&&u!==void 0?u:[],r}return t}(z);function nd(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function rd(e,t,n){return t=Xe(t),od(e,Vr()?Reflect.construct(t,n||[],Xe(e).constructor):t.apply(e,n))}function id(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function kr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Xe(e){return Xe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Xe(e)}function ud(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&rn(e,t)}function od(e,t){return t&&(ad(t)==="object"||typeof t=="function")?t:nd(e)}function rn(e,t){return rn=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},rn(e,t)}function ad(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Vr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Vr=function(){return!!e})()}var ld=function(e){ud(t,e);function t(n){id(this,t);var r;r=rd(this,t,[n]),kr(r,"options",void 0),kr(r,"showType",void 0);var i;r.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[];var u;return r.showType=(u=n==null?void 0:n.showType)!==null&&u!==void 0?u:"outline",r}return t}(z);function sd(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cd(e,t,n){return t=Qe(t),pd(e,Gr()?Reflect.construct(t,n||[],Qe(e).constructor):t.apply(e,n))}function fd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function se(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qe(e){return Qe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Qe(e)}function dd(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&un(e,t)}function pd(e,t){return t&&(hd(t)==="object"||typeof t=="function")?t:sd(e)}function un(e,t){return un=Object.setPrototypeOf||function(r,i){return r.__proto__=i,r},un(e,t)}function hd(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Gr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Gr=function(){return!!e})()}var yd=function(e){dd(t,e);function t(n){fd(this,t);var r;r=cd(this,t,[n]),se(r,"maxLength",void 0),se(r,"minLength",void 0),se(r,"placeholder",void 0),se(r,"i18n",void 0),se(r,"maxRows",void 0),se(r,"minRows",void 0);var i;r.maxLength=(i=n==null?void 0:n.maxLength)!==null&&i!==void 0?i:"";var u;r.minLength=(u=n==null?void 0:n.minLength)!==null&&u!==void 0?u:"";var o;r.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"";var l;r.maxRows=(l=n==null?void 0:n.maxRows)!==null&&l!==void 0?l:"";var s;r.minRows=(s=n==null?void 0:n.minRows)!==null&&s!==void 0?s:"";var a;return r.i18n=(a=n==null?void 0:n.i18n)!==null&&a!==void 0?a:!1,r}return t}(z);function vd(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function on(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(i){return Object.getOwnPropertyDescriptor(n,i).enumerable}))),r.forEach(function(i){vd(e,i,n[i])})}return e}function _d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function an(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):_d(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function gd(e,t){switch(e){case"input":return new Ff(t);case"textarea":return new yd(t);case"input-number":return new Tf(t);case"switch":return new Nf(t);case"radio":return new ld(t);case"checkbox":return new Kf(t);case"select":return new td(t);default:return new mf(t)}}function md(e){return function(t){var n=e.get(t);if(!!n)return new rf(an(on({},n),{props:gd(n.component,"props"in n?n.props:void 0)}))}}function bd(e){var t=e.fields.reduce(function(i,u){return i.set(u.key,u),i},new Map);function n(i){return new Tr(an(on({},i),{items:i.items.map(md(t)).filter(Boolean)}))}function r(i){return i.map(n)}return e.groups.map(function(i){return af(i)?new Ce(an(on({},i),{items:r(i.items)})):n(i)})}let ln="";class Hr extends Fn{constructor(t){super(),this.isMounted=!1,this.id=tt(8),this.__pluginsApplied=!1,this.getSchema=Vt,this.getModelBindInfoList=Gt,this.generatePermissions=Ae,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=ee,schema:i,mode:u="form",store:o={}}=this.$options;this.eventLogic=new ge,this.designer=new r,this.store=new Cr(de({instance:this.designer.createControl(Array.isArray(i)?i:[i])},o)),this.mode=u,n&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{ln=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),ln=""}catch(r){_e(`${ln||t.constructor.name} Plugin apply Error
|
|
3
|
-
${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var i
|
|
1
|
+
var b5=Object.defineProperty;var Wr=Object.getOwnPropertySymbols;var B5=Object.prototype.hasOwnProperty,F5=Object.prototype.propertyIsEnumerable;var Hr=(B,O,I)=>O in B?b5(B,O,{enumerable:!0,configurable:!0,writable:!0,value:I}):B[O]=I,le=(B,O)=>{for(var I in O||(O={}))B5.call(O,I)&&Hr(B,I,O[I]);if(Wr)for(var I of Wr(O))F5.call(O,I)&&Hr(B,I,O[I]);return B};var sn=(B,O,I)=>new Promise((Je,we)=>{var Xe=V=>{try{se(I.next(V))}catch(ce){we(ce)}},Qe=V=>{try{se(I.throw(V))}catch(ce){we(ce)}},se=V=>V.done?Je(V.value):Promise.resolve(V.value).then(Xe,Qe);se((I=I.apply(B,O)).next())});(function(B,O){typeof exports=="object"&&typeof module!="undefined"?O(exports):typeof define=="function"&&define.amd?define(["exports"],O):(B=typeof globalThis!="undefined"?globalThis:B||self,O(B.modelDrivenDriven={}))})(this,function(B){"use strict";var O="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",I="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Je="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",we="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Xe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Qe="{caption}\u5FC5\u586B",se="\u8BF7\u8F93\u5165\u6807\u9898",V="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ce="\u8BF7\u8F93\u5165\u884C\u6807\u9898",zr="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Kr="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Jr="\u8BF7\u7ED1\u5B9A\u8868\u5355",Xr="\u8BF7\u7ED1\u5B9A\u5217\u8868",Qr="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Zr="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Yr="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",eu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",tu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",nu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ru="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",uu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",iu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ou="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",au="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",lu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",su="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",cu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",du="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",pu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",vu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",hu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",yu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",_u="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",mu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",gu="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Eu="\u8BF7\u7ED1\u5B9A\u670D\u52A1",bu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bu="\u8BF7\u9009\u62E9\u7701",Fu="\u8BF7\u9009\u62E9\u5E02",Cu="\u8BF7\u9009\u62E9\u533A",Au="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",wu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Su="\u8BF7\u8F93\u5165\u5217\u5BBD",$u="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Du="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Ou="\u8BF7\u9009\u62E9\u63A7\u4EF6",Iu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Pu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Tu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ru="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Mu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",xu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Lu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",qu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ku="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Vu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Gu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Wu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Hu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",zu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ku="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ju="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Xu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Qu="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Zu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Yu="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",ei="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",ti="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",ni="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",ri="\u6279\u91CF\u5220\u9664",ui="\u6279\u91CF\u6253\u5370",ii="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",oi="\u6309\u94AE",ai="\u521B\u5EFA\u5355\u636E",li="\u4EEA\u8868\u76D8",si="\u5206\u5272\u7EBF",ci="\u5BFC\u51FA",fi="\u8868\u5355\u64CD\u4F5C",di="\u5BFC\u5165",pi="\u53D1\u7968\u8BC6\u522B",vi="\u94FE\u63A5",hi="\u5217\u8868\u9009\u62E9",yi="\u5217\u8868\u89C6\u56FE",_i="\u64CD\u4F5C\u6309\u94AE",mi="\u5206\u9875",gi="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Ei="\u8BF4\u660E\u6587\u5B57",bi="\u6587\u5B57\u8BC6\u522B",Bi="\u6807\u9898\u7EC4\u4EF6",Fi="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Ci="\u6570\u7EC4",Ai="\u81EA\u52A8\u7F16\u53F7",wi="\u81EA\u5B9A\u4E49",Si="\u6570\u503C",$i="\u90E8\u95E8",Di="\u4EBA\u5458",Oi="\u9644\u4EF6",Ii="\u56FE\u7247",Pi="\u5730\u5740",Ti="\u64CD\u4F5C",Ri="\u5E8F\u53F7",Mi="\u4EBA\u5458",xi="\u957F\u6587\u672C",Li="\u65E5\u671F\u533A\u95F4",ji="\u65E5\u671F",qi="\u77ED\u6587\u672C",Ni="\u6362\u884C\u5BB9\u5668Wrap",ki="\u8868\u683C",Vi="\u660E\u7EC6\u5B50\u8868",Ui="\u5730\u5740",Gi="\u91D1\u989D",Wi="\u8BA1\u7B97\u516C\u5F0F",Hi="\u591A\u9009",zi="\u7535\u5B50\u7B7E\u7AE0",Ki="\u5355\u884C\u6587\u672C",Ji="\u6570\u5B57",Xi="\u4E1A\u52A1\u7EC4\u7EC7",Qi="\u5355\u9009",Zi="\u5BCC\u6587\u672C",Yi="\u8BC4\u5206",eo="\u6570\u5B57\u533A\u95F4",to="\u4E0B\u62C9\u5355\u9009",no="\u4E0B\u62C9\u591A\u9009",ro="\u5173\u8054\u5355\u9009",uo="\u591A\u884C\u6587\u672C",io="\u6811",oo="Vue\u5BB9\u5668",ao="Vue\u9875\u9762",lo="\u5728\u7EBF\u6587\u6863",so="\u6309\u94AE\u64CD\u4F5C\u680F",co="\u9AD8\u7EA7\u5BB9\u5668",fo="\u5206\u7EC4",po="\u6805\u683C\u5217",vo="\u6570\u636E\u5BB9\u5668",ho="\u753B\u5E03",yo="\u6362\u884C\u5BB9\u5668",_o="\u6805\u683C\u7B49\u5206\u884C",mo="\u5217\u8868\u5BB9\u5668",go="\u81EA\u7531\u9875\u9762",Eo="\u5B9A\u4F4D\u5B50\u5BB9\u5668",bo="\u5B9A\u4F4D\u5BB9\u5668",Bo="\u6805\u683C\u5E03\u5C40",Fo="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Co="\u660E\u7EC6\u5B50\u8868\u884C",Ao="\u6807\u7B7E\u9875",wo="\u6807\u7B7E\u5355\u5143",So="\u5DE5\u5177\u680F",$o="\u6279\u91CF\u63D0\u4EA4",Do="\u5BFC\u51FA\u8BB0\u5F55",Oo="\u5217\u8868\u89C6\u56FE",Io="\u7ED3\u675F\u65F6\u95F4",Po="\u5F00\u59CB\u65F6\u95F4",To="\u5355\u4F4D",Ro="\u7ED3\u679C",Mo="\u5E01\u79CD",xo="\u7ED3\u675F\u65E5\u671F",Lo="\u5F00\u59CB\u65E5\u671F",jo="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",qo="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",No="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ko="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",Vo="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",Uo="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",Go="\u8BF7\u9009\u62E9",Wo="\u8BF7\u9009\u62E9\u7EC4\u7EC7",Ho="\u8BF7\u9009\u62E9\u90E8\u95E8",zo="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",Ko="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",Jo="\u8BF7\u9009\u62E9\u5730\u5740",Xo="\u5F39\u7A97\u786E\u8BA4\u65F6",Qo="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Zo="\u884C\u9009\u4E2D\u65F6",Yo="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",ea="\u884C\u5220\u9664\u524D",ta="\u884C\u70B9\u51FB\u65F6",na="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",ra="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",ua="\u91CD\u547D\u540D\u65F6",ia="\u4FDD\u5B58\u6587\u4EF6\u65F6",oa="\u6253\u5F00\u6587\u4EF6\u65F6",aa="\u83B7\u53D6\u7126\u70B9\u65F6",la="\u5931\u53BB\u7126\u70B9\u65F6",sa="\u7528\u6237\u8F93\u5165\u65F6",ca="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",fa="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",da="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",pa="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",va="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",ha="\u641C\u7D22\u65F6",ya="\u503C\u53D1\u751F\u53D8\u5316\u65F6",_a="\u6267\u884C\u5B8C\u6210\u65F6",ma="\u70B9\u51FB\u65F6",ga="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Ea="\u8BF7\u8F93\u5165\u65E5\u671F",ba="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ba="\u8BF7\u8F93\u5165",Fa="\u9ED8\u8BA4\u6A21\u7248",Ca="\u5DE6\u53F3\u5E03\u5C40",Aa="\u4E0A\u4E0B\u5E03\u5C40",wa="\u53EA\u8BFB",Sa="\u5FC5\u586B",$a="\u63D0\u793A\u6587\u5B57",Da="\u9690\u85CF\u6807\u9898",Oa="\u6807\u9898\u5FC5\u586B",Ia="\u7EC4\u7EC7\u5F62\u6001",Pa="\u4E1A\u52A1\u7C7B\u578B",Ta="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Ra="\u9690\u85CF",Ma="\u6D41\u7A0B\u72B6\u6001",xa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",La="\u5220\u9664",ja="\u7F16\u8F91",qa="\u67E5\u770B",Na="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",ka="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",Va="\u5145\u6EE1\u6574\u884C",Ua="\u6700\u5C0F\u503C",Ga="\u6700\u5927\u503C",Wa="\u65B0\u5EFA\u6587\u6863",Ha="\u91CD\u7F6E",za="\u67E5\u8BE2",Ka="\u660E\u7EC6",Ja="\u6253\u5370",Xa="\u4FDD\u5B58\u8349\u7A3F",Qa="\u4FDD\u5B58",Za="\u53D6\u6D88",Ya="\u4E0A\u4F20\u56FE\u7247",el="\u53D1\u8D77\u7B7E\u7F72",tl="\u4E0A\u4F20\u9644\u4EF6",nl="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",rl="\u5F15\u7528\u5217\u8868",ul="\u9009\u9879\u4E00",il="\u9009\u9879\u4E8C",ol="\u9009\u9879\u4E09",al={isNotNumber:O,isNotString:I,isNotObject:Je,isNotArray:we,isNotBoolean:Xe,runtimeRequired:Qe,pleaseEnterCaption:se,pleaseEnterCaptionTip:V,pleaseEnterRowCaption:ce,pleaseEnterPlaceholder:zr,pleaseEnterFieldCode:Kr,pleaseEnterForm:Jr,pleaseEnterList:Xr,pleaseEnterProcess:Qr,pleaseEnterLabel:Zr,pleaseEnterValue:Yr,bizKeyNotBindFiled:eu,pleaseSelectOneField:tu,pleaseEnterNumberRange:nu,pleaseEnterAValueGreaterThanMin:ru,pleaseEnterAValueLessThanMax:uu,numberRangeSetError:iu,stringRangeError:ou,attachmentMaxSize:au,pleaseEnterTotalScoreSetting:lu,theTotalScoreMustNotBeLessThan1:su,scoreDefaultValueRange:cu,attachmentLimitError:fu,PleaseReselectTheOptionalQuantity:du,TheMaximumLengthIsGreaterThanTheMinimumLength:pu,TheMinimumLengthIsGreaterThanTheMaximumLength:vu,PleaseSelectTheCorrectOptionSettings:hu,optionIdIsRepeat:yu,optionIsRequired:_u,pleaseEnterDataCode:mu,pleaseEnterValueFieldCode:gu,pleaseEnterSvcCode:Eu,pleaseBindAtLeastOneDisplayValue:bu,pleaseSelectProvince:Bu,pleaseSelectCity:Fu,pleaseSelectDistrict:Cu,limitRowsCannotBeLessThan0:Au,TheNumberOfRowsCannotBeLessThanMinRows:wu,pleaseEnterColumnWidth:Su,pleaseSetTheLogicalRelationshipOfAllRuleConditions:$u,pleaseCompleteAllRulesAndConditions:Du,pleaseSelectControl:Ou,pleaseSelectAtLeastOneColumn:Iu,pleaseSelectFillBackMode:Pu,pleaseSelectDashboard:Tu,rootNodeIsRequired:Ru,theViewNameCannotBeEmpty:Mu,pleaseSelectOcrType:xu,pleaseSelectAtLeastOneFieldToFillIn:Lu,pleaseChooseAtLeastOne:ju,pleaseEnterButtonContent:qu,pleaseEnterDataCodeInDataSetting:Nu,pleaseEnterValueFieldCodeInDataSetting:ku,pleaseEnterSvcCodeInDataSetting:Vu,pleaseBindAtLeastOneDisplayValueInDataSetting:Uu,rootNodeIsRequiredInDataSetting:Gu,pleaseEnterMaxHeight:Wu,pleaseEnterWatermark:Hu,pleaseEnterFileName:zu,pleaseUploadAtLeastOnePrintTemplate:Ku,pleaseAssignBusiness:Ju,pleaseAssignExternal:Xu,pleaseEnterAliasCode:Qu,pleaseSelectDataCode:Zu,pleaseSelectSvcCode:Yu,pleaseSelectJoinFieldCode:ei,pleaseSelectMainFieldCode:ti,pleaseSelectSortFieldCode:ni,batchDeleteButton:ri,batchPrintListButton:ui,batchPrintRecordList:ii,button:oi,createFormListButton:ai,dashboard:li,divider:si,exportListButton:ci,formSelectButton:fi,importRecordListButton:di,invoiceCheckButton:pi,link:vi,listSelectButton:hi,ListViewSelect:yi,operationButton:_i,pagination:mi,submissionRecordListButton:gi,text:Ei,textOcrButton:bi,title:Bi,approvalStatusColumn:Fi,array:Ci,autoNumber:Ai,custom:wi,decimal:Si,department:$i,employee:Di,file:Oi,image:Ii,location:Pi,operation:Ti,order:Ri,people:Mi,long:xi,timescope:Li,timestamp:ji,varchar:qi,gridLayoutWrap:Ni,gridTable:ki,subTable:Vi,address:Ui,amount:Gi,calc:Wi,checkBox:Hi,electronicSignature:zi,input:Ki,number:Ji,organizationSelection:Xi,radio:Qi,richText:Zi,score:Yi,searchNumberRange:eo,select:to,selectMultiple:no,selectRelation:ro,textarea:uo,tree:io,vueFormItem:oo,vuePage:ao,WPS:lo,actionBar:so,advancedContainer:co,cardGroup:fo,col:po,dataView:vo,grid:ho,gridLayoutContainer:yo,gridRow:_o,listView:mo,page:go,position:Eo,positioningContainer:bo,row:Bo,subtableColumn:Fo,subtableRow:Co,tab:Ao,tabPane:wo,toolbox:So,batchSubmissionListButton:$o,exportRecordListButton:Do,listViewSelect:Oo,endTime:Io,startTime:Po,unit:To,result:Ro,currency:Mo,endDate:xo,startDate:Lo,pleaseSelectCompanyName:jo,pleaseSelectPhoneOrEmail:qo,pleaseSelectSignType:No,pleaseSelectSigner:ko,pleaseSelectOnlyOne:Vo,pleaseSelectSignFile:Uo,pleaseSelect:Go,pleaseSelectOrg:Wo,pleaseSelectDept:Ho,pleaseSelectEndDate:zo,pleaseSelectStartDate:Ko,pleaseChooseAddress:Jo,modalConfirm:Xo,tabChange:Qo,rowSelected:Zo,listDataImport:Yo,rowDelete:ea,rowClick:ta,cellRender:na,onClickBtn:ra,rename:ua,onSaveFile:ia,onOpenFile:oa,onFocus:aa,onBlur:la,onInput:sa,listDataAdd:ca,listDataDelete:fa,listDataBack:da,listDataCreate:pa,listDataChange:va,search:ha,valueChange:ya,finished:_a,click:ma,pleaseEnterNameorEmail:ga,pleaseEnterDate:Ea,pleaseEnterAutonumber:ba,pleaseEnter:Ba,defaultTemplate:Fa,left:Ca,top:Aa,default:"\u666E\u901A",readonly:wa,required:Sa,textTip:$a,hideCaption:Da,titleRequired:Oa,organizationalForm:Ia,businessType:Pa,deleteConfirm:Ta,hide:Ra,processStatus:Ma,approvedDocuments:xa,delete:La,edit:ja,view:qa,loadCtrlErrorTip:Na,loadCtrlError:ka,fullLine:Va,min:Ua,max:Ga,createWPS:Wa,reset:Ha,query:za,detailed:Ka,print:Ja,draft:Xa,save:Qa,cancel:Za,uploadImg:Ya,signature:el,uploadFile:tl,linkContent:nl,referenceList:rl,optionOne:ul,optionTwo:il,optionThird:ol},ll="Please enter a number",sl="Please enter a string",cl="Please enter an object",fl="Please enter an array",dl="Please enter a boolean",pl="{caption} Required",vl="Please enter the title",hl="Please enter the bubble prompt",yl="Please enter the row title",_l="Please enter the prompt text",ml="Please bind data items",gl="Please bind the form",El="Please bind the list",bl="Please bind the process",Bl="Please enter the displayed value",Fl="Please enter the stored value",Cl="The document number is not bound to the data item",Al="Please select at least one display field",wl="Please enter a value greater than or equal to {min} and less than or equal to {max}",Sl="Please enter a value greater than or equal to {min}",$l="Please enter a value less than or equal to {max}",Dl="The value range is set incorrectly",Ol="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Il="The attachment size must be between 0MB and 1000MB",Pl="Please fill in the total score setting",Tl="The total score cannot be less than 1",Rl="The default value must be between {min} and {max}",Ml="The number of attachment uploads exceeds the limit",xl="Please re-select the optional quantity",Ll="The maximum length of the control must be greater than the minimum length",jl="The minimum length of the control must be less than the maximum length",ql="Please select the correct option setting",Nl="Option ID cannot be repeated",kl="Please enter at least one option",Vl="Please bind the data source",Ul="Please bind the stored value",Gl="Please bind the service",Wl="At least one display value must be bound",Hl="Please select a province",zl="Please select a city",Kl="Please select a district",Jl="The minimum number of lines to fill in cannot be less than 0",Xl="The number of rows cannot be less than {min} rows",Ql="Please enter the column width",Zl="Please set the logical relationship of all rule conditions",Yl="Please complete all rules and conditions",es="please select control",ts="Please select the dashboard",ns="View name cannot be empty",rs="Please select recognition type",us="Please select at least one field to fill in",is="Please select at least one",os="Please enter the button title",as="Please bind the business model in the data settings",ls="Please bind storage values in data settings",ss="Please bind the service in the data settings",cs="Please bind at least one display value in the data settings",fs="Please select the root node in the data settings",ds="Please enter the maximum height",ps="The input content cannot be empty",vs="Watermark cannot be empty",hs="File name cannot be empty",ys="Please upload at least one printing template!\uFF01",_s="Please select a specific business department",ms="Please select a specified external organization",gs="Please enter a sub table alias",Es="Please select the associated table to set the business model",bs="Please select the association table to set the binding service",Bs="Select associated sub table fields",Fs="Please select the associated main table field",Cs="Please select the sort field",As="\u6279\u91CF\u5220\u9664",ws="\u6279\u91CF\u6253\u5370",Ss="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",$s="\u6309\u94AE",Ds="\u521B\u5EFA\u5355\u636E",Os="\u4EEA\u8868\u76D8",Is="\u5206\u5272\u7EBF",Ps="\u5BFC\u51FA",Ts="\u8868\u5355\u64CD\u4F5C",Rs="\u5BFC\u5165",Ms="\u53D1\u7968\u8BC6\u522B",xs="\u94FE\u63A5",Ls="\u5217\u8868\u9009\u62E9",js="\u5217\u8868\u89C6\u56FE",qs="\u64CD\u4F5C\u6309\u94AE",Ns="\u5206\u9875",ks="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Vs="\u8BF4\u660E\u6587\u5B57",Us="\u6587\u5B57\u8BC6\u522B",Gs="\u6807\u9898\u7EC4\u4EF6",Ws="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Hs="\u6570\u7EC4",zs="\u81EA\u52A8\u7F16\u53F7",Ks="\u81EA\u5B9A\u4E49",Js="\u6570\u503C",Xs="\u90E8\u95E8",Qs="\u4EBA\u5458",Zs="\u9644\u4EF6",Ys="\u56FE\u7247",ec="\u5730\u5740",tc="\u64CD\u4F5C",nc="\u5E8F\u53F7",rc="\u4EBA\u5458",uc="\u957F\u6587\u672C",ic="\u65E5\u671F\u533A\u95F4",oc="\u65E5\u671F",ac="\u77ED\u6587\u672C",lc="\u6362\u884C\u5BB9\u5668Wrap",sc="\u8868\u683C",cc="\u660E\u7EC6\u5B50\u8868",fc="\u5730\u5740",dc="\u91D1\u989D",pc="\u8BA1\u7B97\u516C\u5F0F",vc="\u591A\u9009",hc="\u7535\u5B50\u7B7E\u7AE0",yc="\u5355\u884C\u6587\u672C",_c="\u6570\u5B57",mc="\u4E1A\u52A1\u7EC4\u7EC7",gc="\u5355\u9009",Ec="\u5BCC\u6587\u672C",bc="\u8BC4\u5206",Bc="\u6570\u5B57\u533A\u95F4",Fc="\u4E0B\u62C9\u5355\u9009",Cc="\u4E0B\u62C9\u591A\u9009",Ac="\u5173\u8054\u5355\u9009",wc="\u591A\u884C\u6587\u672C",Sc="\u6811",$c="Vue\u5BB9\u5668",Dc="Vue\u9875\u9762",Oc="\u5728\u7EBF\u6587\u6863",Ic="\u6309\u94AE\u64CD\u4F5C\u680F",Pc="\u9AD8\u7EA7\u5BB9\u5668",Tc="\u5206\u7EC4",Rc="\u6805\u683C\u5217",Mc="\u6570\u636E\u5BB9\u5668",xc="\u753B\u5E03",Lc="\u6362\u884C\u5BB9\u5668",jc="\u6805\u683C\u7B49\u5206\u884C",qc="\u5217\u8868\u5BB9\u5668",Nc="\u81EA\u7531\u9875\u9762",kc="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Vc="\u5B9A\u4F4D\u5BB9\u5668",Uc="\u6805\u683C\u5E03\u5C40",Gc="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Wc="\u660E\u7EC6\u5B50\u8868\u884C",Hc="\u6807\u7B7E\u9875",zc="\u6807\u7B7E\u5355\u5143",Kc="\u5DE5\u5177\u680F",Jc="\u6279\u91CF\u63D0\u4EA4",Xc="\u5BFC\u51FA\u8BB0\u5F55",Qc="\u5217\u8868\u89C6\u56FE",Zc="\u5F15\u7528\u5217\u8868",Yc="\u9009\u9879\u4E00",ef="\u9009\u9879\u4E8C",tf="\u9009\u9879\u4E09",nf={isNotNumber:ll,isNotString:sl,isNotObject:cl,isNotArray:fl,isNotBoolean:dl,runtimeRequired:pl,pleaseEnterCaption:vl,pleaseEnterCaptionTip:hl,pleaseEnterRowCaption:yl,pleaseEnterPlaceholder:_l,pleaseEnterFieldCode:ml,pleaseEnterForm:gl,pleaseEnterList:El,pleaseEnterProcess:bl,pleaseEnterLabel:Bl,pleaseEnterValue:Fl,bizKeyNotBindFiled:Cl,pleaseSelectOneField:Al,pleaseEnterNumberRange:wl,pleaseEnterAValueGreaterThanMin:Sl,pleaseEnterAValueLessThanMax:$l,numberRangeSetError:Dl,stringRangeError:Ol,attachmentMaxSize:Il,pleaseEnterTotalScoreSetting:Pl,theTotalScoreMustNotBeLessThan1:Tl,scoreDefaultValueRange:Rl,attachmentLimitError:Ml,PleaseReselectTheOptionalQuantity:xl,TheMaximumLengthIsGreaterThanTheMinimumLength:Ll,TheMinimumLengthIsGreaterThanTheMaximumLength:jl,PleaseSelectTheCorrectOptionSettings:ql,optionIdIsRepeat:Nl,optionIsRequired:kl,pleaseEnterDataCode:Vl,pleaseEnterValueFieldCode:Ul,pleaseEnterSvcCode:Gl,pleaseBindAtLeastOneDisplayValue:Wl,pleaseSelectProvince:Hl,pleaseSelectCity:zl,pleaseSelectDistrict:Kl,limitRowsCannotBeLessThan0:Jl,TheNumberOfRowsCannotBeLessThanMinRows:Xl,pleaseEnterColumnWidth:Ql,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Zl,pleaseCompleteAllRulesAndConditions:Yl,pleaseSelectControl:es,pleaseSelectDashboard:ts,theViewNameCannotBeEmpty:ns,pleaseSelectOcrType:rs,pleaseSelectAtLeastOneFieldToFillIn:us,pleaseChooseAtLeastOne:is,pleaseEnterButtonContent:os,pleaseEnterDataCodeInDataSetting:as,pleaseEnterValueFieldCodeInDataSetting:ls,pleaseEnterSvcCodeInDataSetting:ss,pleaseBindAtLeastOneDisplayValueInDataSetting:cs,rootNodeIsRequiredInDataSetting:fs,pleaseEnterMaxHeight:ds,pleaseEnter:ps,pleaseEnterWatermark:vs,pleaseEnterFileName:hs,pleaseUploadAtLeastOnePrintTemplate:ys,pleaseAssignBusiness:_s,pleaseAssignExternal:ms,pleaseEnterAliasCode:gs,pleaseSelectDataCode:Es,pleaseSelectSvcCode:bs,pleaseSelectJoinFieldCode:Bs,pleaseSelectMainFieldCode:Fs,pleaseSelectSortFieldCode:Cs,batchDeleteButton:As,batchPrintListButton:ws,batchPrintRecordList:Ss,button:$s,createFormListButton:Ds,dashboard:Os,divider:Is,exportListButton:Ps,formSelectButton:Ts,importRecordListButton:Rs,invoiceCheckButton:Ms,link:xs,listSelectButton:Ls,ListViewSelect:js,operationButton:qs,pagination:Ns,submissionRecordListButton:ks,text:Vs,textOcrButton:Us,title:Gs,approvalStatusColumn:Ws,array:Hs,autoNumber:zs,custom:Ks,decimal:Js,department:Xs,employee:Qs,file:Zs,image:Ys,location:ec,operation:tc,order:nc,people:rc,long:uc,timescope:ic,timestamp:oc,varchar:ac,gridLayoutWrap:lc,gridTable:sc,subTable:cc,address:fc,amount:dc,calc:pc,checkBox:vc,electronicSignature:hc,input:yc,number:_c,organizationSelection:mc,radio:gc,richText:Ec,score:bc,searchNumberRange:Bc,select:Fc,selectMultiple:Cc,selectRelation:Ac,textarea:wc,tree:Sc,vueFormItem:$c,vuePage:Dc,WPS:Oc,actionBar:Ic,advancedContainer:Pc,cardGroup:Tc,col:Rc,dataView:Mc,grid:xc,gridLayoutContainer:Lc,gridRow:jc,listView:qc,page:Nc,position:kc,positioningContainer:Vc,row:Uc,subtableColumn:Gc,subtableRow:Wc,tab:Hc,tabPane:zc,toolbox:Kc,batchSubmissionListButton:Jc,exportRecordListButton:Xc,listViewSelect:Qc,referenceList:Zc,optionOne:Yc,optionTwo:ef,optionThird:tf},rf="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",uf="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",of="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",af="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lf="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",sf="{caption}\u5FC5\u9808",cf="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ff="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",df="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",pf="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vf="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",hf="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",yf="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",_f="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",mf="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",gf="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ef="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",bf="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bf="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ff="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Cf="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Af="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",wf="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sf="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",$f="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Df="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Of="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",If="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Pf="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Tf="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Rf="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Mf="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",xf="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Lf="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",jf="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qf="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Nf="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",kf="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Vf="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Uf="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Gf="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Wf="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Hf="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",zf="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Kf="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Jf="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Xf="please select control",Qf="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Zf="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Yf="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",e0="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",t0="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",n0="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",r0="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",u0="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",i0="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",o0="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",a0="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",l0="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",s0="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",c0="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",f0="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",d0="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",p0="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",v0="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",h0="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",y0="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",_0="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",m0="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",g0="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",E0="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",b0="\u6279\u91CF\u5220\u9664",B0="\u6279\u91CF\u6253\u5370",F0="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",C0="\u6309\u94AE",A0="\u521B\u5EFA\u5355\u636E",w0="\u4EEA\u8868\u76D8",S0="\u5206\u5272\u7EBF",$0="\u5BFC\u51FA",D0="\u8868\u5355\u64CD\u4F5C",O0="\u5BFC\u5165",I0="\u53D1\u7968\u8BC6\u522B",P0="\u94FE\u63A5",T0="\u5217\u8868\u9009\u62E9",R0="\u5217\u8868\u89C6\u56FE",M0="\u64CD\u4F5C\u6309\u94AE",x0="\u5206\u9875",L0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",j0="\u8BF4\u660E\u6587\u5B57",q0="\u6587\u5B57\u8BC6\u522B",N0="\u6807\u9898\u7EC4\u4EF6",k0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",V0="\u6570\u7EC4",U0="\u81EA\u52A8\u7F16\u53F7",G0="\u81EA\u5B9A\u4E49",W0="\u6570\u503C",H0="\u90E8\u95E8",z0="\u4EBA\u5458",K0="\u9644\u4EF6",J0="\u56FE\u7247",X0="\u5730\u5740",Q0="\u64CD\u4F5C",Z0="\u5E8F\u53F7",Y0="\u4EBA\u5458",ed="\u957F\u6587\u672C",td="\u65E5\u671F\u533A\u95F4",nd="\u65E5\u671F",rd="\u77ED\u6587\u672C",ud="\u6362\u884C\u5BB9\u5668Wrap",id="\u8868\u683C",od="\u660E\u7EC6\u5B50\u8868",ad="\u5730\u5740",ld="\u91D1\u989D",sd="\u8BA1\u7B97\u516C\u5F0F",cd="\u591A\u9009",fd="\u7535\u5B50\u7B7E\u7AE0",dd="\u5355\u884C\u6587\u672C",pd="\u6570\u5B57",vd="\u4E1A\u52A1\u7EC4\u7EC7",hd="\u5355\u9009",yd="\u5BCC\u6587\u672C",_d="\u8BC4\u5206",md="\u6570\u5B57\u533A\u95F4",gd="\u4E0B\u62C9\u5355\u9009",Ed="\u4E0B\u62C9\u591A\u9009",bd="\u5173\u8054\u5355\u9009",Bd="\u591A\u884C\u6587\u672C",Fd="\u6811",Cd="Vue\u5BB9\u5668",Ad="Vue\u9875\u9762",wd="\u5728\u7EBF\u6587\u6863",Sd="\u6309\u94AE\u64CD\u4F5C\u680F",$d="\u9AD8\u7EA7\u5BB9\u5668",Dd="\u5206\u7EC4",Od="\u6805\u683C\u5217",Id="\u6570\u636E\u5BB9\u5668",Pd="\u753B\u5E03",Td="\u6362\u884C\u5BB9\u5668",Rd="\u6805\u683C\u7B49\u5206\u884C",Md="\u5217\u8868\u5BB9\u5668",xd="\u81EA\u7531\u9875\u9762",Ld="\u5B9A\u4F4D\u5B50\u5BB9\u5668",jd="\u5B9A\u4F4D\u5BB9\u5668",qd="\u6805\u683C\u5E03\u5C40",Nd="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",kd="\u660E\u7EC6\u5B50\u8868\u884C",Vd="\u6807\u7B7E\u9875",Ud="\u6807\u7B7E\u5355\u5143",Gd="\u5DE5\u5177\u680F",Wd="\u6279\u91CF\u63D0\u4EA4",Hd="\u5BFC\u51FA\u8BB0\u5F55",zd="\u5217\u8868\u89C6\u56FE",Kd="\u5F15\u7528\u5217\u8868",Jd="\u9009\u9879\u4E00",Xd="\u9009\u9879\u4E8C",Qd="\u9009\u9879\u4E09",Zd={isNotNumber:rf,isNotString:uf,isNotObject:of,isNotArray:af,isNotBoolean:lf,runtimeRequired:sf,pleaseEnterCaption:cf,pleaseEnterCaptionTip:ff,pleaseEnterRowCaption:df,pleaseEnterPlaceholder:pf,pleaseEnterFieldCode:vf,pleaseEnterForm:hf,pleaseEnterList:yf,pleaseEnterProcess:_f,pleaseEnterLabel:mf,pleaseEnterValue:gf,bizKeyNotBindFiled:Ef,pleaseSelectOneField:bf,pleaseEnterNumberRange:Bf,pleaseEnterAValueGreaterThanMin:Ff,pleaseEnterAValueLessThanMax:Cf,numberRangeSetError:Af,stringRangeError:wf,attachmentMaxSize:Sf,pleaseEnterTotalScoreSetting:$f,theTotalScoreMustNotBeLessThan1:Df,scoreDefaultValueRange:Of,attachmentLimitError:If,PleaseReselectTheOptionalQuantity:Pf,TheMaximumLengthIsGreaterThanTheMinimumLength:Tf,TheMinimumLengthIsGreaterThanTheMaximumLength:Rf,PleaseSelectTheCorrectOptionSettings:Mf,optionIdIsRepeat:xf,optionIsRequired:Lf,pleaseEnterDataCode:jf,pleaseEnterValueFieldCode:qf,pleaseEnterSvcCode:Nf,pleaseBindAtLeastOneDisplayValue:kf,pleaseSelectProvince:Vf,pleaseSelectCity:Uf,pleaseSelectDistrict:Gf,limitRowsCannotBeLessThan0:Wf,TheNumberOfRowsCannotBeLessThanMinRows:Hf,pleaseEnterColumnWidth:zf,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Kf,pleaseCompleteAllRulesAndConditions:Jf,pleaseSelectControl:Xf,pleaseSelectDashboard:Qf,theViewNameCannotBeEmpty:Zf,pleaseSelectOcrType:Yf,pleaseSelectAtLeastOneFieldToFillIn:e0,pleaseChooseAtLeastOne:t0,pleaseEnterButtonContent:n0,pleaseEnterDataCodeInDataSetting:r0,pleaseEnterValueFieldCodeInDataSetting:u0,pleaseEnterSvcCodeInDataSetting:i0,pleaseBindAtLeastOneDisplayValueInDataSetting:o0,rootNodeIsRequiredInDataSetting:a0,pleaseEnterMaxHeight:l0,pleaseEnter:s0,pleaseEnterWatermark:c0,pleaseEnterFileName:f0,pleaseUploadAtLeastOnePrintTemplate:d0,pleaseAssignBusiness:p0,pleaseAssignExternal:v0,pleaseEnterAliasCode:h0,pleaseSelectDataCode:y0,pleaseSelectSvcCode:_0,pleaseSelectJoinFieldCode:m0,pleaseSelectMainFieldCode:g0,pleaseSelectSortFieldCode:E0,batchDeleteButton:b0,batchPrintListButton:B0,batchPrintRecordList:F0,button:C0,createFormListButton:A0,dashboard:w0,divider:S0,exportListButton:$0,formSelectButton:D0,importRecordListButton:O0,invoiceCheckButton:I0,link:P0,listSelectButton:T0,ListViewSelect:R0,operationButton:M0,pagination:x0,submissionRecordListButton:L0,text:j0,textOcrButton:q0,title:N0,approvalStatusColumn:k0,array:V0,autoNumber:U0,custom:G0,decimal:W0,department:H0,employee:z0,file:K0,image:J0,location:X0,operation:Q0,order:Z0,people:Y0,long:ed,timescope:td,timestamp:nd,varchar:rd,gridLayoutWrap:ud,gridTable:id,subTable:od,address:ad,amount:ld,calc:sd,checkBox:cd,electronicSignature:fd,input:dd,number:pd,organizationSelection:vd,radio:hd,richText:yd,score:_d,searchNumberRange:md,select:gd,selectMultiple:Ed,selectRelation:bd,textarea:Bd,tree:Fd,vueFormItem:Cd,vuePage:Ad,WPS:wd,actionBar:Sd,advancedContainer:$d,cardGroup:Dd,col:Od,dataView:Id,grid:Pd,gridLayoutContainer:Td,gridRow:Rd,listView:Md,page:xd,position:Ld,positioningContainer:jd,row:qd,subtableColumn:Nd,subtableRow:kd,tab:Vd,tabPane:Ud,toolbox:Gd,batchSubmissionListButton:Wd,exportRecordListButton:Hd,listViewSelect:zd,referenceList:Kd,optionOne:Jd,optionTwo:Xd,optionThird:Qd},Ze={zhCN:al,enUS:nf,jaJP:Zd},Ye,cn=(Ye=window.localStorage.getItem("locale"))!==null&&Ye!==void 0?Ye:"zh-CN",Yd=function(){},T=function(e){return e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e}({}),v=function(e){return e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.SIGNATURE_COLUMN="signature-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.OPERATION_BUTTON="operation-button",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.HANDSIGNATURE="signature",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.GRID_LAYOUT_CONTAINER="grid-layout-container",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e.GRID_LAYOUT_WRAP="grid-layout-wrap",e.VUE_PAGE="vue-page",e.REFERENCE_LIST="reference-list",e}({}),z=function(e){return e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.LIST="list",e.JSON="json",e.ANY="ANY",e.SIGNATURE="signature",e}({}),fn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",ep=fn+"0123456789";function et(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?fn:ep,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function tt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function tp(e){if(Array.isArray(e))return tt(e)}function np(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dn(e,t,n){return t=fe(t),op(e,rt()?Reflect.construct(t,n||[],fe(e).constructor):t.apply(e,n))}function pn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e,t,n){return rt()?Se=Reflect.construct:Se=function(u,i,o){var l=[null];l.push.apply(l,i);var s=Function.bind.apply(u,l),a=new s;return o&&de(a,o.prototype),a},Se.apply(null,arguments)}function fe(e){return fe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},fe(e)}function vn(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&de(e,t)}function rp(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function up(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function ip(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function op(e,t){return t&&(ap(t)==="object"||typeof t=="function")?t:np(e)}function de(e,t){return de=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},de(e,t)}function hn(e){return tp(e)||up(e)||lp(e)||ip()}function ap(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function lp(e,t){if(!!e){if(typeof e=="string")return tt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tt(e,t)}}function nt(e){var t=typeof Map=="function"?new Map:void 0;return nt=function(r){if(r===null||!rp(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Se(r,arguments,fe(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),de(u,r)},nt(e)}function rt(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(rt=function(){return!!e})()}var ut=console;function $e(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=ut).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(hn(u)))}function yn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=ut).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(hn(u)))}function sp(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var it=function(e){vn(t,e);function t(n){pn(this,t);var r;return r=dn(this,t,[n]),r.name="\u{1F4A5} Driven Error",r.message=n?sp(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",r}return t}(nt(Error)),cp=function(e){vn(t,e);function t(n){pn(this,t);var r;return r=dn(this,t,[n]),r.name="\u{1F6A8} Driven Reference Error",r}return t}(it);function pe(e){throw new it(e)}function _n(e){throw new cp(e)}function fp(e){ut.error(new it(e))}const _=(e,t,n)=>{if(!e)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const r=e.split(".");let u;const i=(window.baitedaWorkers||{}).languageMessages||{};r.forEach((l,s)=>{s===0?u=i[l]:u&&(u=u[l])});let o="";return u&&(o=u),t&&Object.keys(t).forEach(l=>{const s=t[l];o=o.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),s)}),o||(n?o=n:o=e),o};function dp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function mn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function pp(e,t,n){return t&&mn(e.prototype,t),n&&mn(e,n),e}function vp(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var gn=function(){function e(){dp(this,e)}return pp(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},u;return _("CMD."+n,r,Ze==null||(u=Ze[cn.split("-").join("")])===null||u===void 0?void 0:u[n])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(n,r){}}]),e}();vp(gn,"$i18n",gn.resetI18n());function En(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,o){return"."+o}).split("."),u=!1;return r.reduce(function(i,o,l,s){var a=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,o)){$e("Can not set ".concat(t,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),i,i);return}return l===s.length-1&&!Object.is(a[o],n)&&(a[o]=n,u=!0),a[o]}},e),u}var hp=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},yp={exports:{}};(function(e){(function(t){var n=function(c,p,w){if(!a(p)||h(p)||y(p)||E(p)||s(p))return p;var C,S=0,N=0;if(f(p))for(C=[],N=p.length;S<N;S++)C.push(n(c,p[S],w));else{C={};for(var A in p)Object.prototype.hasOwnProperty.call(p,A)&&(C[c(A,w)]=n(c,p[A],w))}return C},r=function(c,p){p=p||{};var w=p.separator||"_",C=p.split||/(?=[A-Z])/;return c.split(C).join(w)},u=function(c){return b(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(p,w){return w?w.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},i=function(c){var p=u(c);return p.substr(0,1).toUpperCase()+p.substr(1)},o=function(c,p){return r(c,p).toLowerCase()},l=Object.prototype.toString,s=function(c){return typeof c=="function"},a=function(c){return c===Object(c)},f=function(c){return l.call(c)=="[object Array]"},h=function(c){return l.call(c)=="[object Date]"},y=function(c){return l.call(c)=="[object RegExp]"},E=function(c){return l.call(c)=="[object Boolean]"},b=function(c){return c=c-0,c===c},d=function(c,p){var w=p&&"process"in p?p.process:p;return typeof w!="function"?c:function(C,S){return w(C,c,S)}},m={camelize:u,decamelize:o,pascalize:i,depascalize:o,camelizeKeys:function(c,p){return n(d(u,p),c)},decamelizeKeys:function(c,p){return n(d(o,p),c,p)},pascalizeKeys:function(c,p){return n(d(i,p),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=m:t.humps=m})(hp)})(yp);var bn={};Object.defineProperty(bn,"__esModule",{value:!0});function ot(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:ot(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:ot(r)}return t}}var _p=bn.default=ot;function Bn(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function U(e){if(e!==void 0)return(typeof e=="undefined"?"undefined":Bn(e))==="object"?_p(e):e}function at(e){return Object.prototype.toString.call(e)==="[object Object]"}function mp(e){return e!=null&&(typeof e=="undefined"?"undefined":Bn(e))==="object"&&Array.isArray(e)===!1}function ve(e){return Array.isArray(e)}function lt(e){return typeof e=="string"}function gp(e){return Object.values(v).includes(e)}function st(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ep(e){if(Array.isArray(e))return st(e)}function Fn(e,t,n,r,u,i,o){try{var l=e[i](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function bp(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){Fn(i,r,u,o,l,"next",s)}function l(s){Fn(i,r,u,o,l,"throw",s)}o(void 0)})}}function Bp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Cn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Fp(e,t,n){return t&&Cn(e.prototype,t),n&&Cn(e,n),e}function An(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Cp(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Ap(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ct(e){return Ep(e)||Cp(e)||wp(e)||Ap()}function wp(e,t){if(!!e){if(typeof e=="string")return st(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return st(e,t)}}function Sp(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(i=0)),i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var wn=function(){function e(){Bp(this,e),An(this,"_events",new Map),An(this,"debug",!1)}return Fp(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];return bp(function(){var o,l,s,a,f,h,y,E,b,d,m,c;return Sp(this,function(p){switch(p.label){case 0:if(o=this._events.get(n),l=[],!o)return[3,10];s=o.slice(),a=!0,f=!1,h=void 0,p.label=1;case 1:p.trys.push([1,8,9,10]),y=s[Symbol.iterator](),p.label=2;case 2:if(a=(E=y.next()).done)return[3,7];if(b=E.value,!o.includes(b))return[3,6];p.label=3;case 3:return p.trys.push([3,5,,6]),this.debug&&yn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(b.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+b.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(ct(u))),[4,b.apply(null,ct(u))];case 4:return d=p.sent(),this.debug&&yn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(b.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+b.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(ct(u),[d])),l.push(d),d===!1?[3,7]:[3,6];case 5:return m=p.sent(),fp(String(m)+":"+String(m.stack)),[3,6];case 6:return a=!0,[3,2];case 7:return[3,10];case 8:return c=p.sent(),f=!0,h=c,[3,10];case 9:try{!a&&y.return!=null&&y.return()}finally{if(f)throw h}return[7];case 10:return[2,l]}})}).call(this)}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function $p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Dp(e,t,n){return t&&Sn(e.prototype,t),n&&Sn(e,n),e}function Op(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ip=[{key:"on_click",name:_("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:_("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:_("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:_("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:_("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:_("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:_("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:_("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:_("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:_("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:_("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:_("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:_("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:_("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:_("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:_("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:_("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:_("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:_("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:_("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:_("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:_("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:_("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"}],he=function(){function e(){$p(this,e)}return Dp(e,null,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}},{key:"getEventsFromControl",value:function(n){var r=[],u=n.eventKeys;r=r.concat(e.events.filter(function(o){return u.includes(o.key)}));var i=n.customEvents.map(function(o){var l=o.key;return o.namespace!==void 0&&o.namespace!==null&&o.namespace!==""&&(l=o.namespace+":"+o.key),{key:l,code:o.key,name:o.name}});return r=r.concat(i),r}}]),e}();Op(he,"events",Ip);function ft(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Pp(e){if(Array.isArray(e))return ft(e)}function Tp(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Rp(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function $n(e){return Pp(e)||Tp(e)||Mp(e)||Rp()}function Mp(e,t){if(!!e){if(typeof e=="string")return ft(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ft(e,t)}}function dt(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Dn(e,t,n){n!=="Runtime"&&(e.parent=t,dt(e,"parent"))}function xp(e,t,n){e.forEach(function(r){Dn(r,t,n)})}var On=Symbol("targetKey");function In(e){var t;return(t=e[On])!==null&&t!==void 0?t:e}function Pn(e,t,n){return xp(e,t,n),new Proxy(e,{get:function(u,i){for(var o=arguments.length,l=new Array(o>2?o-2:0),s=2;s<o;s++)l[s-2]=arguments[s];var a;return i===On?u:(a=Reflect).get.apply(a,[u,i].concat($n(l)))},set:function(u,i,o){for(var l=arguments.length,s=new Array(l>3?l-3:0),a=3;a<l;a++)s[a-3]=arguments[a];var f;if(ve(e)&&i==="length"&&o===e.length)return!0;var h=(f=Reflect).set.apply(f,[u,i,o].concat($n(s)));return at(o)&&Dn(o,t,n),h}})}function pt(e,t,n,r,u){var i=r!=null?r:e,o=Pn(In(n!=null?n:[]),i,u);Object.defineProperty(e,t,{get:function(){return o},set:function(s){o=Pn(In(s),i,u)},enumerable:!0})}function Lp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function jp(e,t,n){return t&&Tn(e.prototype,t),n&&Tn(e,n),e}function K(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Rn=[],ye=function(){function e(t){Lp(this,e),K(this,"registeredControlTypes",new Set),K(this,"controlConfigMap",new Map),K(this,"_controls",[]),K(this,"_type",void 0),this._type=t,this._initControls(t)}return jp(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||pe("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&($e("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===T.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===T.FORM}},{key:"isListControl",value:function(n){return n.controlType===T.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===T.COLUMN}},{key:"createControl",value:function(n,r){var u=this;if(Array.isArray(n))return n.map(function(f){return u.createControl(f,r)});if(n.children&&(n.children=n.children.map(function(f){return u.createControl(f,r)})),this.isListControl(n)){var i=n.props;i.headers&&(i.headers=i.headers.map(function(f){return u.createControl(f,r)}))}var o=this.getControlFormType(n.type);if(o){var l=n;if(typeof r=="function"){var s=r(l);s&&(l=s)}var a;return o.mode==="Runtime"?(a=l,a.fieldType=o.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new o(l),a}else pe("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"resetInstanceParent",value:function(n,r){delete n.parent,Object.defineProperty(n,"parent",{configurable:!0,get:function(){return r}}),dt(n,"parent")}},{key:"_setParentPrototypeToSchema",value:function(n,r){r._type==="Runtime"&&(Object.defineProperty(n,"parent",{configurable:!0,get:function(){var i=n.id,o=r._controlParentIdMap,l=r.instanceMap;if(!(!o||!l)){var s=o[i],a=l[i];if(!(!s&&!a)){var f=a.findIndex(function(E){return E==n}),h=l[s]||[],y;return h.length!==a.length?y=h[0]:y=h[f],y}}}}),dt(n,"parent"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n]),e.staticControlsRuntimeRules.set(u.Runtime.controlType,u.Property.RuntimeRules),u.Property.mode=n})}}],[{key:"staticGetRules",value:function(n,r){var u=e.staticControlsRuntimeRules.get(n),i=[];if(u){var o=new u(r);i=Array.from(o)}return i}},{key:"register",value:function(n,r){var u=n.Designer,i=n.Runtime,o=n.Property;(!u||!i||!u.__is_control__||!i.__is_control__)&&pe("".concat(n," is can't register as a Control"));var l=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return l>-1&&($e("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(l,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),o.mode=r,this}}]),e}();K(ye,"staticControlsRuntimeRules",new Map),K(ye,"staticControls",Rn),K(ye,"staticRegisteredTypes",new Set(Rn.map(function(e){return e.Designer.controlType}))),K(ye,"staticRegisteredConfigs",new Map);function vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function L(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Mn=function e(t){vt(this,e),L(this,"dataCode",void 0),L(this,"fieldCode",void 0),L(this,"fieldType",void 0),L(this,"aliasCode",void 0);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},qp=function e(t){vt(this,e),L(this,"minWidth",void 0),L(this,"maxWidth",void 0),L(this,"flex",void 0);var n;this.minWidth=(n=t==null?void 0:t.minWidth)!==null&&n!==void 0?n:150,this.maxWidth=t==null?void 0:t.maxWidth;var r;this.flex=(r=t==null?void 0:t.flex)!==null&&r!==void 0?r:1},Np=function(e){return e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT",e}({}),kp=function e(t){vt(this,e),L(this,"width",void 0),L(this,"height",void 0),L(this,"widthConfig",void 0),L(this,"heightConfig",void 0);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var i;this.heightConfig=(i=t==null?void 0:t.heightConfig)!==null&&i!==void 0?i:"fill"};function Vp(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Up(e,t,n){return t=_e(t),Hp(e,_t()?Reflect.construct(t,n||[],_e(e).constructor):t.apply(e,n))}function ht(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function De(e,t,n){return _t()?De=Reflect.construct:De=function(u,i,o){var l=[null];l.push.apply(l,i);var s=Function.bind.apply(u,l),a=new s;return o&&me(a,o.prototype),a},De.apply(null,arguments)}function G(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _e(e){return _e=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},_e(e)}function Gp(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&me(e,t)}function Wp(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Hp(e,t){return t&&(zp(t)==="object"||typeof t=="function")?t:Vp(e)}function me(e,t){return me=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},me(e,t)}function zp(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function yt(e){var t=typeof Map=="function"?new Map:void 0;return yt=function(r){if(r===null||!Wp(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return De(r,arguments,_e(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),me(u,r)},yt(e)}function _t(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_t=function(){return!!e})()}var mt=function e(t){ht(this,e),G(this,"isHide",{type:"boolean"})},xn=function(e){Gp(t,e);function t(n){return ht(this,t),Up(this,t)}return t}(yt(Array)),W=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";ht(this,e),G(this,"isHide",void 0),G(this,"className",void 0),G(this,"style",void 0),G(this,"caption",void 0),G(this,"defaultState",void 0);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new kp(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};G(W,"mode",void 0),G(W,"Rules",mt),G(W,"RuntimeRules",xn);function j(){return j=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},j.apply(this,arguments)}function Kp(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function gt(e){return gt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},gt(e)}function Oe(e,t){return Oe=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Oe(e,t)}function Jp(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Ie(e,t,n){return Jp()?Ie=Reflect.construct:Ie=function(u,i,o){var l=[null];l.push.apply(l,i);var s=Function.bind.apply(u,l),a=new s;return o&&Oe(a,o.prototype),a},Ie.apply(null,arguments)}function Xp(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Et(e){var t=typeof Map=="function"?new Map:void 0;return Et=function(r){if(r===null||!Xp(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Ie(r,arguments,gt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Oe(u,r)},Et(e)}var Qp=/%[sdj%]/g,Ln=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Ln=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function bt(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function M(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],i=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var o=String(u).replace(Qp,function(l){if(l==="%%")return"%";if(r>=i)return l;switch(l){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(s){return"[Circular]"}break;default:return l}});return o}return u}function Zp(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function D(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Zp(t)&&typeof e=="string"&&!e)}function Yp(e,t,n){var r=[],u=0,i=e.length;function o(l){r.push.apply(r,l),u++,u===i&&n(r)}e.forEach(function(l){t(l,o)})}function jn(e,t,n){var r=0,u=e.length;function i(o){if(o&&o.length){n(o);return}var l=r;r=r+1,l<u?t(e[l],i):n([])}i([])}function ev(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var qn=function(e){Kp(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(Et(Error));function tv(e,t,n,r){if(t.first){var u=new Promise(function(h,y){var E=function(m){return r(m),m.length?y(new qn(m,bt(m))):h()},b=ev(e);jn(b,n,E)});return u.catch(function(h){return h}),u}var i=t.firstFields||[];i===!0&&(i=Object.keys(e));var o=Object.keys(e),l=o.length,s=0,a=[],f=new Promise(function(h,y){var E=function(d){if(a.push.apply(a,d),s++,s===l)return r(a),a.length?y(new qn(a,bt(a))):h()};o.length||(r(a),h()),o.forEach(function(b){var d=e[b];i.indexOf(b)!==-1?jn(d,n,E):Yp(d,n,E)})});return f.catch(function(h){return h}),f}function Nn(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function kn(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=j(j({},e[n]),r):e[n]=r}}return e}function Vn(e,t,n,r,u,i){e.required&&(!n.hasOwnProperty(e.field)||D(t,i||e.type))&&r.push(M(u.messages.required,e.fullField))}function nv(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(M(u.messages.whitespace,e.fullField))}var Bt={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},ge={integer:function(t){return ge.number(t)&&parseInt(t,10)===t},float:function(t){return ge.number(t)&&!ge.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!ge.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(Bt.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(Bt.url)},hex:function(t){return typeof t=="string"&&!!t.match(Bt.hex)}};function rv(e,t,n,r,u){if(e.required&&t===void 0){Vn(e,t,n,r,u);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;i.indexOf(o)>-1?ge[o](t)||r.push(M(u.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(M(u.messages.types[o],e.fullField,e.type))}function uv(e,t,n,r,u){var i=typeof e.len=="number",o=typeof e.min=="number",l=typeof e.max=="number",s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,a=t,f=null,h=typeof t=="number",y=typeof t=="string",E=Array.isArray(t);if(h?f="number":y?f="string":E&&(f="array"),!f)return!1;E&&(a=t.length),y&&(a=t.replace(s,"_").length),i?a!==e.len&&r.push(M(u.messages[f].len,e.fullField,e.len)):o&&!l&&a<e.min?r.push(M(u.messages[f].min,e.fullField,e.min)):l&&!o&&a>e.max?r.push(M(u.messages[f].max,e.fullField,e.max)):o&&l&&(a<e.min||a>e.max)&&r.push(M(u.messages[f].range,e.fullField,e.min,e.max))}var ee="enum";function iv(e,t,n,r,u){e[ee]=Array.isArray(e[ee])?e[ee]:[],e[ee].indexOf(t)===-1&&r.push(M(u.messages[ee],e.fullField,e[ee].join(", ")))}function ov(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(M(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var i=new RegExp(e.pattern);i.test(t)||r.push(M(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var g={required:Vn,whitespace:nv,type:rv,range:uv,enum:iv,pattern:ov};function av(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t,"string")&&!e.required)return n();g.required(e,t,r,i,u,"string"),D(t,"string")||(g.type(e,t,r,i,u),g.range(e,t,r,i,u),g.pattern(e,t,r,i,u),e.whitespace===!0&&g.whitespace(e,t,r,i,u))}n(i)}function lv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&g.type(e,t,r,i,u)}n(i)}function sv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&(g.type(e,t,r,i,u),g.range(e,t,r,i,u))}n(i)}function cv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&g.type(e,t,r,i,u)}n(i)}function fv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),D(t)||g.type(e,t,r,i,u)}n(i)}function dv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&(g.type(e,t,r,i,u),g.range(e,t,r,i,u))}n(i)}function pv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&(g.type(e,t,r,i,u),g.range(e,t,r,i,u))}n(i)}function vv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return n();g.required(e,t,r,i,u,"array"),t!=null&&(g.type(e,t,r,i,u),g.range(e,t,r,i,u))}n(i)}function hv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&g.type(e,t,r,i,u)}n(i)}var yv="enum";function _v(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u),t!==void 0&&g[yv](e,t,r,i,u)}n(i)}function mv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t,"string")&&!e.required)return n();g.required(e,t,r,i,u),D(t,"string")||g.pattern(e,t,r,i,u)}n(i)}function gv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t,"date")&&!e.required)return n();if(g.required(e,t,r,i,u),!D(t,"date")){var l;t instanceof Date?l=t:l=new Date(t),g.type(e,l,r,i,u),l&&g.range(e,l.getTime(),r,i,u)}}n(i)}function Ev(e,t,n,r,u){var i=[],o=Array.isArray(t)?"array":typeof t;g.required(e,t,r,i,u,o),n(i)}function Ft(e,t,n,r,u){var i=e.type,o=[],l=e.required||!e.required&&r.hasOwnProperty(e.field);if(l){if(D(t,i)&&!e.required)return n();g.required(e,t,r,o,u,i),D(t,i)||g.type(e,t,r,o,u)}n(o)}function bv(e,t,n,r,u){var i=[],o=e.required||!e.required&&r.hasOwnProperty(e.field);if(o){if(D(t)&&!e.required)return n();g.required(e,t,r,i,u)}n(i)}var Ee={string:av,method:lv,number:sv,boolean:cv,regexp:fv,integer:dv,float:pv,array:vv,object:hv,enum:_v,pattern:mv,date:gv,url:Ft,hex:Ft,email:Ft,required:Ev,any:bv};function Ct(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var At=Ct();function J(e){this.rules=null,this._messages=At,this.define(e)}J.prototype={messages:function(t){return t&&(this._messages=kn(Ct(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var i=t,o=n,l=r;if(typeof o=="function"&&(l=o,o={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function s(d){var m,c=[],p={};function w(C){if(Array.isArray(C)){var S;c=(S=c).concat.apply(S,C)}else c.push(C)}for(m=0;m<d.length;m++)w(d[m]);c.length?p=bt(c):(c=null,p=null),l(c,p)}if(o.messages){var a=this.messages();a===At&&(a=Ct()),kn(a,o.messages),o.messages=a}else o.messages=this.messages();var f,h,y={},E=o.keys||Object.keys(this.rules);E.forEach(function(d){f=u.rules[d],h=i[d],f.forEach(function(m){var c=m;typeof c.transform=="function"&&(i===t&&(i=j({},i)),h=i[d]=c.transform(h)),typeof c=="function"?c={validator:c}:c=j({},c),c.validator=u.getValidationMethod(c),c.field=d,c.fullField=c.fullField||d,c.type=u.getType(c),c.validator&&(y[d]=y[d]||[],y[d].push({rule:c,value:h,source:i,field:d}))})});var b={};return tv(y,o,function(d,m){var c=d.rule,p=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");p=p&&(c.required||!c.required&&d.value),c.field=d.field;function w(N,A){return j(j({},A),{},{fullField:c.fullField+"."+N})}function C(N){N===void 0&&(N=[]);var A=N;if(Array.isArray(A)||(A=[A]),!o.suppressWarning&&A.length&&J.warning("async-validator:",A),A.length&&c.message!==void 0&&(A=[].concat(c.message)),A=A.map(Nn(c)),o.first&&A.length)return b[c.field]=1,m(A);if(!p)m(A);else{if(c.required&&!d.value)return c.message!==void 0?A=[].concat(c.message).map(Nn(c)):o.error&&(A=[o.error(c,M(o.messages.required,c.field))]),m(A);var k={};if(c.defaultField)for(var Ur in d.value)d.value.hasOwnProperty(Ur)&&(k[Ur]=c.defaultField);k=j(j({},k),d.rule.fields);for(var oe in k)if(k.hasOwnProperty(oe)){var E5=Array.isArray(k[oe])?k[oe]:[k[oe]];k[oe]=E5.map(w.bind(null,oe))}var Gr=new J(k);Gr.messages(o.messages),d.rule.options&&(d.rule.options.messages=o.messages,d.rule.options.error=o.error),Gr.validate(d.value,d.rule.options||o,function(ln){var ae=[];A&&A.length&&ae.push.apply(ae,A),ln&&ln.length&&ae.push.apply(ae,ln),m(ae.length?ae:null)})}}var S;c.asyncValidator?S=c.asyncValidator(c,d.value,C,d.source,o):c.validator&&(S=c.validator(c,d.value,C,d.source,o),S===!0?C():S===!1?C(c.message||c.field+" fails"):S instanceof Array?C(S):S instanceof Error&&C(S.message)),S&&S.then&&S.then(function(){return C()},function(N){return C(N)})},function(d){s(d)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!Ee.hasOwnProperty(t.type))throw new Error(M("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?Ee.required:Ee[this.getType(t)]||!1}},J.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ee[t]=n},J.warning=Ln,J.messages=At,J.validators=Ee;var Bv={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function Fv(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new J(e);return n.messages(Object.assign(Bv,t)),n}var Un=new wn;function wt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Cv(e){if(Array.isArray(e))return e}function Av(e){if(Array.isArray(e))return wt(e)}function Gn(e,t,n,r,u,i,o){try{var l=e[i](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Wn(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){Gn(i,r,u,o,l,"next",s)}function l(s){Gn(i,r,u,o,l,"throw",s)}o(void 0)})}}function wv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Hn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Sv(e,t,n){return t&&Hn(e.prototype,t),n&&Hn(e,n),e}function F(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function zn(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Kn(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function $v(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Dv(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Jn(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){F(e,u,n[u])})}return e}function Ov(e){return Cv(e)||Kn(e)||Xn(e)||$v()}function St(e){return Av(e)||Kn(e)||Xn(e)||Dv()}function Iv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Xn(e,t){if(!!e){if(typeof e=="string")return wt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return wt(e,t)}}function Qn(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(i=0)),i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var P=function(){function t(n){var r=this;wv(this,t),F(this,"id",void 0),F(this,"name",void 0),F(this,"icon",void 0),F(this,"type",void 0),F(this,"controlType",void 0),F(this,"props",void 0),F(this,"setting",[]),F(this,"fieldType",void 0),F(this,"eventKeys",[]),F(this,"customEvents",[]),F(this,"parent",null),F(this,"slots",void 0),F(this,"slotPosition",void 0),F(this,"updateSetting",Yn),F(this,"removeSetting",Zn),this._callControlHooks("preInstance",n);var u=zn(this,t)?this.constructor:void 0,i=u.controlName,o=u.controlIcon,l=u.controlType,s=u.controlFieldType,a=u.controlEventKeys,f=u.controlCustomEvents,h=u.name,y=u.setting,E=u.slots,b=u.slotPosition;i&&o&&l||_n("The ".concat(h," controlName,controlIcon,controlType is not define"));var d;this.id=(d=n==null?void 0:n.id)!==null&&d!==void 0?d:et(10),this.name=i,this.icon=o;var m;this.type=(m=n==null?void 0:n.type)!==null&&m!==void 0?m:l,this.props=new W(n==null?void 0:n.props,(zn(this,t)?this.constructor:void 0).controlName);var c;this.controlType=(c=n==null?void 0:n.controlType)!==null&&c!==void 0?c:"base",this.setting=U(y);var p;this.fieldType=(p=n==null?void 0:n.fieldType)!==null&&p!==void 0?p:s,this.eventKeys=U(a),this.customEvents=U(f),this.slots=U(E),this.slotPosition=U(b),Promise.resolve().then(function(){r._callControlHooks("postInstance",n)})}return Sv(t,[{key:"rules",get:function(){var r=this.props.constructor.Rules;return r?new r(this.props):{}}},{key:"_callControlHooks",value:function(){for(var r=arguments.length,u=new Array(r),i=0;i<r;i++)u[i]=arguments[i];var o,l=Ov(u),s=l[0],a=l.slice(1);return(o=Un).emit.apply(o,[s,this].concat(St(a)))}},{key:"preUpdate",value:function(r,u){this._callControlHooks("preUpdateProps",r,u)}},{key:"postUpdate",value:function(r,u){this._callControlHooks("postUpdateProps",r,u)}},{key:"updateProps",value:function(r,u){this.preUpdate(r,u),En(this.props,r,u),this.postUpdate(r,u)}},{key:"preValidate",value:function(){return Wn(function(){var r,u,i;return Qn(this,function(o){switch(o.label){case 0:return r=Jn({},this.rules),[4,this._callControlHooks("preValidate",r)];case 1:return u=o.sent(),i=u[u.length-1],[2,i===!1?void 0:i]}})}).call(this)}},{key:"validate",value:function(r,u){return Wn(function(){var i,o,l,s;return Qn(this,function(a){switch(a.label){case 0:return[4,this.preValidate()];case 1:i=a.sent(),o=i!==void 0?i:Jn({},this.rules),Array.isArray(u)&&u.forEach(function(f){o.hasOwnProperty(f)&&delete o[f]}),l=Fv(o,r),a.label=2;case 2:return a.trys.push([2,4,,5]),[4,l.validate(this.props)];case 3:return a.sent(),[2,!0];case 4:throw s=a.sent(),s.control||(s.control=this),s;case 5:return[2]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,u=this.fieldType,i=this.id,o=this.type,l=this.props,s=l.dataBind,a=l.datasourceBind,f=l.optionConfig,h=l.caption,y=l.required,E=l.maxLength,b=l.options,d=l.encrypted,m=l.encryptedMode;if(!(!u&&!s&&!a)){var c={parentId:r,fieldType:u,controlId:i,caption:h,type:o,props:{}};switch(s&&(c.dataBind=s),f){case"datasource":case void 0:a&&(c.datasourceBind=a);break;case"custom":c.props.options=b;break}return y!==void 0&&(c.required=y),E!==void 0&&(c.maxLength=E),d!==void 0&&(c.encrypted=d),m!==void 0&&(c.encryptedMode=m),c}}},{key:"preToSchema",value:function(){this._callControlHooks("preToSchema",this)}},{key:"toSchema",value:function(){return this.preToSchema(),{id:this.id,type:this.type,props:U(this.props),fieldType:this.fieldType,controlType:this.controlType}}}],[{key:"updateBasicControl",value:function(r,u){if(r==="setting"){if(u.add){var i;(i=this.setting).push.apply(i,St(u.add))}u.remove&&this.removeSettingItem(u.remove),u.update}}}]),t}();F(P,"mode","Designer"),F(P,"slots",void 0),F(P,"slotPosition",void 0),F(P,"controlName","\u63A7\u4EF6"),F(P,"controlIcon","icon"),F(P,"controlType","control"),F(P,"controlFieldType",void 0),F(P,"controlEventKeys",[]),F(P,"controlCustomEvents",[]),F(P,"setting",[]),F(P,"__is_control__",!0),F(P,"removeSettingItem",Zn),F(P,"updateSettingItem",Yn);function Zn(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u,i=typeof r!="string",o=(u=t.setting)===null||u===void 0?void 0:u.findIndex(function(a){return a.key===(i?r.key:r)});if(o!==-1){var l,s;i?t.setting[o].showItems=(l=t.setting[o].showItems)===null||l===void 0?void 0:l.filter(function(a){return!r.hideItems.includes(a)}):t.setting.splice(o,1),i&&!(!((s=t.setting[o].showItems)===null||s===void 0)&&s.length)&&t.setting.splice(o,1)}})}function Yn(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var i=n.setting.find(function(a){return a.key===u});if(i){if(typeof t=="boolean")i.visible=t;else if((typeof t=="undefined"?"undefined":Iv(t))==="object"){var o,l=(o=t.type)!==null&&o!==void 0?o:"replace";if(l==="replace")i.showItems=t.showItems;else{var s;(s=i.showItems).push.apply(s,St(t.showItems))}}}})}function Pv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function er(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Tv(e,t,n){return t&&er(e.prototype,t),n&&er(e,n),e}function x(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Rv(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var be=function(){function t(n){Pv(this,t),x(this,"id",void 0),x(this,"type",void 0),x(this,"controlType",void 0),x(this,"props",void 0),x(this,"fieldType",void 0),x(this,"customEvents",[]),x(this,"pageStatus",void 0),x(this,"parent",null);var r=Rv(this,t)?this.constructor:void 0,u=r.controlType,i=r.controlFieldType,o=r.name,l=r.controlCustomEvents;u||_n("The ".concat(o," controlType is not define"));var s;this.id=(s=n==null?void 0:n.id)!==null&&s!==void 0?s:et(10);var a;this.type=(a=n==null?void 0:n.type)!==null&&a!==void 0?a:u,this.props=new W(n==null?void 0:n.props),this.customEvents=l;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var h;this.fieldType=(h=n==null?void 0:n.fieldType)!==null&&h!==void 0?h:i;var y;this.pageStatus=(y=n==null?void 0:n.pageStatus)!==null&&y!==void 0?y:Np.UNKNOWN}return Tv(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();x(be,"mode","Runtime"),x(be,"controlType","control"),x(be,"controlFieldType",void 0),x(be,"__is_control__",!0),x(be,"controlCustomEvents",[]);function tr(e){return(e==null?void 0:e.dataCode)!==void 0&&(e==null?void 0:e.fieldCode)!==void 0}function Mv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function $t(e,t,n){return t=Pe(t),xv(e,nr()?Reflect.construct(t,n||[],Pe(e).constructor):t.apply(e,n))}function Dt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Pe(e){return Pe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Pe(e)}function Ot(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&It(e,t)}function xv(e,t){return t&&(Lv(t)==="object"||typeof t=="function")?t:Mv(e)}function It(e,t){return It=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},It(e,t)}function Lv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function nr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(nr=function(){return!!e})()}var jv=function(e){Ot(t,e);function t(n){Dt(this,t);var r;r=$t(this,t,[n]),$(r,"dataBind",{}),$(r,"caption",{type:"string",required:!0,message:_("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")}),$(r,"isHideCaption",{type:"boolean"}),$(r,"labelPosition",{type:"enum",enum:["top","left"]}),$(r,"defaultState",{type:"enum",enum:["default","readonly"]}),$(r,"required",{type:"boolean"}),$(r,"captionTip",{type:"string",required:!1,message:_("CMD.pleaseEnterCaptionTip",null,"\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED")});var u={fieldCode:{type:"string",required:!0,message:_("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},dataCode:{type:"string",required:!0,message:_("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}};if(tr(n.dataBind))r.dataBind={type:"object",required:!0,fields:U(u),message:_("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};else{var i={type:"object",required:!0,fields:{},message:_("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};Object.keys(n.dataBind).forEach(function(o){i.fields[o]={type:"object",required:!0,fields:U(u),message:_("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}}),r.dataBind=i}return n.isShowCaptionTip&&(r.captionTip.required=!0),r}return t}(mt),qv=function(e){Ot(t,e);function t(n){Dt(this,t);var r;r=$t(this,t,[n]);var u=n.isHide?!1:n.required;return u&&r.push({type:"string",required:u,message:n.requiredMessage!==""?n.requiredMessage:_("CMD.runtimeRequired",{caption:n.caption},"{caption}\u5FC5\u586B")}),r}return t}(xn),Pt=function(e){Ot(t,e);function t(n){Dt(this,t);var r;r=$t(this,t,[n]),$(r,"caption",void 0),$(r,"isHideCaption",void 0),$(r,"isShowCaptionTip",void 0),$(r,"captionTip",void 0),$(r,"labelPosition",void 0),$(r,"dataBind",void 0),$(r,"defaultValue",void 0),$(r,"placeholder",void 0),$(r,"defaultState",void 0),$(r,"required",void 0),$(r,"requiredMessage",void 0);var u;r.caption=(u=n==null?void 0:n.caption)!==null&&u!==void 0?u:"";var i;r.isHideCaption=(i=n==null?void 0:n.isHideCaption)!==null&&i!==void 0?i:!1;var o;r.isShowCaptionTip=(o=n==null?void 0:n.isShowCaptionTip)!==null&&o!==void 0?o:!1;var l;r.captionTip=(l=n==null?void 0:n.captionTip)!==null&&l!==void 0?l:"";var s;r.defaultState=(s=n==null?void 0:n.defaultState)!==null&&s!==void 0?s:"default";var a;r.labelPosition=(a=n==null?void 0:n.labelPosition)!==null&&a!==void 0?a:"top";var f;r.placeholder=(f=n==null?void 0:n.placeholder)!==null&&f!==void 0?f:"";var h;r.required=(h=n==null?void 0:n.required)!==null&&h!==void 0?h:!1;var y;r.requiredMessage=(y=n==null?void 0:n.requiredMessage)!==null&&y!==void 0?y:"",r.dataBind=new Mn(n==null?void 0:n.dataBind);var E;return r.defaultValue=(E=n==null?void 0:n.defaultValue)!==null&&E!==void 0?E:"",r}return t}(W);$(Pt,"Rules",jv),$(Pt,"RuntimeRules",qv);function Nv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function kv(e,t,n){return t=Re(t),Gv(e,rr()?Reflect.construct(t,n||[],Re(e).constructor):t.apply(e,n))}function Vv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Te(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Re(e){return Re=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Re(e)}function Uv(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Tt(e,t)}function Gv(e,t){return t&&(Wv(t)==="object"||typeof t=="function")?t:Nv(e)}function Tt(e,t){return Tt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Tt(e,t)}function Wv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function rr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(rr=function(){return!!e})()}var ur=function(e){Uv(t,e);function t(n){Vv(this,t);var r;return r=kv(this,t,[n]),Te(r,"controlType","form"),Te(r,"props",void 0),r.props=new Pt(n==null?void 0:n.props),r}return t}(P);Te(ur,"controlEventKeys",["on_change","on_focus","on_blur"]),Te(ur,"controlCustomAttributes",void 0);function Hv(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function zv(e,t,n){return t=Me(t),Xv(e,ir()?Reflect.construct(t,n||[],Me(e).constructor):t.apply(e,n))}function Kv(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Me(e){return Me=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Me(e)}function Jv(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Rt(e,t)}function Xv(e,t){return t&&(Qv(t)==="object"||typeof t=="function")?t:Hv(e)}function Rt(e,t){return Rt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Rt(e,t)}function Qv(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function ir(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(ir=function(){return!!e})()}var Zv=function(e){Jv(t,e);function t(n){return Kv(this,t),zv(this,t,[n])}return t}(W);function Mt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Yv(e){if(Array.isArray(e))return Mt(e)}function eh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function or(e,t,n,r,u,i,o){try{var l=e[i](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function th(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){or(i,r,u,o,l,"next",s)}function l(s){or(i,r,u,o,l,"throw",s)}o(void 0)})}}function nh(e,t,n){return t=Q(t),dh(e,sr()?Reflect.construct(t,n||[],Q(e).constructor):t.apply(e,n))}function rh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ar(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function uh(e,t,n){return t&&ar(e.prototype,t),n&&ar(e,n),e}function X(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function te(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?te=Reflect.get:te=function(u,i,o){var l=ph(u,i);if(!!l){var s=Object.getOwnPropertyDescriptor(l,i);return s.get?s.get.call(o||u):s.value}},te(e,t,n||e)}function Q(e){return Q=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Q(e)}function ih(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&xt(e,t)}function oh(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ah(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function lh(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function sh(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){X(e,u,n[u])})}return e}function ch(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function fh(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ch(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function dh(e,t){return t&&(vh(t)==="object"||typeof t=="function")?t:eh(e)}function xt(e,t){return xt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},xt(e,t)}function ph(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Q(e),e!==null););return e}function lr(e){return Yv(e)||ah(e)||hh(e)||lh()}function vh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function hh(e,t){if(!!e){if(typeof e=="string")return Mt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Mt(e,t)}}function sr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(sr=function(){return!!e})()}function yh(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(i=0)),i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var _h=1e4,cr=function(t){ih(n,t);function n(r){rh(this,n);var u;u=nh(this,n,[r]),X(u,"controlType","layout"),X(u,"children",void 0),X(u,"excludes",void 0),X(u,"childrenMaxLength",void 0),X(u,"props",void 0);var i=oh(this,n)?this.constructor:void 0,o=i.excludes,l=i.childrenMaxLength;return u.props=new Zv(r==null?void 0:r.props),pt(u,"children",r==null?void 0:r.children,void 0,"Designer"),u.excludes=U(o),u.childrenMaxLength=l,u}return uh(n,[{key:"judgeExcludesChildren",value:function(u){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(u)}},{key:"judgeJoinChildren",value:function(u){var i=this.judgeExcludesChildren(u);return i&&this.childrenMaxLength>this.children.length}},{key:"validate",value:function(u,i){var o=this,l=this,s=function(){return te(Q(n.prototype),"validate",o)};return th(function(){return yh(this,function(a){switch(a.label){case 0:return[4,s().call(l,u,i)];case 1:return a.sent(),[4,Promise.all(this.children.map(function(f){return f.validate(u,i)}))];case 2:return a.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=te(Q(n.prototype),"toDataBindModel",this).call(this),o=i?[i]:[];return this.children.reduce(function(l,s){var a=s.toDataBindModel(u);if(Array.isArray(a)){var f=a.filter(function(h){return!!h});return lr(l).concat(lr(f))}return a&&l.push(a),l},o)}},{key:"toSchema",value:function(){var u=te(Q(n.prototype),"toSchema",this).call(this),i=this.children.map(function(o){var l=o.toSchema();return l});return fh(sh({},u),{children:i})}}]),n}(P);X(cr,"excludes",!1),X(cr,"childrenMaxLength",_h);function mh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function gh(e,t,n){return t=xe(t),Bh(e,fr()?Reflect.construct(t,n||[],xe(e).constructor):t.apply(e,n))}function Eh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ne(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function xe(e){return xe=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},xe(e)}function bh(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Lt(e,t)}function Bh(e,t){return t&&(Fh(t)==="object"||typeof t=="function")?t:mh(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Lt(e,t)}function Fh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function fr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(fr=function(){return!!e})()}var Ch=function(e){bh(t,e);function t(n,r,u){Eh(this,t);var i;i=gh(this,t,[r]),ne(i,"headers",void 0),ne(i,"footers",void 0),ne(i,"pageIndex",void 0),ne(i,"pageSize",void 0),ne(i,"pageSizeOptions",void 0),ne(i,"totalCount",void 0),pt(i,"headers",r==null?void 0:r.headers,n,u),pt(i,"footers",r==null?void 0:r.footers,n);var o;i.pageIndex=(o=r==null?void 0:r.pageIndex)!==null&&o!==void 0?o:1;var l;i.pageSize=(l=r==null?void 0:r.pageSize)!==null&&l!==void 0?l:20;var s;i.pageSizeOptions=(s=r==null?void 0:r.pageSizeOptions)!==null&&s!==void 0?s:[20];var a;return i.totalCount=(a=r==null?void 0:r.totalCount)!==null&&a!==void 0?a:0,i}return t}(W);function jt(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ah(e){if(Array.isArray(e))return jt(e)}function wh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dr(e,t,n,r,u,i,o){try{var l=e[i](o),s=l.value}catch(a){n(a);return}l.done?t(s):Promise.resolve(s).then(r,u)}function Sh(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function o(s){dr(i,r,u,o,l,"next",s)}function l(s){dr(i,r,u,o,l,"throw",s)}o(void 0)})}}function $h(e,t,n){return t=Z(t),Mh(e,_r()?Reflect.construct(t,n||[],Z(e).constructor):t.apply(e,n))}function Dh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Oh(e,t,n){return t&&pr(e.prototype,t),n&&pr(e,n),e}function Le(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function re(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?re=Reflect.get:re=function(u,i,o){var l=xh(u,i);if(!!l){var s=Object.getOwnPropertyDescriptor(l,i);return s.get?s.get.call(o||u):s.value}},re(e,t,n||e)}function Z(e){return Z=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Z(e)}function Ih(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&qt(e,t)}function Ph(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Th(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function vr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){Le(e,u,n[u])})}return e}function Rh(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function hr(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Rh(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function Mh(e,t){return t&&(Lh(t)==="object"||typeof t=="function")?t:wh(e)}function qt(e,t){return qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},qt(e,t)}function xh(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=Z(e),e!==null););return e}function yr(e){return Ah(e)||Ph(e)||jh(e)||Th()}function Lh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function jh(e,t){if(!!e){if(typeof e=="string")return jt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return jt(e,t)}}function _r(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_r=function(){return!!e})()}function qh(e,t){var n,r,u,i={label:0,sent:function(){if(u[0]&1)throw u[1];return u[1]},trys:[],ops:[]},o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=l(0),o.throw=l(1),o.return=l(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function l(a){return function(f){return s([a,f])}}function s(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(i=0)),i;)try{if(n=1,r&&(u=a[0]&2?r.return:a[0]?r.throw||((u=r.return)&&u.call(r),0):r.next)&&!(u=u.call(r,a[1])).done)return u;switch(r=0,u&&(a=[a[0]&2,u.value]),a[0]){case 0:case 1:u=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(u=i.trys,!(u=u.length>0&&u[u.length-1])&&(a[0]===6||a[0]===2)){i=0;continue}if(a[0]===3&&(!u||a[1]>u[0]&&a[1]<u[3])){i.label=a[1];break}if(a[0]===6&&i.label<u[1]){i.label=u[1],u=a;break}if(u&&i.label<u[2]){i.label=u[2],i.ops.push(a);break}u[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(f){a=[6,f],r=0}finally{n=u=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}var Nh=function(e){Ih(t,e);function t(n){Dh(this,t);var r;return r=$h(this,t,[n]),Le(r,"controlType","list"),Le(r,"props",void 0),r.props=new Ch(r,n==null?void 0:n.props,"Designer"),r}return Oh(t,[{key:"validate",value:function(r,u){var i=this,o=this,l=function(){return re(Z(t.prototype),"validate",i)};return Sh(function(){return qh(this,function(s){switch(s.label){case 0:return[4,l().call(o,r)];case 1:return s.sent(),[4,Promise.all(this.props.headers.map(function(a){return a.validate(r,u)}))];case 2:return s.sent(),[2,!0]}})}).call(this)}},{key:"toDataBindModel",value:function(){var r=re(Z(t.prototype),"toDataBindModel",this).call(this),u=r?[r]:[],i=this.id;return this.props.headers.reduce(function(o,l){var s=l.toDataBindModel(i);if(Array.isArray(s)){var a=s.filter(function(f){return!!f});return yr(o).concat(yr(a))}return s&&o.push(s),o},u)}},{key:"toSchema",value:function(){var r=re(Z(t.prototype),"toSchema",this).call(this),u=this.props.headers.map(function(i){return i.toSchema()});return hr(vr({},r),{props:hr(vr({},this.props),{headers:u})})}}]),t}(P);Le(Nh,"controlFieldType",z.LIST);function kh(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function mr(e,t,n){return t=je(t),Vh(e,br()?Reflect.construct(t,n||[],je(e).constructor):t.apply(e,n))}function gr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function R(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function je(e){return je=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},je(e)}function Er(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Nt(e,t)}function Vh(e,t){return t&&(Uh(t)==="object"||typeof t=="function")?t:kh(e)}function Nt(e,t){return Nt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Nt(e,t)}function Uh(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function br(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(br=function(){return!!e})()}var Gh=function(e){Er(t,e);function t(n){gr(this,t);var r;return r=mr(this,t,[n]),R(r,"caption",{type:"string",required:!0,message:_("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")}),R(r,"width",{type:"number",required:!1,message:_("CMD.pleaseEnterColumnWidth",null,"\u8BF7\u8F93\u5165\u5217\u5BBD")}),r.width.required=n.widthType==="px",r}return t}(mt),Wh=function(e){Er(t,e);function t(n){gr(this,t);var r;r=mr(this,t,[n]),R(r,"widthType",void 0),R(r,"width",void 0),R(r,"caption",void 0),R(r,"dataBind",void 0),R(r,"autoWidth",void 0),R(r,"fixed",void 0),R(r,"sort",void 0),R(r,"align",void 0),R(r,"colSpan",void 0),R(r,"autoHeight",void 0),R(r,"children",void 0);var u;r.width=(u=n==null?void 0:n.width)!==null&&u!==void 0?u:150,r.widthType=(n==null?void 0:n.widthType)||"auto";var i;r.caption=(i=n==null?void 0:n.caption)!==null&&i!==void 0?i:"";var o;r.fixed=(o=n==null?void 0:n.fixed)!==null&&o!==void 0?o:"none",r.autoWidth=new qp(n==null?void 0:n.autoWidth),r.dataBind=new Mn(n==null?void 0:n.dataBind);var l;r.sort=(l=n==null?void 0:n.sort)!==null&&l!==void 0?l:!0,r.align=n==null?void 0:n.align,r.colSpan=n==null?void 0:n.colSpan;var s;return r.autoHeight=(s=n==null?void 0:n.autoHeight)!==null&&s!==void 0?s:!1,r}return t}(W);R(Wh,"Rules",Gh);function kt(e){return"children"in e&&ve(e.children)}function Br(e){return"headers"in e.props&&ve(e.props.headers)}function qe(e,t){Array.isArray(e)&&e.map(n=>{n.type===v.SUBTABLE?qe(n.props.headers,t):kt(n)?qe(n==null?void 0:n.children,t):n.controlType===T.FORM&&t(n)})}const Hh=[v.AMOUNT,v.CALC,v.DATE_RANGE];_("CMD.amount",null,"\u91D1\u989D"),z.DECIMAL,_("CMD.currency",null,"\u5E01\u79CD"),z.VARCHAR,_("CMD.result",null,"\u7ED3\u679C"),z.DECIMAL,_("CMD.unit",null,"\u5355\u4F4D"),z.VARCHAR,_("CMD.startTime",null,"\u5F00\u59CB\u65F6\u95F4"),z.TIMESTAMP,_("CMD.endTime",null,"\u7ED3\u675F\u65F6\u95F4"),z.TIMESTAMP;function zh(e){let t=[];return qe(e,n=>{n.controlType===T.FORM?t.push(n):(n.type,v.SUBTABLE)}),t}function Kh(e,t=""){return!e||!Array.isArray(e)?[]:e.map(n=>{if(!n.dataBind||n.type===v.TITLE)return n;if(Hh.includes(n.type)){const r=n.dataBind;Object.keys(r).forEach(u=>{const i=r[u],o=n.controlId+"_"+u;i.fieldCode=Fr(o),i.dataCode=t})}else n.dataBind.fieldCode=Fr(n.controlId),n.dataBind.dataCode=t;return n})}function Fr(e){const t="field_";return e.startsWith(t)?e:t+e}function Vt(e){return Array.isArray(e)?e.map(t=>t.toSchema()):e.toSchema()}function Ut(e){return Array.isArray(e)?e.map(t=>t.toDataBindModel()).filter(t=>!!t).flat():e.toDataBindModel()}function Gt(e,t,n){return sn(this,null,function*(){return Array.isArray(e)?(yield Promise.all(e.map(u=>u.validate(t,n)))).every(u=>u):yield e.validate(t,n)})}const Jh=[v.TITLE,v.GRID_TABLE_COLUMN,v.SUBTABLE_COLUMN,v.OPERATION_COLUMN,v.DATA_VIEW,v.LIST_VIEW,v.HEADER,v.FOOTER,v.SIMPLE_SEARCH,v.ROW,v.GRID_ROW,v.COL,v.GRID,v.DIVIDER,v.TAB_PANE,v.TAB,v.CARD_GROUP,v.ACTION_BAR,v.GRID_LAYOUT_CONTAINER,v.GRID_LAYOUT_WRAP],Xh=[v.CALC],Qh={check:{id:"listPageCheckBtnId",caption:_("CMD.view",null,"\u67E5\u770B")},edit:{id:"listPageEditBtnId",caption:_("CMD.edit",null,"\u7F16\u8F91")},delete:{id:"listPageDeleteBtnId",caption:_("CMD.delete",null,"\u5220\u9664")}};function Be(e,t){var r,u,i,o,l,s,a,f,h;const n=[];if(ve(e))n.push(...e.map(y=>Be(y,t)).flat());else{const y=e.type,{caption:E,content:b}=e.props;let d;if(Jh.includes(y))y===v.OPERATION_COLUMN&&Object.entries(Qh).reduce((m,[c,{caption:p,id:w}])=>{var S;const C=e.props[c];return C&&C.isShow&&m.push({controlId:w,caption:p,type:e.type,controlType:e.controlType,parentId:(S=t==null?void 0:t.controlId)!=null?S:null,canEdit:!1,canRead:!1,canHide:!0,group:"element"}),m},n);else if(d={controlId:e.id,caption:E||b||e.name,type:e.type,controlType:e.controlType,parentId:(r=t==null?void 0:t.controlId)!=null?r:null,canEdit:!Xh.includes(y),canRead:!0,canHide:!0,group:"element"},t&&t.type===v.SUBTABLE&&(d.caption=t.caption+"_"+d.caption),y===v.VUE_FORM_ITEM&&(d.caption=e.props.controlExportName||e.name),(e.controlType===T.FORM||e.controlType===T.COLUMN)&&((i=(u=e.props)==null?void 0:u.dataBind)==null?void 0:i.fieldCode)!==void 0&&((l=(o=e.props)==null?void 0:o.dataBind)==null?void 0:l.fieldCode)!==""&&(d.group="field"),n.push(d),y===v.VUE_FORM_ITEM){let m="element";((a=(s=e.props)==null?void 0:s.dataBind)==null?void 0:a.fieldCode)!==void 0&&((h=(f=e.props)==null?void 0:f.dataBind)==null?void 0:h.fieldCode)!==""&&(m="field");const c=e.props.permissions;c==null||c.map(p=>{var w;d={controlId:p.key,caption:p.caption,type:e.type,controlType:e.controlType,parentId:(w=e.id)!=null?w:null,canEdit:!0,canRead:!0,canHide:!0,group:m},n.push(d)})}e.children&&n.push(...e.children.map(m=>Be(m,t)).flat()),e.controlType===T.LIST&&n.push(...e.props.headers.map(m=>Be(m,d)).flat())}return n}class ue extends ye{constructor(){super("Designer"),this.toolbox=[],this.services={},this.eventLogic=new he,this.fieldTypes=z,this.controlSettingMap=new Map,new.target.staticControls.forEach(t=>{const{Designer:n,Setting:r}=t;this.controlSettingMap.set(n.controlType,r)})}registerControl(t){this.constructor.register(t,"Designer");const{Designer:n,Setting:r}=t;this.register(n),this.registeredControlTypes.add(n.controlType),this.controlSettingMap.set(n.controlType,r)}getControlSetting(t){const n=this.controlSettingMap.get(t);return n||null}setInstance(t,n,r){try{if(!t)return;t.updateProps(n,r)}catch(u){throw u}}eachControls(t){this.getControls().forEach(t)}getInitControl(){return[this.createControlInstance("grid")]}checkSchema(...t){return sn(this,null,function*(){return Gt(...t)})}getModelBindInfoList(...t){return Ut(...t)}getSchema(...t){return Vt(...t)}listenControlHook(...t){return Un.on(...t)}}ue.EventLogic=he;class Zh{constructor(){this.designer=new ue}ListPageBuilder(){const t=this.designer.createControlInstance(v.LIST_VIEW),n=this.designer.createControlInstance(v.SIMPLE_SEARCH),r=this.designer.createControlInstance(v.GRID_TABLE),u=this.designer.createControlInstance(v.CREATE_FORM_LIST_BUTTON),i=this.designer.createControlInstance(v.IMPORT_RECORD_LIST_BUTTON),o=this.designer.createControlInstance(v.EXPORT_LIST_BUTTON),l=this.designer.createControlInstance(v.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),r.children.push(o),r.children.push(l),t.children.push(n),t.children.push(r),t}ProListPageBuilder(){const t=this.designer.createControlInstance(v.LIST_VIEW);t.props.countType="async";const n=this.designer.createControlInstance(v.SIMPLE_SEARCH),r=this.designer.createControlInstance(v.GRID_TABLE),u=this.designer.createControlInstance(v.EXPORT_LIST_BUTTON),i=this.designer.createControlInstance(v.EXPORT_RECORD_LIST_BUTTON);return r.children.push(u),r.children.push(i),t.children.push(n),t.children.push(r),t.props.rowStyle={type:"rules",interval:{color:""},rules:[{id:"default",name:_("CMD.approvedDocuments",null,"\u5BA1\u6279\u901A\u8FC7\u5355\u636E"),color:"theme",filters:[{ruleId:1,symbol:"op_equal",leftVariableBo:{type:"varchar",value:"process_status",name:_("CMD.processStatus",null,"\u6D41\u7A0B\u72B6\u6001")},checked:!1,describe:"ruleLine",type:"condition",rightVariableBo:{type:"custom",value:["COMPLETE"],displayBos:[]},isLowPerformance:!1,isMoreRelation:!1}],settings:[{color:"theme",field_codes:["process_status"],type:"fontColor",scope:"col"}],script:"(SpecialMatch(data,sys,'process_status','varchar','op_equal','COMPLETE'))"}]},t}FormPageBuilder(){const t=this.designer.createControlInstance(v.DATA_VIEW),n=this.designer.createControlInstance(v.TITLE),r=this.designer.createControlInstance(v.GRID);return t.children.push(n),t.children.push(r),t}VuePageBuilder(){const t=this.designer.createControlInstance(v.GRID),n=this.designer.createControlInstance(v.VUE_PAGE);return n.props.isHideCaption=!0,n.props.controlExportName="VuePage",t.children.push(n),t}}class Cr{constructor(t){var n;this.selected=null,this.selectedInstanceDataScopeParent=null,this.selectedDataScopeFlatInstances=[],this.selectedInstanceSetting=[],this.selectedInstanceSettingItems=[],this.selectedFieldItem=null,this.external={},this.movingInstance=null,this.movingInstanceOldParent=null,this.movingInstanceOldDataScopeParent=null,this.getParentBeforeInstanceMove=(n=t.getParentBeforeInstanceMove)!=null?n:r=>r.parent,this.instance=t.instance,this.getFlatInstances()}get selectedRules(){return this.selected?this.selected.rules:null}get selectedAntdRules(){const t=this.selectedRules;return t||null}setInstances(t){this.instance=t,this.getFlatInstances()}setSelectInstance(t){this.selected=t,this.selectedInstanceDataScopeParent=t?Ce(t):null,this.selectedDataScopeFlatInstances=this.selectedInstanceDataScopeParent?Sr(this.selectedInstanceDataScopeParent):[]}setSelectInstanceSettings(t){this.selectedInstanceSetting=t,this.selectedInstanceSettingItems=[],this.selectedInstanceSetting.forEach(n=>{this.selectedInstanceSettingItems.push(...this.getSettingItems(n))})}getSettingItems(t){return t.type==="group"?t.items:t.items.reduce((n,r)=>(n.push(...r.items),n),[])}setSelectedFieldItem(t){this.selectedFieldItem=t}setMovingInstance(t){this.movingInstance=t,this.movingInstanceOldParent=t?this.getParentBeforeInstanceMove(t):null,this.movingInstanceOldDataScopeParent=Ce(t)}updateDataFieldCodeMap(t){const n=Ce(t);if(!n)return;const r=this.dataFieldCodeMap.get(n.props.datasourceBind.dataCode);if(!!r){for(const[u,i]of r.entries())if(i.id===t.id){r.delete(u);break}wr(t,this.dataFieldCodeMap)}}getFlatInstances(){const t=[],n=new Map,r=new Map;Fe(this.instance,u=>{t.push(u),n.set(u.id,u),wr(u,r)}),this.flatInstances=t,this.instanceIdMap=n,this.dataFieldCodeMap=r}}function Ar(e,t,n){const{dataCode:r,fieldCode:u}=t;r&&u&&(e.has(r)||e.set(r,new Map),e.get(r).set(u,n))}function wr(e,t){if(e.controlType===T.FORM){const n=e.props.dataBind;tr(n)?Ar(t,n,e):n&&Object.values(n).forEach(r=>{Ar(t,r,e)})}}function Fe(e,t){(Array.isArray(e)?e:[e]).forEach(r=>{t(r),kt(r)&&Fe(r.children,t),Br(r)&&Fe(r.props.headers,t)})}function Wt(e){return[v.SUBTABLE,v.DATA_VIEW,v.LIST_VIEW].includes(e.type)}function Ce(e){let t=e?e.parent:null;if(!t)return null;for(;t&&!Wt(t);)t=t.parent;return t}function Sr(e){const t=[e];return Fe(e,n=>{n!==e&&t.includes(n.parent)&&!Wt(n)&&t.push(n)}),t}function Yh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ey(e,t,n){return t&&$r(e.prototype,t),n&&$r(e,n),e}function Ht(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var H=function(){function e(t){Yh(this,e),Ht(this,"visible",void 0),Ht(this,"expression",void 0),Ht(this,"updateParent",void 0);var n;this.visible=(n=t==null?void 0:t.visible)!==null&&n!==void 0?n:!0;var r;this.expression=(r=t==null?void 0:t.expression)!==null&&r!==void 0?r:!1;var u;this.updateParent=(u=t==null?void 0:t.updateParent)!==null&&u!==void 0?u:!1}return ey(e,[{key:"isAtomicComponent",get:function(){return!0}}]),e}();function ty(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Dr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ny(e,t,n){return t&&Dr(e.prototype,t),n&&Dr(e,n),e}function q(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ry=function(){function e(t){ty(this,e),q(this,"type",void 0),q(this,"label",void 0),q(this,"key",void 0),q(this,"component",void 0),q(this,"effect",void 0),q(this,"scopeEffect",void 0),q(this,"defaultValue",void 0),q(this,"validator",void 0),q(this,"props",void 0),q(this,"effectKeys",void 0),this.type=t.type,this.label=t.label,this.key=t.key,this.component=t.component;var n;this.effect=(n=t.effect)!==null&&n!==void 0?n:{};var r;this.scopeEffect=(r=t.scopeEffect)!==null&&r!==void 0?r:Yd,this.defaultValue=t.defaultValue,this.validator=t.validator;var u;this.props=(u=t.props)!==null&&u!==void 0?u:new H,this.effectKeys=Object.keys(this.effect)}return ny(e,[{key:"filterEffects",value:function(n){var r=this;return n===""?Object.values(this.effect):this.effectKeys.filter(function(u){var i=new RegExp("^".concat(u,"(\\.\\w+)*$"));return i.test(n)}).map(function(u){return r.effect[u]})}},{key:"callEffectFn",value:function(n,r){try{var u=n.apply(null,r);at(u)&&Object.assign(this.props,u)}catch(i){pe(`effect error
|
|
2
|
+
`.concat(i))}}},{key:"callEffect",value:function(n){for(var r=this,u=arguments.length,i=new Array(u>1?u-1:0),o=1;o<u;o++)i[o-1]=arguments[o];this.filterEffects(n).forEach(function(l){return r.callEffectFn(l,i)})}},{key:"callScopeEffect",value:function(){for(var n=arguments.length,r=new Array(n),u=0;u<n;u++)r[u]=arguments[u];this.callEffectFn(this.scopeEffect,r)}}]),e}();function uy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Or=function e(t){uy(this,e),Y(this,"type","group"),Y(this,"title",void 0),Y(this,"required",void 0),Y(this,"items",void 0),Y(this,"tips",void 0),Y(this,"fromId",void 0),Y(this,"visible",void 0);var n;this.title=(n=t.title)!==null&&n!==void 0?n:"";var r;this.required=(r=t.required)!==null&&r!==void 0?r:!1,this.items=t.items,this.tips=t.tips,this.visible=t.items.some(function(u){var i;return(i=u.props)===null||i===void 0?void 0:i.visible})};function iy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function oy(e){return"type"in e&&e.type==="tab"}var Ae=function e(t){iy(this,e),zt(this,"type","tab"),zt(this,"title",void 0),zt(this,"items",void 0),this.title=t.title,this.items=t.items};function Ir(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ay(e){if(Array.isArray(e))return e}function ly(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function sy(e,t,n){return t=Ne(t),vy(e,Pr()?Reflect.construct(t,n||[],Ne(e).constructor):t.apply(e,n))}function cy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ne(e)}function fy(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Kt(e,t)}function dy(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r=[],u=!0,i=!1,o,l;try{for(n=n.call(e);!(u=(o=n.next()).done)&&(r.push(o.value),!(t&&r.length===t));u=!0);}catch(s){i=!0,l=s}finally{try{!u&&n.return!=null&&n.return()}finally{if(i)throw l}}return r}}function py(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function vy(e,t){return t&&(yy(t)==="object"||typeof t=="function")?t:ly(e)}function Kt(e,t){return Kt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Kt(e,t)}function hy(e,t){return ay(e)||dy(e,t)||_y(e,t)||py()}function yy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function _y(e,t){if(!!e){if(typeof e=="string")return Ir(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ir(e,t)}}function Pr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Pr=function(){return!!e})()}var my=function(e){fy(t,e);function t(n){cy(this,t);var r;return r=sy(this,t,[n]),at(n)&&Object.entries(n).forEach(function(u){var i=hy(u,2),o=i[0],l=i[1];r[o]=l}),r}return t}(H);function gy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ey(e,t,n){return t=Ve(t),Fy(e,Tr()?Reflect.construct(t,n||[],Ve(e).constructor):t.apply(e,n))}function by(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ke(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ve(e){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ve(e)}function By(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Jt(e,t)}function Fy(e,t){return t&&(Cy(t)==="object"||typeof t=="function")?t:gy(e)}function Jt(e,t){return Jt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Jt(e,t)}function Cy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Tr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Tr=function(){return!!e})()}var Ay=function(e){By(t,e);function t(n){by(this,t);var r;r=Ey(this,t,[n]),ke(r,"maxLength",void 0),ke(r,"minLength",void 0),ke(r,"placeholder",void 0),ke(r,"i18n",void 0);var u;r.maxLength=(u=n==null?void 0:n.maxLength)!==null&&u!==void 0?u:"";var i;r.minLength=(i=n==null?void 0:n.minLength)!==null&&i!==void 0?i:"";var o;r.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"";var l;return r.i18n=(l=n==null?void 0:n.i18n)!==null&&l!==void 0?l:!1,r}return t}(H);function wy(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Sy(e,t,n){return t=Ue(t),Oy(e,Rr()?Reflect.construct(t,n||[],Ue(e).constructor):t.apply(e,n))}function $y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Xt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ue(e)}function Dy(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Qt(e,t)}function Oy(e,t){return t&&(Iy(t)==="object"||typeof t=="function")?t:wy(e)}function Qt(e,t){return Qt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Qt(e,t)}function Iy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Rr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Rr=function(){return!!e})()}var Py=function(e){Dy(t,e);function t(n){$y(this,t);var r;r=Sy(this,t,[n]),Xt(r,"max",void 0),Xt(r,"min",void 0),Xt(r,"placeholder",void 0);var u;r.max=(u=n==null?void 0:n.max)!==null&&u!==void 0?u:"";var i;r.min=(i=n==null?void 0:n.min)!==null&&i!==void 0?i:"";var o;return r.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"",r}return t}(H);function Ty(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ry(e,t,n){return t=Ge(t),Ly(e,Mr()?Reflect.construct(t,n||[],Ge(e).constructor):t.apply(e,n))}function My(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Zt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ge(e){return Ge=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ge(e)}function xy(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Yt(e,t)}function Ly(e,t){return t&&(jy(t)==="object"||typeof t=="function")?t:Ty(e)}function Yt(e,t){return Yt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Yt(e,t)}function jy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Mr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Mr=function(){return!!e})()}var qy=function(e){xy(t,e);function t(n){My(this,t);var r;r=Ry(this,t,[n]),Zt(r,"showType",void 0),Zt(r,"tips",void 0),Zt(r,"disabled",void 0);var u;r.showType=(u=n==null?void 0:n.showType)!==null&&u!==void 0?u:"switch";var i;r.tips=(i=n==null?void 0:n.tips)!==null&&i!==void 0?i:"";var o;return r.disabled=(o=n==null?void 0:n.disabled)!==null&&o!==void 0?o:!1,r}return t}(H);function Ny(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ky(e,t,n){return t=We(t),Wy(e,xr()?Reflect.construct(t,n||[],We(e).constructor):t.apply(e,n))}function Vy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Uy(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function We(e){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(e)}function Gy(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&en(e,t)}function Wy(e,t){return t&&(Hy(t)==="object"||typeof t=="function")?t:Ny(e)}function en(e,t){return en=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},en(e,t)}function Hy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function xr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(xr=function(){return!!e})()}var zy=function(e){Gy(t,e);function t(n){Vy(this,t);var r;r=ky(this,t,[n]),Uy(r,"options",void 0);var u;return r.options=(u=n==null?void 0:n.options)!==null&&u!==void 0?u:[],r}return t}(H);function Ky(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Jy(e,t,n){return t=He(t),Zy(e,jr()?Reflect.construct(t,n||[],He(e).constructor):t.apply(e,n))}function Xy(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Lr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function He(e){return He=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},He(e)}function Qy(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&tn(e,t)}function Zy(e,t){return t&&(Yy(t)==="object"||typeof t=="function")?t:Ky(e)}function tn(e,t){return tn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},tn(e,t)}function Yy(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function jr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(jr=function(){return!!e})()}var e5=function(e){Qy(t,e);function t(n){Xy(this,t);var r;r=Jy(this,t,[n]),Lr(r,"placeholder",void 0),Lr(r,"options",void 0);var u;r.placeholder=(u=n==null?void 0:n.placeholder)!==null&&u!==void 0?u:"";var i;return r.options=(i=n==null?void 0:n.options)!==null&&i!==void 0?i:[],r}return t}(H);function t5(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function n5(e,t,n){return t=ze(t),i5(e,Nr()?Reflect.construct(t,n||[],ze(e).constructor):t.apply(e,n))}function r5(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ze(e){return ze=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ze(e)}function u5(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&nn(e,t)}function i5(e,t){return t&&(o5(t)==="object"||typeof t=="function")?t:t5(e)}function nn(e,t){return nn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},nn(e,t)}function o5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function Nr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Nr=function(){return!!e})()}var a5=function(e){u5(t,e);function t(n){r5(this,t);var r;r=n5(this,t,[n]),qr(r,"options",void 0),qr(r,"showType",void 0);var u;r.options=(u=n==null?void 0:n.options)!==null&&u!==void 0?u:[];var i;return r.showType=(i=n==null?void 0:n.showType)!==null&&i!==void 0?i:"outline",r}return t}(H);function l5(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function s5(e,t,n){return t=Ke(t),d5(e,kr()?Reflect.construct(t,n||[],Ke(e).constructor):t.apply(e,n))}function c5(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ke(e){return Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Ke(e)}function f5(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&rn(e,t)}function d5(e,t){return t&&(p5(t)==="object"||typeof t=="function")?t:l5(e)}function rn(e,t){return rn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},rn(e,t)}function p5(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e}function kr(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(kr=function(){return!!e})()}var v5=function(e){f5(t,e);function t(n){c5(this,t);var r;r=s5(this,t,[n]),ie(r,"maxLength",void 0),ie(r,"minLength",void 0),ie(r,"placeholder",void 0),ie(r,"i18n",void 0),ie(r,"maxRows",void 0),ie(r,"minRows",void 0);var u;r.maxLength=(u=n==null?void 0:n.maxLength)!==null&&u!==void 0?u:"";var i;r.minLength=(i=n==null?void 0:n.minLength)!==null&&i!==void 0?i:"";var o;r.placeholder=(o=n==null?void 0:n.placeholder)!==null&&o!==void 0?o:"";var l;r.maxRows=(l=n==null?void 0:n.maxRows)!==null&&l!==void 0?l:"";var s;r.minRows=(s=n==null?void 0:n.minRows)!==null&&s!==void 0?s:"";var a;return r.i18n=(a=n==null?void 0:n.i18n)!==null&&a!==void 0?a:!1,r}return t}(H);function h5(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function un(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){h5(e,u,n[u])})}return e}function y5(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function on(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):y5(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function _5(e,t){switch(e){case"input":return new Ay(t);case"textarea":return new v5(t);case"input-number":return new Py(t);case"switch":return new qy(t);case"radio":return new a5(t);case"checkbox":return new zy(t);case"select":return new e5(t);default:return new my(t)}}function m5(e){return function(t){var n=e.get(t);if(!!n)return new ry(on(un({},n),{props:_5(n.component,"props"in n?n.props:void 0)}))}}function g5(e){var t=e.fields.reduce(function(u,i){return u.set(i.key,i),u},new Map);function n(u){return new Or(on(un({},u),{items:u.items.map(m5(t)).filter(Boolean)}))}function r(u){return u.map(n)}return e.groups.map(function(u){return oy(u)?new Ae(on(un({},u),{items:r(u.items)})):n(u)})}let an="";class Vr extends wn{constructor(t){super(),this.isMounted=!1,this.id=et(8),this.__pluginsApplied=!1,this.getSchema=Vt,this.getModelBindInfoList=Ut,this.generatePermissions=Be,this.$options=Object.freeze(t);const{autoMount:n=!1,Designer:r=ue,schema:u,mode:i="form",store:o={},messagesI18n:l,language:s=cn}=this.$options;this.eventLogic=new he,this.designer=new r,this.store=new Cr(le({instance:this.designer.createControl(Array.isArray(u)?u:[u])},o)),this.mode=i,n&&this.mount()}mount(){const{plugins:t=[]}=this.$options;this.__plugins=t,this.applyPlugins(),this.isMounted=!0}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{an=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this),an=""}catch(r){pe(`${an||t.constructor.name} Plugin apply Error
|
|
3
|
+
${r}`)}}),this.__pluginsApplied=!0)}emit(t,...n){return super.emit(t,n)}on(t,n){return super.on(t,n)}setInstances(t,n){this.store.setInstances(this.designer.createControl(Array.isArray(t)?t:[t],n))}beforeSelectInstance(){this.store.setSelectInstance(null),this.setSelectedFieldItem(null),this.store.setSelectInstanceSettings([])}afterSelectInstance(){const t=this.store.selected;!t||(this.setSelectedInstanceSetting(),this.emit("select",{instance:t}))}setSelectedInstanceSetting(){var u,i;const t=this.store.selected;if(!t)return;let n=this.getControlSetting(t.type);if(((u=t.parent)==null?void 0:u.controlType)===T.WRAP){const o=this.getControlSetting((i=t.parent)==null?void 0:i.type);n=this.concatSetting(n,o,t.parent.id)}this.store.setSelectInstanceSettings(n),this.callSelectedEffect("");const r={from:null,current:this.store.selectedInstanceDataScopeParent,oldParent:null,newParent:t.parent};this.callSelectedScopeEffect(r)}concatSetting(t,n,r){var i,o,l,s,a,f,h,y;let u=t;if(((i=t[0])==null?void 0:i.type)==="tab"&&((o=n[0])==null?void 0:o.type)==="tab"){const E=t,b=n.slice(0);u=E.map((d,m)=>{const c=new Ae(d),p=b.findIndex(C=>C.title===d.title);if(p===-1)return c;const w=b.splice(p,1)[0];return w&&(c.items=[...this.formatGroupSetting(w.items,r),...c.items]),c}),b.length&&(u=[...u,...b.map(d=>this.formatGroupSetting(d,r))])}else if(((l=t[0])==null?void 0:l.type)==="group"&&((s=n[0])==null?void 0:s.type)==="group"){const E=t,b=n;u=[...this.formatGroupSetting(b,r),...E]}else if(((a=t[0])==null?void 0:a.type)==="tab"&&((f=n[0])==null?void 0:f.type)==="group"){const E=t,b=n;u=E.map((d,m)=>{const c=new Ae(d);return m===0&&(c.items=[...this.formatGroupSetting(b,r),...c.items]),c})}else if(((h=t[0])==null?void 0:h.type)==="group"&&((y=n[0])==null?void 0:y.type)==="tab"){const E=t;u=n.map((d,m)=>{const c=new Ae(d);return m===0&&(c.items=[...c.items,...this.formatGroupSetting(E,r)]),c})}return u}formatGroupSetting(t,n){if(ve(t))return t.map(r=>{const u=new Or(r);return u.fromId=n,u});{const r=new Ae(t);return r.items=this.formatGroupSetting(r.items,n),r}}setControlConfig(...t){return this.designer.registerControlConfig(...t)}getControlConfig(t){return this.designer.getControlConfig(t)}getControlSetting(t){const n=this.designer.getControlSetting(t);return n?g5(n):[]}selectInstance(t){this.beforeSelectInstance(),this.store.setSelectInstance(t),this.afterSelectInstance()}setSelectedFieldItem(t){this.store.setSelectedFieldItem(t),this.callSelectedEffect("dataBind",{fieldItem:t})}moveStart(t){const n=this.getInstance(t);n&&this.store.setMovingInstance(n)}moveEnd(t=this.store.movingInstance){var s;if(t===null)return;const n=this.getInstance(t);if(!n)return;const r=this.store.movingInstanceOldDataScopeParent,u=Ce(n),i=this.store.movingInstanceOldParent,o=n.parent;this.store.setMovingInstance(null),n.id!==((s=this.store.selected)==null?void 0:s.id)?this.selectInstance(n):this.store.setSelectInstance(n),this.store.getFlatInstances();const l={from:r,current:u,oldParent:i,newParent:o};this.callSelectedScopeEffect(l),i?this.emit("moved",le({},l)):this.emit("joined",le({},l))}createInstance(t,n){return this.designer.createControlInstance(t,n)}getInstance(t){return typeof t=="string"?this.store.instanceIdMap.get(t):t}getInstances(){return this.store.flatInstances}getInstancesFromType(t){return this.getInstances().filter(n=>n.type===t)}getDataScopeInstances(){return this.store.selectedDataScopeFlatInstances}getDataScopeInstancesFromType(t){return this.getDataScopeInstances().filter(n=>n.type===t)}updateInstancePropValue(t,n,r,u){var o;!En(t.props,n,r)||(n.startsWith("dataBind")&&this.store.updateDataFieldCodeMap(t),t.id===((o=this.store.selected)==null?void 0:o.id)&&this.callSelectedEffect(n,u),this.emit("updated",{instance:t,propName:n,value:r}))}updateInstanceProps(t,n,r,u=""){Object.entries(n).forEach(([i,o])=>{const l=`${u?u+".":""}${i}`;mp(o)?this.updateInstanceProps(t,o,r,l):this.updateInstancePropValue(t,l,o,r)})}setInstance(t,n,r,u){lt(n)?this.updateInstancePropValue(t,String(n),r,u):this.updateInstanceProps(t,n,r)}removeInstance(t){const n=t.parent;if(!n)return;const r=n.controlType===T.LIST&&n.props.headers.includes(t)?n.props.headers:n.children,u=r.findIndex(i=>i===t);u>-1&&r.splice(u,1),this.store.getFlatInstances(),this.emit("removed",{instance:t,index:u,parent:n})}replaceInstance(t,n){const r=t.parent;if(!r)return;const u=r.controlType===T.LIST&&r.props.headers.includes(t)?r.props.headers:r.children,i=u.findIndex(o=>o===t);i>-1&&u.splice(i,1,n),this.store.getFlatInstances()}updateInstanceType(t,n){const r=t.toSchema(),u=this.createInstance(n,{id:r.id,props:r.props});if(!u){$e(`can\u2018t update instance type to ${n}`);return}return u}validate(t,n){return Gt(this.store.instance,t,n)}getCustomControlsInUse(){return this.getInstances().filter(this.assertInstanceIsCustomControl).reduce((t,n)=>(t.includes(n.type)||t.push(n.type),t),[])}assertInstanceIsCustomControl(t){return!gp(lt(t)?t:t.type)}static register(...t){return ue.register(...t),this}static judgeControlIsRegistered(t){return ue.staticRegisteredTypes.has(t.Designer.controlType)}judgeControlIsRegistered(t){return this.designer.registeredControlTypes.has(t.Designer.controlType)}register(...t){return this.designer.registerControl(t[0]),this}assertInstance(t,n){return lt(n)?t.type===n:n.includes(t.type)}getInstanceInListControl(t){let n=t;for(;n;){if(n.controlType===T.LIST)return!0;n=n.parent}return!1}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}callSelectedEffect(t,n={}){this.store.selectedInstanceSettingItems.forEach(r=>{r.callEffect(t,this,le({control:this.store.selected},n))})}callSelectedScopeEffect(t={}){this.store.selectedInstanceSettingItems.forEach(n=>{n.callScopeEffect(this,le({control:this.store.selected},t))})}}Vr.EventLogic=he,B.Builder=Zh,B.Designer=ue,B.Driven=Vr,B.Store=Cr,B.checkSchema=Gt,B.fillModelBindInfoListFieldCode=Kh,B.findInstanceDataScopeParent=Ce,B.generatePermissions=Be,B.getDataScopeFlatInstances=Sr,B.getMasterFormControls=zh,B.getModelBindInfoList=Ut,B.hasChildrenControl=kt,B.hasHeaderControl=Br,B.isDataScopeInstance=Wt,B.loop=Fe,B.loopFormControl=qe,B.toSchema=Vt,Object.defineProperty(B,"__esModule",{value:!0})});
|
package/dist/types/Builder.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ControlDesignerInstance } from '@byteluck-fe/model-driven-core';
|
|
2
|
+
import { CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
|
|
2
3
|
export declare class Builder {
|
|
3
4
|
private designer;
|
|
4
5
|
ListPageBuilder(): ControlDesignerInstance<'list-view'>;
|
|
5
6
|
ProListPageBuilder(): ControlDesignerInstance<'list-view'>;
|
|
6
7
|
FormPageBuilder(): ControlDesignerInstance<'data-view'>;
|
|
7
|
-
VuePageBuilder(): ControlDesignerInstance<
|
|
8
|
+
VuePageBuilder(): ControlDesignerInstance<CONTROL_TYPE.VUE_PAGE>;
|
|
8
9
|
}
|
package/dist/types/Driven.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ControlsKeys, ControlDesignerInstance, DesignerFormControl, DesignerLayoutControl, DesignerControl, DesignerListControl, DesignerSearchControl, DesignerWrapControl } from '@byteluck-fe/model-driven-core';
|
|
2
2
|
export declare function hasChildrenControl(instance: DesignerControl): instance is DesignerLayoutControl | DesignerSearchControl | DesignerWrapControl;
|
|
3
3
|
export declare function hasHeaderControl(instance: DesignerControl): instance is DesignerListControl;
|
|
4
|
-
export declare function hasFooterControl(instance: DesignerControl): instance is DesignerListControl;
|
|
5
4
|
export declare function loopFormControl(control: ControlDesignerInstance<ControlsKeys>[], callback: (item: DesignerFormControl | ControlDesignerInstance<'subtable'>, children?: DesignerFormControl[]) => any): void;
|
package/dist/types/utils.d.ts
CHANGED
|
@@ -1,24 +1,10 @@
|
|
|
1
|
-
import { Schema, ControlsKeys,
|
|
2
|
-
import { FieldTypes } from '@byteluck-fe/model-driven-shared';
|
|
1
|
+
import { Schema, ControlsKeys, DataBindModelType, DesignerControl, DesignerFormControl, Messages } from '@byteluck-fe/model-driven-core';
|
|
3
2
|
export declare function getMasterFormControls(controls: DesignerControl[]): DesignerFormControl[];
|
|
4
3
|
/**
|
|
5
4
|
* @description 给modelBindInfoList中填充fieldCode和dataCode
|
|
6
5
|
* @description 我们生成fieldCode的规则是:DataBind的控件,取`field_${id}`,ObjectDataBind的控件,取`field_${id}_${key}`, key指的是ObjectDataBind.keys()
|
|
7
6
|
* */
|
|
8
7
|
export declare function fillModelBindInfoListFieldCode(modelBindInfoList: DataBindModelType[], dataCode?: string): DataBindModelType[];
|
|
9
|
-
/**
|
|
10
|
-
* @description 通过fieldType获取列表表头的type
|
|
11
|
-
* */
|
|
12
|
-
export declare function getColumnTypeFromFiledType(fieldType: string): ColumnControlsKeys | undefined;
|
|
13
|
-
/**
|
|
14
|
-
* @description 通过modelBindInfoList生成多个columns
|
|
15
|
-
* */
|
|
16
|
-
export declare function getColumnsFromModelBindInfoList(modelBindInfoList: DataBindModelType[]): DesignerColumnControl[];
|
|
17
|
-
/**
|
|
18
|
-
* @description 通过fieldType获取列实例
|
|
19
|
-
* */
|
|
20
|
-
export declare function getColumnsFromFiledType(fieldTypes: FieldTypes[]): ControlDesignerInstance<ColumnControlsKeys>[];
|
|
21
|
-
export declare function getColumnsFromFiledType(fieldType: FieldTypes): ControlDesignerInstance<ColumnControlsKeys>;
|
|
22
8
|
/**
|
|
23
9
|
* @description 将控件实例转换为schema
|
|
24
10
|
* */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-driven",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.3.1-1-zt",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-controls": "
|
|
30
|
-
"@byteluck-fe/model-driven-core": "
|
|
31
|
-
"@byteluck-fe/model-driven-settings": "
|
|
32
|
-
"@byteluck-fe/model-driven-shared": "2.
|
|
29
|
+
"@byteluck-fe/model-driven-controls": "5.3.1-1-zt",
|
|
30
|
+
"@byteluck-fe/model-driven-core": "2.23.0-beta.26-zt",
|
|
31
|
+
"@byteluck-fe/model-driven-settings": "2.23.0-beta.26-zt",
|
|
32
|
+
"@byteluck-fe/model-driven-shared": "2.23.0-beta.23-zt"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "b705eb1c025298d01dd1740fc0c0ea2dab903570"
|
|
35
35
|
}
|