@byteluck-fe/model-driven-core 3.0.0-beta.5 → 3.0.0-beta.6
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/common/BaseControl/designer.js +15 -21
- package/dist/esm/common/BaseControl/runtime.js +1 -2
- package/dist/esm/common/LayoutControl/designer.js +6 -10
- package/dist/esm/common/ListControl/designer.js +6 -10
- package/dist/esm/common/Validator.js +1 -0
- package/dist/esm/common/initOptionAndDataSourceRules.js +5 -5
- package/dist/esm/framework/index.js +18 -9
- package/dist/index.umd.js +1 -1
- package/package.json +3 -3
|
@@ -120,7 +120,7 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
120
120
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
121
121
|
}
|
|
122
122
|
function _ts_generator(thisArg, body) {
|
|
123
|
-
var f, y, t,
|
|
123
|
+
var f, y, t, _ = {
|
|
124
124
|
label: 0,
|
|
125
125
|
sent: function() {
|
|
126
126
|
if (t[0] & 1) throw t[1];
|
|
@@ -128,12 +128,8 @@ function _ts_generator(thisArg, body) {
|
|
|
128
128
|
},
|
|
129
129
|
trys: [],
|
|
130
130
|
ops: []
|
|
131
|
-
};
|
|
132
|
-
return g = {
|
|
133
|
-
next: verb(0),
|
|
134
|
-
"throw": verb(1),
|
|
135
|
-
"return": verb(2)
|
|
136
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
131
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
132
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
137
133
|
return this;
|
|
138
134
|
}), g;
|
|
139
135
|
function verb(n) {
|
|
@@ -146,7 +142,7 @@ function _ts_generator(thisArg, body) {
|
|
|
146
142
|
}
|
|
147
143
|
function step(op) {
|
|
148
144
|
if (f) throw new TypeError("Generator is already executing.");
|
|
149
|
-
while(_)try {
|
|
145
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
150
146
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
151
147
|
if (y = 0, t) op = [
|
|
152
148
|
op[0] & 2,
|
|
@@ -214,6 +210,7 @@ function _ts_generator(thisArg, body) {
|
|
|
214
210
|
};
|
|
215
211
|
}
|
|
216
212
|
}
|
|
213
|
+
import { getLocaleText } from '@byteluck-fe/locale-message';
|
|
217
214
|
import Property from './property';
|
|
218
215
|
import { genNonDuplicateId, JSONCopy, referenceError, updateValueFromKeys } from '@byteluck-fe/model-driven-shared';
|
|
219
216
|
import { createValidator } from '../Validator';
|
|
@@ -223,8 +220,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
223
220
|
function Control(props) {
|
|
224
221
|
var _this = this;
|
|
225
222
|
_class_call_check(this, Control);
|
|
226
|
-
_define_property(this, "id", void 0 // 唯一标识符
|
|
227
|
-
);
|
|
223
|
+
_define_property(this, "id", void 0); // 唯一标识符
|
|
228
224
|
_define_property(this, "name", void 0);
|
|
229
225
|
_define_property(this, "icon", void 0);
|
|
230
226
|
_define_property(this, "type", void 0);
|
|
@@ -315,17 +311,16 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
315
311
|
{
|
|
316
312
|
key: "preValidate",
|
|
317
313
|
value: function preValidate() {
|
|
318
|
-
var _this = this;
|
|
319
314
|
return _async_to_generator(function() {
|
|
320
315
|
var rules, results, result;
|
|
321
316
|
return _ts_generator(this, function(_state) {
|
|
322
317
|
switch(_state.label){
|
|
323
318
|
case 0:
|
|
324
319
|
// 在处理validate之前,预留的钩子函数,允许在validate之前处理一些数据
|
|
325
|
-
rules = _object_spread({},
|
|
320
|
+
rules = _object_spread({}, this.rules);
|
|
326
321
|
return [
|
|
327
322
|
4,
|
|
328
|
-
|
|
323
|
+
this._callControlHooks('preValidate', rules)
|
|
329
324
|
];
|
|
330
325
|
case 1:
|
|
331
326
|
results = _state.sent();
|
|
@@ -336,14 +331,13 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
336
331
|
];
|
|
337
332
|
}
|
|
338
333
|
});
|
|
339
|
-
})();
|
|
334
|
+
}).call(this);
|
|
340
335
|
}
|
|
341
336
|
},
|
|
342
337
|
{
|
|
343
338
|
key: "validate",
|
|
344
339
|
value: // property校验
|
|
345
340
|
function validate(messages, ignore) {
|
|
346
|
-
var _this = this;
|
|
347
341
|
return _async_to_generator(function() {
|
|
348
342
|
var result, rules, validator, err;
|
|
349
343
|
return _ts_generator(this, function(_state) {
|
|
@@ -351,11 +345,11 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
351
345
|
case 0:
|
|
352
346
|
return [
|
|
353
347
|
4,
|
|
354
|
-
|
|
348
|
+
this.preValidate()
|
|
355
349
|
];
|
|
356
350
|
case 1:
|
|
357
351
|
result = _state.sent();
|
|
358
|
-
rules = result !== undefined ? result : _object_spread({},
|
|
352
|
+
rules = result !== undefined ? result : _object_spread({}, this.rules);
|
|
359
353
|
if (Array.isArray(ignore)) {
|
|
360
354
|
ignore.forEach(function(key) {
|
|
361
355
|
if (rules.hasOwnProperty(key)) {
|
|
@@ -374,7 +368,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
374
368
|
]);
|
|
375
369
|
return [
|
|
376
370
|
4,
|
|
377
|
-
validator.validate(
|
|
371
|
+
validator.validate(this.props)
|
|
378
372
|
];
|
|
379
373
|
case 3:
|
|
380
374
|
_state.sent();
|
|
@@ -385,7 +379,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
385
379
|
case 4:
|
|
386
380
|
err = _state.sent();
|
|
387
381
|
if (!err.control) {
|
|
388
|
-
err.control =
|
|
382
|
+
err.control = this;
|
|
389
383
|
}
|
|
390
384
|
throw err;
|
|
391
385
|
case 5:
|
|
@@ -394,7 +388,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
394
388
|
];
|
|
395
389
|
}
|
|
396
390
|
});
|
|
397
|
-
})();
|
|
391
|
+
}).call(this);
|
|
398
392
|
}
|
|
399
393
|
},
|
|
400
394
|
{
|
|
@@ -486,7 +480,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
486
480
|
_define_property(Control, "mode", 'Designer');
|
|
487
481
|
_define_property(Control, "slots", void 0);
|
|
488
482
|
_define_property(Control, "slotPosition", void 0);
|
|
489
|
-
_define_property(Control, "controlName", '
|
|
483
|
+
_define_property(Control, "controlName", getLocaleText('CMD.c81c1751969095754'));
|
|
490
484
|
_define_property(Control, "controlIcon", 'icon');
|
|
491
485
|
_define_property(Control, "controlType", 'control');
|
|
492
486
|
_define_property(Control, "controlFieldType", void 0);
|
|
@@ -44,8 +44,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
44
44
|
"use strict";
|
|
45
45
|
function Control(props) {
|
|
46
46
|
_class_call_check(this, Control);
|
|
47
|
-
_define_property(this, "id", void 0 // 唯一标识符
|
|
48
|
-
);
|
|
47
|
+
_define_property(this, "id", void 0); // 唯一标识符
|
|
49
48
|
_define_property(this, "type", void 0);
|
|
50
49
|
_define_property(this, "controlType", void 0);
|
|
51
50
|
_define_property(this, "props", void 0);
|
|
@@ -208,7 +208,7 @@ function _is_native_reflect_construct() {
|
|
|
208
208
|
})();
|
|
209
209
|
}
|
|
210
210
|
function _ts_generator(thisArg, body) {
|
|
211
|
-
var f, y, t,
|
|
211
|
+
var f, y, t, _ = {
|
|
212
212
|
label: 0,
|
|
213
213
|
sent: function() {
|
|
214
214
|
if (t[0] & 1) throw t[1];
|
|
@@ -216,12 +216,8 @@ function _ts_generator(thisArg, body) {
|
|
|
216
216
|
},
|
|
217
217
|
trys: [],
|
|
218
218
|
ops: []
|
|
219
|
-
};
|
|
220
|
-
return g = {
|
|
221
|
-
next: verb(0),
|
|
222
|
-
"throw": verb(1),
|
|
223
|
-
"return": verb(2)
|
|
224
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
219
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
220
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
225
221
|
return this;
|
|
226
222
|
}), g;
|
|
227
223
|
function verb(n) {
|
|
@@ -234,7 +230,7 @@ function _ts_generator(thisArg, body) {
|
|
|
234
230
|
}
|
|
235
231
|
function step(op) {
|
|
236
232
|
if (f) throw new TypeError("Generator is already executing.");
|
|
237
|
-
while(_)try {
|
|
233
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
238
234
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
239
235
|
if (y = 0, t) op = [
|
|
240
236
|
op[0] & 2,
|
|
@@ -360,7 +356,7 @@ var LayoutControl = /*#__PURE__*/ function _target(DesignerControl) {
|
|
|
360
356
|
_state.sent();
|
|
361
357
|
return [
|
|
362
358
|
4,
|
|
363
|
-
Promise.all(
|
|
359
|
+
Promise.all(this.children.map(function(child) {
|
|
364
360
|
return child.validate(messages, ignore);
|
|
365
361
|
}))
|
|
366
362
|
];
|
|
@@ -372,7 +368,7 @@ var LayoutControl = /*#__PURE__*/ function _target(DesignerControl) {
|
|
|
372
368
|
];
|
|
373
369
|
}
|
|
374
370
|
});
|
|
375
|
-
})();
|
|
371
|
+
}).call(this);
|
|
376
372
|
}
|
|
377
373
|
},
|
|
378
374
|
{
|
|
@@ -201,7 +201,7 @@ function _is_native_reflect_construct() {
|
|
|
201
201
|
})();
|
|
202
202
|
}
|
|
203
203
|
function _ts_generator(thisArg, body) {
|
|
204
|
-
var f, y, t,
|
|
204
|
+
var f, y, t, _ = {
|
|
205
205
|
label: 0,
|
|
206
206
|
sent: function() {
|
|
207
207
|
if (t[0] & 1) throw t[1];
|
|
@@ -209,12 +209,8 @@ function _ts_generator(thisArg, body) {
|
|
|
209
209
|
},
|
|
210
210
|
trys: [],
|
|
211
211
|
ops: []
|
|
212
|
-
};
|
|
213
|
-
return g = {
|
|
214
|
-
next: verb(0),
|
|
215
|
-
"throw": verb(1),
|
|
216
|
-
"return": verb(2)
|
|
217
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
212
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
213
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
218
214
|
return this;
|
|
219
215
|
}), g;
|
|
220
216
|
function verb(n) {
|
|
@@ -227,7 +223,7 @@ function _ts_generator(thisArg, body) {
|
|
|
227
223
|
}
|
|
228
224
|
function step(op) {
|
|
229
225
|
if (f) throw new TypeError("Generator is already executing.");
|
|
230
|
-
while(_)try {
|
|
226
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
231
227
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
232
228
|
if (y = 0, t) op = [
|
|
233
229
|
op[0] & 2,
|
|
@@ -330,7 +326,7 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
|
|
|
330
326
|
_state.sent();
|
|
331
327
|
return [
|
|
332
328
|
4,
|
|
333
|
-
Promise.all(
|
|
329
|
+
Promise.all(this.props.headers.map(function(child) {
|
|
334
330
|
return child.validate(messages, ignore);
|
|
335
331
|
}))
|
|
336
332
|
];
|
|
@@ -342,7 +338,7 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
|
|
|
342
338
|
];
|
|
343
339
|
}
|
|
344
340
|
});
|
|
345
|
-
})();
|
|
341
|
+
}).call(this);
|
|
346
342
|
}
|
|
347
343
|
},
|
|
348
344
|
{
|
|
@@ -147,17 +147,17 @@ export function initSuperDataSourceRules(props, attributes) {
|
|
|
147
147
|
dataCode: {
|
|
148
148
|
type: 'string',
|
|
149
149
|
required: true,
|
|
150
|
-
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseEnterDataCodeInDataSetting' : 'CMD.pleaseEnterDataCode', null, messageInDataSetting ? '
|
|
150
|
+
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseEnterDataCodeInDataSetting' : 'CMD.pleaseEnterDataCode', null, messageInDataSetting ? getLocaleText('CMD.8b141751969070995') : getLocaleText('CMD.c10c1751969078999'))
|
|
151
151
|
},
|
|
152
152
|
valueFieldCode: {
|
|
153
153
|
type: 'string',
|
|
154
154
|
required: true,
|
|
155
|
-
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseEnterValueFieldCodeInDataSetting' : 'CMD.pleaseEnterValueFieldCode', null, messageInDataSetting ? '
|
|
155
|
+
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseEnterValueFieldCodeInDataSetting' : 'CMD.pleaseEnterValueFieldCode', null, messageInDataSetting ? getLocaleText('CMD.c9fa1751969073128') : getLocaleText('CMD.01361751969082479'))
|
|
156
156
|
},
|
|
157
157
|
svcCode: {
|
|
158
158
|
type: 'string',
|
|
159
159
|
required: true,
|
|
160
|
-
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseEnterSvcCodeInDataSetting' : 'CMD.pleaseEnterSvcCode', null, messageInDataSetting ? '
|
|
160
|
+
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseEnterSvcCodeInDataSetting' : 'CMD.pleaseEnterSvcCode', null, messageInDataSetting ? getLocaleText('CMD.e0dc1751969075280') : getLocaleText('CMD.4ad71751969085378'))
|
|
161
161
|
},
|
|
162
162
|
attributes: [
|
|
163
163
|
{
|
|
@@ -188,11 +188,11 @@ export function initSuperDataSourceRules(props, attributes) {
|
|
|
188
188
|
type: 'array',
|
|
189
189
|
validator: function validator(rule, value, callback) {
|
|
190
190
|
if (value.length === 0) {
|
|
191
|
-
callback(getLocaleText(messageInDataSetting ? 'CMD.pleaseBindAtLeastOneDisplayValueInDataSetting' : 'CMD.pleaseBindAtLeastOneDisplayValue', null, messageInDataSetting ? '
|
|
191
|
+
callback(getLocaleText(messageInDataSetting ? 'CMD.pleaseBindAtLeastOneDisplayValueInDataSetting' : 'CMD.pleaseBindAtLeastOneDisplayValue', null, messageInDataSetting ? getLocaleText('CMD.0e161751969064445') : getLocaleText('CMD.f1421751969077253')));
|
|
192
192
|
}
|
|
193
193
|
callback();
|
|
194
194
|
},
|
|
195
|
-
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseBindAtLeastOneDisplayValueInDataSetting' : 'CMD.pleaseBindAtLeastOneDisplayValue', null, messageInDataSetting ? '
|
|
195
|
+
message: getLocaleText(messageInDataSetting ? 'CMD.pleaseBindAtLeastOneDisplayValueInDataSetting' : 'CMD.pleaseBindAtLeastOneDisplayValue', null, messageInDataSetting ? getLocaleText('CMD.0e161751969064445') : getLocaleText('CMD.f1421751969077253'))
|
|
196
196
|
}
|
|
197
197
|
]
|
|
198
198
|
}
|
|
@@ -1176,8 +1176,8 @@ export function initAiOptions(options) {
|
|
|
1176
1176
|
var _props_unit;
|
|
1177
1177
|
this.unit = (_props_unit = props === null || props === void 0 ? void 0 : props.unit) !== null && _props_unit !== void 0 ? _props_unit : '';
|
|
1178
1178
|
};
|
|
1179
|
-
|
|
1180
|
-
|
|
1179
|
+
// 币种类型
|
|
1180
|
+
export var AMOUNT_TYPE = /*#__PURE__*/ function(AMOUNT_TYPE) {
|
|
1181
1181
|
AMOUNT_TYPE["CNY"] = "CNY";
|
|
1182
1182
|
AMOUNT_TYPE["USD"] = "USD";
|
|
1183
1183
|
AMOUNT_TYPE["JPY"] = "JPY";
|
|
@@ -1205,9 +1205,17 @@ export var AMOUNT_TYPE;
|
|
|
1205
1205
|
AMOUNT_TYPE["VND"] = "VND";
|
|
1206
1206
|
AMOUNT_TYPE["HKD"] = "HKD";
|
|
1207
1207
|
AMOUNT_TYPE["IEP"] = "IEP";
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1208
|
+
return AMOUNT_TYPE;
|
|
1209
|
+
}({});
|
|
1210
|
+
/**
|
|
1211
|
+
* 选项设置
|
|
1212
|
+
* REQUIRED: 必填
|
|
1213
|
+
* isHide: 隐藏
|
|
1214
|
+
* IS_SHOW_UNIT: 单位
|
|
1215
|
+
* CAN_SEARCH: 支持搜索
|
|
1216
|
+
* MULTIPLE: 允许选中多个日期
|
|
1217
|
+
* SUBMIT_SELECT_CURRENCY: 提交时选择币种
|
|
1218
|
+
*/ export var COMMON_SETTING_TYPE = /*#__PURE__*/ function(COMMON_SETTING_TYPE) {
|
|
1211
1219
|
COMMON_SETTING_TYPE["DEFAULT_DISPLAY"] = "defaultDisplay";
|
|
1212
1220
|
COMMON_SETTING_TYPE["REQUIRED"] = "required";
|
|
1213
1221
|
COMMON_SETTING_TYPE["IS_HIDE"] = "isHide";
|
|
@@ -1243,14 +1251,15 @@ export var COMMON_SETTING_TYPE;
|
|
|
1243
1251
|
COMMON_SETTING_TYPE["IS_SHOW_SIMPLE_SEARCH"] = "isShowSimpleSearch";
|
|
1244
1252
|
COMMON_SETTING_TYPE["IS_SHOW_TOOL_BAE"] = "isShowToolbar";
|
|
1245
1253
|
COMMON_SETTING_TYPE["MAIN_DEPT_FLAG"] = "mainDeptFlag";
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1254
|
+
return COMMON_SETTING_TYPE;
|
|
1255
|
+
}({});
|
|
1256
|
+
export var PAGE_STATUS = /*#__PURE__*/ function(PAGE_STATUS) {
|
|
1249
1257
|
PAGE_STATUS[PAGE_STATUS["UNKNOWN"] = 0] = "UNKNOWN";
|
|
1250
1258
|
PAGE_STATUS[PAGE_STATUS["READONLY"] = 1] = "READONLY";
|
|
1251
1259
|
PAGE_STATUS[PAGE_STATUS["EDITABLE"] = 2] = "EDITABLE";
|
|
1252
1260
|
PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
|
|
1253
|
-
|
|
1261
|
+
return PAGE_STATUS;
|
|
1262
|
+
}({});
|
|
1254
1263
|
/**
|
|
1255
1264
|
* 操作按钮
|
|
1256
1265
|
* @public
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var D3=Object.defineProperty,b3=Object.defineProperties;var S3=Object.getOwnPropertyDescriptors;var cu=Object.getOwnPropertySymbols,w3=Object.getPrototypeOf,$3=Object.prototype.hasOwnProperty,R3=Object.prototype.propertyIsEnumerable,I3=Reflect.get;var du=(o,D,$)=>D in o?D3(o,D,{enumerable:!0,configurable:!0,writable:!0,value:$}):o[D]=$,H=(o,D)=>{for(var $ in D||(D={}))$3.call(D,$)&&du(o,$,D[$]);if(cu)for(var $ of cu(D))R3.call(D,$)&&du(o,$,D[$]);return o},re=(o,D)=>b3(o,S3(D));var st=(o,D,$)=>I3(w3(o),$,D);var le=(o,D,$)=>new Promise((Ae,oe)=>{var De=P=>{try{G($.next(P))}catch(Q){oe(Q)}},be=P=>{try{G($.throw(P))}catch(Q){oe(Q)}},G=P=>P.done?Ae(P.value):Promise.resolve(P.value).then(De,be);G(($=$.apply(o,D)).next())});(function(o,D){typeof exports=="object"&&typeof module!="undefined"?D(exports):typeof define=="function"&&define.amd?define(["exports"],D):(o=typeof globalThis!="undefined"?globalThis:o||self,D(o.modelDrivenCore={}))})(this,function(o){"use strict";var D="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",$="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Ae="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",oe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",be="{caption}\u5FC5\u586B",G="\u8BF7\u8F93\u5165\u6807\u9898",P="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Q="\u8BF7\u8F93\u5165\u884C\u6807\u9898",hu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",fu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Eu="\u8BF7\u7ED1\u5B9A\u8868\u5355",mu="\u8BF7\u7ED1\u5B9A\u5217\u8868",vu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Bu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Cu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Fu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",gu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Au="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Du="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",bu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Su="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",wu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",$u="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Ru="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Iu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Lu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",Mu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",_u="\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",xu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Pu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",qu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ou="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ku="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ju="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Uu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Nu="\u8BF7\u9009\u62E9\u7701",Wu="\u8BF7\u9009\u62E9\u5E02",Hu="\u8BF7\u9009\u62E9\u533A",Tu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",zu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ku="\u8BF7\u8F93\u5165\u5217\u5BBD",Ju="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Xu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Gu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Qu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Zu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Yu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",pu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",en="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",tn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",un="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",nn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",an="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",rn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ln="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",on="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",sn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",cn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",dn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",hn="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",fn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",En="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",mn="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",vn="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Bn="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Cn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Fn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",yn="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",gn="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",An="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",Dn="\u6279\u91CF\u5220\u9664",bn="\u6279\u91CF\u6253\u5370",Sn="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",wn="\u6309\u94AE",$n="\u521B\u5EFA\u5355\u636E",Rn="\u4EEA\u8868\u76D8",In="\u5206\u5272\u7EBF",Ln="\u5BFC\u51FA",Mn="\u8868\u5355\u64CD\u4F5C",_n="\u5BFC\u5165",Vn="\u53D1\u7968\u8BC6\u522B",xn="\u94FE\u63A5",Pn="\u5217\u8868\u9009\u62E9",qn="\u5217\u8868\u89C6\u56FE",On="\u64CD\u4F5C\u6309\u94AE",kn="\u5206\u9875",jn="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Un="\u8BF4\u660E\u6587\u5B57",Nn="\u6587\u5B57\u8BC6\u522B",Wn="\u6807\u9898\u7EC4\u4EF6",Hn="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Tn="\u6570\u7EC4",zn="\u81EA\u52A8\u7F16\u53F7",Kn="\u81EA\u5B9A\u4E49",Jn="\u6570\u503C",Xn="\u90E8\u95E8",Gn="\u4EBA\u5458",Qn="\u9644\u4EF6",Zn="\u56FE\u7247",Yn="\u5730\u5740",pn="\u64CD\u4F5C",ea="\u5E8F\u53F7",ta="\u4EBA\u5458",ua="\u957F\u6587\u672C",na="\u65E5\u671F\u533A\u95F4",aa="\u65E5\u671F",ia="\u77ED\u6587\u672C",ra="\u6362\u884C\u5BB9\u5668Wrap",la="\u8868\u683C",oa="\u660E\u7EC6\u5B50\u8868",sa="\u5730\u5740",ca="\u91D1\u989D",da="\u8BA1\u7B97\u516C\u5F0F",ha="\u591A\u9009",fa="\u7535\u5B50\u7B7E\u7AE0",Ea="\u5355\u884C\u6587\u672C",ma="\u6570\u5B57",va="\u4E1A\u52A1\u7EC4\u7EC7",Ba="\u5355\u9009",Ca="\u5BCC\u6587\u672C",Fa="\u8BC4\u5206",ya="\u6570\u5B57\u533A\u95F4",ga="\u4E0B\u62C9\u5355\u9009",Aa="\u4E0B\u62C9\u591A\u9009",Da="\u5173\u8054\u5355\u9009",ba="\u591A\u884C\u6587\u672C",Sa="\u6811",wa="Vue\u5BB9\u5668",$a="Vue\u9875\u9762",Ra="\u5728\u7EBF\u6587\u6863",Ia="\u6309\u94AE\u64CD\u4F5C\u680F",La="\u9AD8\u7EA7\u5BB9\u5668",Ma="\u5206\u7EC4",_a="\u6805\u683C\u5217",Va="\u6570\u636E\u5BB9\u5668",xa="\u753B\u5E03",Pa="\u6362\u884C\u5BB9\u5668",qa="\u6805\u683C\u7B49\u5206\u884C",Oa="\u5217\u8868\u5BB9\u5668",ka="\u81EA\u7531\u9875\u9762",ja="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Ua="\u5B9A\u4F4D\u5BB9\u5668",Na="\u6805\u683C\u5E03\u5C40",Wa="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Ha="\u660E\u7EC6\u5B50\u8868\u884C",Ta="\u6807\u7B7E\u9875",za="\u6807\u7B7E\u5355\u5143",Ka="\u5DE5\u5177\u680F",Ja="\u6279\u91CF\u63D0\u4EA4",Xa="\u5BFC\u51FA\u8BB0\u5F55",Ga="\u5217\u8868\u89C6\u56FE",Qa="\u7ED3\u675F\u65F6\u95F4",Za="\u5F00\u59CB\u65F6\u95F4",Ya="\u5355\u4F4D",pa="\u7ED3\u679C",ei="\u5E01\u79CD",ti="\u7ED3\u675F\u65E5\u671F",ui="\u5F00\u59CB\u65E5\u671F",ni="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",ai="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",ii="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ri="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",li="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",oi="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",si="\u8BF7\u9009\u62E9",ci="\u8BF7\u9009\u62E9\u7EC4\u7EC7",di="\u8BF7\u9009\u62E9\u90E8\u95E8",hi="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",fi="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",Ei="\u8BF7\u9009\u62E9\u5730\u5740",mi="\u5F39\u7A97\u786E\u8BA4\u65F6",vi="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Bi="\u884C\u9009\u4E2D\u65F6",Ci="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Fi="\u884C\u5220\u9664\u524D",yi="\u884C\u70B9\u51FB\u65F6",gi="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",Ai="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",Di="\u91CD\u547D\u540D\u65F6",bi="\u4FDD\u5B58\u6587\u4EF6\u65F6",Si="\u6253\u5F00\u6587\u4EF6\u65F6",wi="\u83B7\u53D6\u7126\u70B9\u65F6",$i="\u5931\u53BB\u7126\u70B9\u65F6",Ri="\u7528\u6237\u8F93\u5165\u65F6",Ii="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",Li="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Mi="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",_i="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Vi="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",xi="\u641C\u7D22\u65F6",Pi="\u503C\u53D1\u751F\u53D8\u5316\u65F6",qi="\u6267\u884C\u5B8C\u6210\u65F6",Oi="\u70B9\u51FB\u65F6",ki="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",ji="\u8BF7\u8F93\u5165\u65E5\u671F",Ui="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ni="\u8BF7\u8F93\u5165",Wi="\u9ED8\u8BA4\u6A21\u7248",Hi="\u5DE6\u53F3\u5E03\u5C40",Ti="\u4E0A\u4E0B\u5E03\u5C40",zi="\u53EA\u8BFB",Ki="\u5FC5\u586B",Ji="\u63D0\u793A\u6587\u5B57",Xi="\u9690\u85CF\u6807\u9898",Gi="\u6807\u9898\u5FC5\u586B",Qi="\u7EC4\u7EC7\u5F62\u6001",Zi="\u4E1A\u52A1\u7C7B\u578B",Yi="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",pi="\u9690\u85CF",er="\u6D41\u7A0B\u72B6\u6001",tr="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",ur="\u5220\u9664",nr="\u7F16\u8F91",ar="\u67E5\u770B",ir="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",rr="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",lr="\u5145\u6EE1\u6574\u884C",or="\u6700\u5C0F\u503C",sr="\u6700\u5927\u503C",cr="\u65B0\u5EFA\u6587\u6863",dr="\u91CD\u7F6E",hr="\u67E5\u8BE2",fr="\u660E\u7EC6",Er="\u6253\u5370",mr="\u4FDD\u5B58\u8349\u7A3F",vr="\u4FDD\u5B58",Br="\u53D6\u6D88",Cr="\u4E0A\u4F20\u56FE\u7247",Fr="\u53D1\u8D77\u7B7E\u7F72",yr="\u4E0A\u4F20\u9644\u4EF6",gr="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",Ar="\u5F15\u7528\u5217\u8868",Dr="\u9009\u9879\u4E00",br="\u9009\u9879\u4E8C",Sr="\u9009\u9879\u4E09",wr={isNotNumber:D,isNotString:$,isNotObject:Ae,isNotArray:oe,isNotBoolean:De,runtimeRequired:be,pleaseEnterCaption:G,pleaseEnterCaptionTip:P,pleaseEnterRowCaption:Q,pleaseEnterPlaceholder:hu,pleaseEnterFieldCode:fu,pleaseEnterForm:Eu,pleaseEnterList:mu,pleaseEnterProcess:vu,pleaseEnterLabel:Bu,pleaseEnterValue:Cu,bizKeyNotBindFiled:Fu,pleaseSelectOneField:yu,pleaseEnterNumberRange:gu,pleaseEnterAValueGreaterThanMin:Au,pleaseEnterAValueLessThanMax:Du,numberRangeSetError:bu,stringRangeError:Su,attachmentMaxSize:wu,pleaseEnterTotalScoreSetting:$u,theTotalScoreMustNotBeLessThan1:Ru,scoreDefaultValueRange:Iu,attachmentLimitError:Lu,PleaseReselectTheOptionalQuantity:Mu,TheMaximumLengthIsGreaterThanTheMinimumLength:_u,TheMinimumLengthIsGreaterThanTheMaximumLength:Vu,PleaseSelectTheCorrectOptionSettings:xu,optionIdIsRepeat:Pu,optionIsRequired:qu,pleaseEnterDataCode:Ou,pleaseEnterValueFieldCode:ku,pleaseEnterSvcCode:ju,pleaseBindAtLeastOneDisplayValue:Uu,pleaseSelectProvince:Nu,pleaseSelectCity:Wu,pleaseSelectDistrict:Hu,limitRowsCannotBeLessThan0:Tu,TheNumberOfRowsCannotBeLessThanMinRows:zu,pleaseEnterColumnWidth:Ku,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ju,pleaseCompleteAllRulesAndConditions:Xu,pleaseSelectControl:Gu,pleaseSelectAtLeastOneColumn:Qu,pleaseSelectFillBackMode:Zu,pleaseSelectDashboard:Yu,rootNodeIsRequired:pu,theViewNameCannotBeEmpty:en,pleaseSelectOcrType:tn,pleaseSelectAtLeastOneFieldToFillIn:un,pleaseChooseAtLeastOne:nn,pleaseEnterButtonContent:an,pleaseEnterDataCodeInDataSetting:rn,pleaseEnterValueFieldCodeInDataSetting:ln,pleaseEnterSvcCodeInDataSetting:on,pleaseBindAtLeastOneDisplayValueInDataSetting:sn,rootNodeIsRequiredInDataSetting:cn,pleaseEnterMaxHeight:dn,pleaseEnterWatermark:hn,pleaseEnterFileName:fn,pleaseUploadAtLeastOnePrintTemplate:En,pleaseAssignBusiness:mn,pleaseAssignExternal:vn,pleaseEnterAliasCode:Bn,pleaseSelectDataCode:Cn,pleaseSelectSvcCode:Fn,pleaseSelectJoinFieldCode:yn,pleaseSelectMainFieldCode:gn,pleaseSelectSortFieldCode:An,batchDeleteButton:Dn,batchPrintListButton:bn,batchPrintRecordList:Sn,button:wn,createFormListButton:$n,dashboard:Rn,divider:In,exportListButton:Ln,formSelectButton:Mn,importRecordListButton:_n,invoiceCheckButton:Vn,link:xn,listSelectButton:Pn,ListViewSelect:qn,operationButton:On,pagination:kn,submissionRecordListButton:jn,text:Un,textOcrButton:Nn,title:Wn,approvalStatusColumn:Hn,array:Tn,autoNumber:zn,custom:Kn,decimal:Jn,department:Xn,employee:Gn,file:Qn,image:Zn,location:Yn,operation:pn,order:ea,people:ta,long:ua,timescope:na,timestamp:aa,varchar:ia,gridLayoutWrap:ra,gridTable:la,subTable:oa,address:sa,amount:ca,calc:da,checkBox:ha,electronicSignature:fa,input:Ea,number:ma,organizationSelection:va,radio:Ba,richText:Ca,score:Fa,searchNumberRange:ya,select:ga,selectMultiple:Aa,selectRelation:Da,textarea:ba,tree:Sa,vueFormItem:wa,vuePage:$a,WPS:Ra,actionBar:Ia,advancedContainer:La,cardGroup:Ma,col:_a,dataView:Va,grid:xa,gridLayoutContainer:Pa,gridRow:qa,listView:Oa,page:ka,position:ja,positioningContainer:Ua,row:Na,subtableColumn:Wa,subtableRow:Ha,tab:Ta,tabPane:za,toolbox:Ka,batchSubmissionListButton:Ja,exportRecordListButton:Xa,listViewSelect:Ga,endTime:Qa,startTime:Za,unit:Ya,result:pa,currency:ei,endDate:ti,startDate:ui,pleaseSelectCompanyName:ni,pleaseSelectPhoneOrEmail:ai,pleaseSelectSignType:ii,pleaseSelectSigner:ri,pleaseSelectOnlyOne:li,pleaseSelectSignFile:oi,pleaseSelect:si,pleaseSelectOrg:ci,pleaseSelectDept:di,pleaseSelectEndDate:hi,pleaseSelectStartDate:fi,pleaseChooseAddress:Ei,modalConfirm:mi,tabChange:vi,rowSelected:Bi,listDataImport:Ci,rowDelete:Fi,rowClick:yi,cellRender:gi,onClickBtn:Ai,rename:Di,onSaveFile:bi,onOpenFile:Si,onFocus:wi,onBlur:$i,onInput:Ri,listDataAdd:Ii,listDataDelete:Li,listDataBack:Mi,listDataCreate:_i,listDataChange:Vi,search:xi,valueChange:Pi,finished:qi,click:Oi,pleaseEnterNameorEmail:ki,pleaseEnterDate:ji,pleaseEnterAutonumber:Ui,pleaseEnter:Ni,defaultTemplate:Wi,left:Hi,top:Ti,default:"\u666E\u901A",readonly:zi,required:Ki,textTip:Ji,hideCaption:Xi,titleRequired:Gi,organizationalForm:Qi,businessType:Zi,deleteConfirm:Yi,hide:pi,processStatus:er,approvedDocuments:tr,delete:ur,edit:nr,view:ar,loadCtrlErrorTip:ir,loadCtrlError:rr,fullLine:lr,min:or,max:sr,createWPS:cr,reset:dr,query:hr,detailed:fr,print:Er,draft:mr,save:vr,cancel:Br,uploadImg:Cr,signature:Fr,uploadFile:yr,linkContent:gr,referenceList:Ar,optionOne:Dr,optionTwo:br,optionThird:Sr},$r="Please enter a number",Rr="Please enter a string",Ir="Please enter an object",Lr="Please enter an array",Mr="Please enter a boolean",_r="{caption} Required",Vr="Please enter the title",xr="Please enter the bubble prompt",Pr="Please enter the row title",qr="Please enter the prompt text",Or="Please bind data items",kr="Please bind the form",jr="Please bind the list",Ur="Please bind the process",Nr="Please enter the displayed value",Wr="Please enter the stored value",Hr="The document number is not bound to the data item",Tr="Please select at least one display field",zr="Please enter a value greater than or equal to {min} and less than or equal to {max}",Kr="Please enter a value greater than or equal to {min}",Jr="Please enter a value less than or equal to {max}",Xr="The value range is set incorrectly",Gr="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Qr="The attachment size must be between 0MB and 1000MB",Zr="Please fill in the total score setting",Yr="The total score cannot be less than 1",pr="The default value must be between {min} and {max}",el="The number of attachment uploads exceeds the limit",tl="Please re-select the optional quantity",ul="The maximum length of the control must be greater than the minimum length",nl="The minimum length of the control must be less than the maximum length",al="Please select the correct option setting",il="Option ID cannot be repeated",rl="Please enter at least one option",ll="Please bind the data source",ol="Please bind the stored value",sl="Please bind the service",cl="At least one display value must be bound",dl="Please select a province",hl="Please select a city",fl="Please select a district",El="The minimum number of lines to fill in cannot be less than 0",ml="The number of rows cannot be less than {min} rows",vl="Please enter the column width",Bl="Please set the logical relationship of all rule conditions",Cl="Please complete all rules and conditions",Fl="please select control",yl="Please select the dashboard",gl="View name cannot be empty",Al="Please select recognition type",Dl="Please select at least one field to fill in",bl="Please select at least one",Sl="Please enter the button title",wl="Please bind the business model in the data settings",$l="Please bind storage values in data settings",Rl="Please bind the service in the data settings",Il="Please bind at least one display value in the data settings",Ll="Please select the root node in the data settings",Ml="Please enter the maximum height",_l="The input content cannot be empty",Vl="Watermark cannot be empty",xl="File name cannot be empty",Pl="Please upload at least one printing template!\uFF01",ql="Please select a specific business department",Ol="Please select a specified external organization",kl="Please enter a sub table alias",jl="Please select the associated table to set the business model",Ul="Please select the association table to set the binding service",Nl="Select associated sub table fields",Wl="Please select the associated main table field",Hl="Please select the sort field",Tl="\u6279\u91CF\u5220\u9664",zl="\u6279\u91CF\u6253\u5370",Kl="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Jl="\u6309\u94AE",Xl="\u521B\u5EFA\u5355\u636E",Gl="\u4EEA\u8868\u76D8",Ql="\u5206\u5272\u7EBF",Zl="\u5BFC\u51FA",Yl="\u8868\u5355\u64CD\u4F5C",pl="\u5BFC\u5165",eo="\u53D1\u7968\u8BC6\u522B",to="\u94FE\u63A5",uo="\u5217\u8868\u9009\u62E9",no="\u5217\u8868\u89C6\u56FE",ao="\u64CD\u4F5C\u6309\u94AE",io="\u5206\u9875",ro="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",lo="\u8BF4\u660E\u6587\u5B57",oo="\u6587\u5B57\u8BC6\u522B",so="\u6807\u9898\u7EC4\u4EF6",co="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",ho="\u6570\u7EC4",fo="\u81EA\u52A8\u7F16\u53F7",Eo="\u81EA\u5B9A\u4E49",mo="\u6570\u503C",vo="\u90E8\u95E8",Bo="\u4EBA\u5458",Co="\u9644\u4EF6",Fo="\u56FE\u7247",yo="\u5730\u5740",go="\u64CD\u4F5C",Ao="\u5E8F\u53F7",Do="\u4EBA\u5458",bo="\u957F\u6587\u672C",So="\u65E5\u671F\u533A\u95F4",wo="\u65E5\u671F",$o="\u77ED\u6587\u672C",Ro="\u6362\u884C\u5BB9\u5668Wrap",Io="\u8868\u683C",Lo="\u660E\u7EC6\u5B50\u8868",Mo="\u5730\u5740",_o="\u91D1\u989D",Vo="\u8BA1\u7B97\u516C\u5F0F",xo="\u591A\u9009",Po="\u7535\u5B50\u7B7E\u7AE0",qo="\u5355\u884C\u6587\u672C",Oo="\u6570\u5B57",ko="\u4E1A\u52A1\u7EC4\u7EC7",jo="\u5355\u9009",Uo="\u5BCC\u6587\u672C",No="\u8BC4\u5206",Wo="\u6570\u5B57\u533A\u95F4",Ho="\u4E0B\u62C9\u5355\u9009",To="\u4E0B\u62C9\u591A\u9009",zo="\u5173\u8054\u5355\u9009",Ko="\u591A\u884C\u6587\u672C",Jo="\u6811",Xo="Vue\u5BB9\u5668",Go="Vue\u9875\u9762",Qo="\u5728\u7EBF\u6587\u6863",Zo="\u6309\u94AE\u64CD\u4F5C\u680F",Yo="\u9AD8\u7EA7\u5BB9\u5668",po="\u5206\u7EC4",es="\u6805\u683C\u5217",ts="\u6570\u636E\u5BB9\u5668",us="\u753B\u5E03",ns="\u6362\u884C\u5BB9\u5668",as="\u6805\u683C\u7B49\u5206\u884C",is="\u5217\u8868\u5BB9\u5668",rs="\u81EA\u7531\u9875\u9762",ls="\u5B9A\u4F4D\u5B50\u5BB9\u5668",os="\u5B9A\u4F4D\u5BB9\u5668",ss="\u6805\u683C\u5E03\u5C40",cs="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ds="\u660E\u7EC6\u5B50\u8868\u884C",hs="\u6807\u7B7E\u9875",fs="\u6807\u7B7E\u5355\u5143",Es="\u5DE5\u5177\u680F",ms="\u6279\u91CF\u63D0\u4EA4",vs="\u5BFC\u51FA\u8BB0\u5F55",Bs="\u5217\u8868\u89C6\u56FE",Cs="\u5F15\u7528\u5217\u8868",Fs="\u9009\u9879\u4E00",ys="\u9009\u9879\u4E8C",gs="\u9009\u9879\u4E09",As={isNotNumber:$r,isNotString:Rr,isNotObject:Ir,isNotArray:Lr,isNotBoolean:Mr,runtimeRequired:_r,pleaseEnterCaption:Vr,pleaseEnterCaptionTip:xr,pleaseEnterRowCaption:Pr,pleaseEnterPlaceholder:qr,pleaseEnterFieldCode:Or,pleaseEnterForm:kr,pleaseEnterList:jr,pleaseEnterProcess:Ur,pleaseEnterLabel:Nr,pleaseEnterValue:Wr,bizKeyNotBindFiled:Hr,pleaseSelectOneField:Tr,pleaseEnterNumberRange:zr,pleaseEnterAValueGreaterThanMin:Kr,pleaseEnterAValueLessThanMax:Jr,numberRangeSetError:Xr,stringRangeError:Gr,attachmentMaxSize:Qr,pleaseEnterTotalScoreSetting:Zr,theTotalScoreMustNotBeLessThan1:Yr,scoreDefaultValueRange:pr,attachmentLimitError:el,PleaseReselectTheOptionalQuantity:tl,TheMaximumLengthIsGreaterThanTheMinimumLength:ul,TheMinimumLengthIsGreaterThanTheMaximumLength:nl,PleaseSelectTheCorrectOptionSettings:al,optionIdIsRepeat:il,optionIsRequired:rl,pleaseEnterDataCode:ll,pleaseEnterValueFieldCode:ol,pleaseEnterSvcCode:sl,pleaseBindAtLeastOneDisplayValue:cl,pleaseSelectProvince:dl,pleaseSelectCity:hl,pleaseSelectDistrict:fl,limitRowsCannotBeLessThan0:El,TheNumberOfRowsCannotBeLessThanMinRows:ml,pleaseEnterColumnWidth:vl,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Bl,pleaseCompleteAllRulesAndConditions:Cl,pleaseSelectControl:Fl,pleaseSelectDashboard:yl,theViewNameCannotBeEmpty:gl,pleaseSelectOcrType:Al,pleaseSelectAtLeastOneFieldToFillIn:Dl,pleaseChooseAtLeastOne:bl,pleaseEnterButtonContent:Sl,pleaseEnterDataCodeInDataSetting:wl,pleaseEnterValueFieldCodeInDataSetting:$l,pleaseEnterSvcCodeInDataSetting:Rl,pleaseBindAtLeastOneDisplayValueInDataSetting:Il,rootNodeIsRequiredInDataSetting:Ll,pleaseEnterMaxHeight:Ml,pleaseEnter:_l,pleaseEnterWatermark:Vl,pleaseEnterFileName:xl,pleaseUploadAtLeastOnePrintTemplate:Pl,pleaseAssignBusiness:ql,pleaseAssignExternal:Ol,pleaseEnterAliasCode:kl,pleaseSelectDataCode:jl,pleaseSelectSvcCode:Ul,pleaseSelectJoinFieldCode:Nl,pleaseSelectMainFieldCode:Wl,pleaseSelectSortFieldCode:Hl,batchDeleteButton:Tl,batchPrintListButton:zl,batchPrintRecordList:Kl,button:Jl,createFormListButton:Xl,dashboard:Gl,divider:Ql,exportListButton:Zl,formSelectButton:Yl,importRecordListButton:pl,invoiceCheckButton:eo,link:to,listSelectButton:uo,ListViewSelect:no,operationButton:ao,pagination:io,submissionRecordListButton:ro,text:lo,textOcrButton:oo,title:so,approvalStatusColumn:co,array:ho,autoNumber:fo,custom:Eo,decimal:mo,department:vo,employee:Bo,file:Co,image:Fo,location:yo,operation:go,order:Ao,people:Do,long:bo,timescope:So,timestamp:wo,varchar:$o,gridLayoutWrap:Ro,gridTable:Io,subTable:Lo,address:Mo,amount:_o,calc:Vo,checkBox:xo,electronicSignature:Po,input:qo,number:Oo,organizationSelection:ko,radio:jo,richText:Uo,score:No,searchNumberRange:Wo,select:Ho,selectMultiple:To,selectRelation:zo,textarea:Ko,tree:Jo,vueFormItem:Xo,vuePage:Go,WPS:Qo,actionBar:Zo,advancedContainer:Yo,cardGroup:po,col:es,dataView:ts,grid:us,gridLayoutContainer:ns,gridRow:as,listView:is,page:rs,position:ls,positioningContainer:os,row:ss,subtableColumn:cs,subtableRow:ds,tab:hs,tabPane:fs,toolbox:Es,batchSubmissionListButton:ms,exportRecordListButton:vs,listViewSelect:Bs,referenceList:Cs,optionOne:Fs,optionTwo:ys,optionThird:gs},Ds="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bs="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ss="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ws="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$s="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rs="{caption}\u5FC5\u9808",Is="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ls="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ms="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_s="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vs="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xs="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ps="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qs="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Os="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ks="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",js="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Us="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ns="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ws="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Hs="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ts="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",zs="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ks="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Js="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xs="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Gs="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Qs="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Zs="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ys="\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",ps="\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",ec="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",tc="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",uc="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",nc="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ac="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ic="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",rc="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",lc="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",oc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",cc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",dc="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",hc="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",fc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ec="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",mc="please select control",vc="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bc="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Cc="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fc="\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",yc="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gc="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ac="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Dc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",bc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Sc="\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",wc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",$c="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Rc="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ic="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Lc="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Mc="\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",_c="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Vc="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",xc="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Pc="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",qc="\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",Oc="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",kc="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",jc="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Uc="\u6279\u91CF\u5220\u9664",Nc="\u6279\u91CF\u6253\u5370",Wc="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Hc="\u6309\u94AE",Tc="\u521B\u5EFA\u5355\u636E",zc="\u4EEA\u8868\u76D8",Kc="\u5206\u5272\u7EBF",Jc="\u5BFC\u51FA",Xc="\u8868\u5355\u64CD\u4F5C",Gc="\u5BFC\u5165",Qc="\u53D1\u7968\u8BC6\u522B",Zc="\u94FE\u63A5",Yc="\u5217\u8868\u9009\u62E9",pc="\u5217\u8868\u89C6\u56FE",e0="\u64CD\u4F5C\u6309\u94AE",t0="\u5206\u9875",u0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",n0="\u8BF4\u660E\u6587\u5B57",a0="\u6587\u5B57\u8BC6\u522B",i0="\u6807\u9898\u7EC4\u4EF6",r0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",l0="\u6570\u7EC4",o0="\u81EA\u52A8\u7F16\u53F7",s0="\u81EA\u5B9A\u4E49",c0="\u6570\u503C",d0="\u90E8\u95E8",h0="\u4EBA\u5458",f0="\u9644\u4EF6",E0="\u56FE\u7247",m0="\u5730\u5740",v0="\u64CD\u4F5C",B0="\u5E8F\u53F7",C0="\u4EBA\u5458",F0="\u957F\u6587\u672C",y0="\u65E5\u671F\u533A\u95F4",g0="\u65E5\u671F",A0="\u77ED\u6587\u672C",D0="\u6362\u884C\u5BB9\u5668Wrap",b0="\u8868\u683C",S0="\u660E\u7EC6\u5B50\u8868",w0="\u5730\u5740",$0="\u91D1\u989D",R0="\u8BA1\u7B97\u516C\u5F0F",I0="\u591A\u9009",L0="\u7535\u5B50\u7B7E\u7AE0",M0="\u5355\u884C\u6587\u672C",_0="\u6570\u5B57",V0="\u4E1A\u52A1\u7EC4\u7EC7",x0="\u5355\u9009",P0="\u5BCC\u6587\u672C",q0="\u8BC4\u5206",O0="\u6570\u5B57\u533A\u95F4",k0="\u4E0B\u62C9\u5355\u9009",j0="\u4E0B\u62C9\u591A\u9009",U0="\u5173\u8054\u5355\u9009",N0="\u591A\u884C\u6587\u672C",W0="\u6811",H0="Vue\u5BB9\u5668",T0="Vue\u9875\u9762",z0="\u5728\u7EBF\u6587\u6863",K0="\u6309\u94AE\u64CD\u4F5C\u680F",J0="\u9AD8\u7EA7\u5BB9\u5668",X0="\u5206\u7EC4",G0="\u6805\u683C\u5217",Q0="\u6570\u636E\u5BB9\u5668",Z0="\u753B\u5E03",Y0="\u6362\u884C\u5BB9\u5668",p0="\u6805\u683C\u7B49\u5206\u884C",e5="\u5217\u8868\u5BB9\u5668",t5="\u81EA\u7531\u9875\u9762",u5="\u5B9A\u4F4D\u5B50\u5BB9\u5668",n5="\u5B9A\u4F4D\u5BB9\u5668",a5="\u6805\u683C\u5E03\u5C40",i5="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",r5="\u660E\u7EC6\u5B50\u8868\u884C",l5="\u6807\u7B7E\u9875",o5="\u6807\u7B7E\u5355\u5143",s5="\u5DE5\u5177\u680F",c5="\u6279\u91CF\u63D0\u4EA4",d5="\u5BFC\u51FA\u8BB0\u5F55",h5="\u5217\u8868\u89C6\u56FE",f5="\u5F15\u7528\u5217\u8868",E5="\u9009\u9879\u4E00",m5="\u9009\u9879\u4E8C",v5="\u9009\u9879\u4E09",B5={isNotNumber:Ds,isNotString:bs,isNotObject:Ss,isNotArray:ws,isNotBoolean:$s,runtimeRequired:Rs,pleaseEnterCaption:Is,pleaseEnterCaptionTip:Ls,pleaseEnterRowCaption:Ms,pleaseEnterPlaceholder:_s,pleaseEnterFieldCode:Vs,pleaseEnterForm:xs,pleaseEnterList:Ps,pleaseEnterProcess:qs,pleaseEnterLabel:Os,pleaseEnterValue:ks,bizKeyNotBindFiled:js,pleaseSelectOneField:Us,pleaseEnterNumberRange:Ns,pleaseEnterAValueGreaterThanMin:Ws,pleaseEnterAValueLessThanMax:Hs,numberRangeSetError:Ts,stringRangeError:zs,attachmentMaxSize:Ks,pleaseEnterTotalScoreSetting:Js,theTotalScoreMustNotBeLessThan1:Xs,scoreDefaultValueRange:Gs,attachmentLimitError:Qs,PleaseReselectTheOptionalQuantity:Zs,TheMaximumLengthIsGreaterThanTheMinimumLength:Ys,TheMinimumLengthIsGreaterThanTheMaximumLength:ps,PleaseSelectTheCorrectOptionSettings:ec,optionIdIsRepeat:tc,optionIsRequired:uc,pleaseEnterDataCode:nc,pleaseEnterValueFieldCode:ac,pleaseEnterSvcCode:ic,pleaseBindAtLeastOneDisplayValue:rc,pleaseSelectProvince:lc,pleaseSelectCity:oc,pleaseSelectDistrict:sc,limitRowsCannotBeLessThan0:cc,TheNumberOfRowsCannotBeLessThanMinRows:dc,pleaseEnterColumnWidth:hc,pleaseSetTheLogicalRelationshipOfAllRuleConditions:fc,pleaseCompleteAllRulesAndConditions:Ec,pleaseSelectControl:mc,pleaseSelectDashboard:vc,theViewNameCannotBeEmpty:Bc,pleaseSelectOcrType:Cc,pleaseSelectAtLeastOneFieldToFillIn:Fc,pleaseChooseAtLeastOne:yc,pleaseEnterButtonContent:gc,pleaseEnterDataCodeInDataSetting:Ac,pleaseEnterValueFieldCodeInDataSetting:Dc,pleaseEnterSvcCodeInDataSetting:bc,pleaseBindAtLeastOneDisplayValueInDataSetting:Sc,rootNodeIsRequiredInDataSetting:wc,pleaseEnterMaxHeight:$c,pleaseEnter:Rc,pleaseEnterWatermark:Ic,pleaseEnterFileName:Lc,pleaseUploadAtLeastOnePrintTemplate:Mc,pleaseAssignBusiness:_c,pleaseAssignExternal:Vc,pleaseEnterAliasCode:xc,pleaseSelectDataCode:Pc,pleaseSelectSvcCode:qc,pleaseSelectJoinFieldCode:Oc,pleaseSelectMainFieldCode:kc,pleaseSelectSortFieldCode:jc,batchDeleteButton:Uc,batchPrintListButton:Nc,batchPrintRecordList:Wc,button:Hc,createFormListButton:Tc,dashboard:zc,divider:Kc,exportListButton:Jc,formSelectButton:Xc,importRecordListButton:Gc,invoiceCheckButton:Qc,link:Zc,listSelectButton:Yc,ListViewSelect:pc,operationButton:e0,pagination:t0,submissionRecordListButton:u0,text:n0,textOcrButton:a0,title:i0,approvalStatusColumn:r0,array:l0,autoNumber:o0,custom:s0,decimal:c0,department:d0,employee:h0,file:f0,image:E0,location:m0,operation:v0,order:B0,people:C0,long:F0,timescope:y0,timestamp:g0,varchar:A0,gridLayoutWrap:D0,gridTable:b0,subTable:S0,address:w0,amount:$0,calc:R0,checkBox:I0,electronicSignature:L0,input:M0,number:_0,organizationSelection:V0,radio:x0,richText:P0,score:q0,searchNumberRange:O0,select:k0,selectMultiple:j0,selectRelation:U0,textarea:N0,tree:W0,vueFormItem:H0,vuePage:T0,WPS:z0,actionBar:K0,advancedContainer:J0,cardGroup:X0,col:G0,dataView:Q0,grid:Z0,gridLayoutContainer:Y0,gridRow:p0,listView:e5,page:t5,position:u5,positioningContainer:n5,row:a5,subtableColumn:i5,subtableRow:r5,tab:l5,tabPane:o5,toolbox:s5,batchSubmissionListButton:c5,exportRecordListButton:d5,listViewSelect:h5,referenceList:f5,optionOne:E5,optionTwo:m5,optionThird:v5},Se={zhCN:wr,enUS:As,jaJP:B5},ct;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(ct||(ct={}));var dt;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(dt||(dt={}));var we,C5=(we=window.localStorage.getItem("locale"))!==null&&we!==void 0?we:"zh-CN",T;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(T||(T={}));var ht;(function(t){t[t.FORM=0]="FORM",t[t.LIST=1]="LIST",t[t.REPORT=2]="REPORT",t[t.DASHBOARD=3]="DASHBOARD",t[t.VUE=4]="VUE",t[t.FREE_PAGE=5]="FREE_PAGE"})(ht||(ht={}));var ft;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.OPERATION_BUTTON="operation-button",t.EMPLOYEE_COLUMN="employee-column",t.Approval_Status_Column="approval-status-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.GRID_LAYOUT_CONTAINER="grid-layout-container",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.ACTION_BAR="action-bar",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2",t.GRID_LAYOUT_WRAP="grid-layout-wrap",t.VUE_PAGE="vue-page",t.REFERENCE_LIST="reference-list"})(ft||(ft={}));var Et;(function(t){t.SAVE="save",t.DRAFT="draft",t.UNSUBMIT="unsubmit",t.AUDIT="audit",t.UNAUDIT="unaudit",t.CANCEL="cancel",t.FORM_SUBMIT="form_submit"})(Et||(Et={}));var Z;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.LIST="list",t.JSON="json",t.ANY="ANY"})(Z||(Z={}));var mt;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATEHOUR="datehour",t.DATEMIN="datemin",t.DATETIME="datetime"})(mt||(mt={}));var vt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",F5=vt+"0123456789";function j(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",u=0;u<t;u++){var n=u===0?vt:F5,a=Math.random()*n.length;e+=n[parseInt(String(a),10)]}return e}function $e(t,e){(e==null||e>t.length)&&(e=t.length);for(var u=0,n=new Array(e);u<e;u++)n[u]=t[u];return n}function y5(t){if(Array.isArray(t))return $e(t)}function g5(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Bt(t,e,u){return e=Y(e),S5(t,Ie()?Reflect.construct(e,u||[],Y(t).constructor):e.apply(t,u))}function Ct(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function se(t,e,u){return Ie()?se=Reflect.construct:se=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&p(c,r.prototype),c},se.apply(null,arguments)}function Y(t){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(u){return u.__proto__||Object.getPrototypeOf(u)},Y(t)}function Ft(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&p(t,e)}function A5(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function D5(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function b5(){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 S5(t,e){return e&&(w5(e)==="object"||typeof e=="function")?e:g5(t)}function p(t,e){return p=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},p(t,e)}function yt(t){return y5(t)||D5(t)||$5(t)||b5()}function w5(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function $5(t,e){if(!!t){if(typeof t=="string")return $e(t,e);var u=Object.prototype.toString.call(t).slice(8,-1);if(u==="Object"&&t.constructor&&(u=t.constructor.name),u==="Map"||u==="Set")return Array.from(u);if(u==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(u))return $e(t,e)}}function Re(t){var e=typeof Map=="function"?new Map:void 0;return Re=function(n){if(n===null||!A5(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,a)}function a(){return se(n,arguments,Y(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),p(a,n)},Re(t)}function Ie(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(Ie=function(){return!!t})()}var Le=console;function Me(){for(var t=arguments.length,e=new Array(t),u=0;u<t;u++)e[u]=arguments[u];var n,a=e.slice(1);(n=Le).warn.apply(n,["\u{1F9D0} Driven Warning:"+e[0]].concat(yt(a)))}function gt(){for(var t=arguments.length,e=new Array(t),u=0;u<t;u++)e[u]=arguments[u];var n,a=e.slice(1);(n=Le).log.apply(n,["\u{1F680} Driven Log:"+e[0]].concat(yt(a)))}function R5(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var _e=function(t){Ft(e,t);function e(u){Ct(this,e);var n;return n=Bt(this,e,[u]),n.name="\u{1F4A5} Driven Error",n.message=u?R5(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",n}return e}(Re(Error)),I5=function(t){Ft(e,t);function e(u){Ct(this,e);var n;return n=Bt(this,e,[u]),n.name="\u{1F6A8} Driven Reference Error",n}return e}(_e);function Ve(t){throw new _e(t)}function At(t){throw new I5(t)}function L5(t){Le.error(new _e(t))}const h=(t,e,u)=>{if(!t)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const n=t.split(".");let a;const i=(window.baitedaWorkers||{}).languageMessages||{};n.forEach((l,d)=>{d===0?a=i[l]:a&&(a=a[l])});let r="";return a&&(r=a),e&&Object.keys(e).forEach(l=>{const d=e[l];r=r.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),d)}),r||(u?r=u:r=t),r};function M5(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Dt(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function _5(t,e,u){return e&&Dt(t.prototype,e),u&&Dt(t,u),t}function V5(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var bt=function(){function t(){M5(this,t)}return _5(t,null,[{key:"getMessage",value:function(u){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a;return h("CMD."+u,n,Se==null||(a=Se[C5.split("-").join("")])===null||a===void 0?void 0:a[u])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(u,n){}}]),t}();V5(bt,"$i18n",bt.resetI18n());function x5(t,e,u){var n=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return n.reduce(function(i,r,l,d){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){Me("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return l===d.length-1&&!Object.is(c[r],u)&&(c[r]=u,a=!0),c[r]}},t),a}var P5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},q5={exports:{}};(function(t){(function(e){var u=function(s,E,C){if(!c(E)||B(E)||A(E)||b(E)||d(E))return E;var S,w=0,V=0;if(m(E))for(S=[],V=E.length;w<V;w++)S.push(u(s,E[w],C));else{S={};for(var g in E)Object.prototype.hasOwnProperty.call(E,g)&&(S[s(g,C)]=u(s,E[g],C))}return S},n=function(s,E){E=E||{};var C=E.separator||"_",S=E.split||/(?=[A-Z])/;return s.split(S).join(C)},a=function(s){return F(s)?s:(s=s.replace(/[\-_\s]+(.)?/g,function(E,C){return C?C.toUpperCase():""}),s.substr(0,1).toLowerCase()+s.substr(1))},i=function(s){var E=a(s);return E.substr(0,1).toUpperCase()+E.substr(1)},r=function(s,E){return n(s,E).toLowerCase()},l=Object.prototype.toString,d=function(s){return typeof s=="function"},c=function(s){return s===Object(s)},m=function(s){return l.call(s)=="[object Array]"},B=function(s){return l.call(s)=="[object Date]"},A=function(s){return l.call(s)=="[object RegExp]"},b=function(s){return l.call(s)=="[object Boolean]"},F=function(s){return s=s-0,s===s},f=function(s,E){var C=E&&"process"in E?E.process:E;return typeof C!="function"?s:function(S,w){return C(S,s,w)}},y={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(s,E){return u(f(a,E),s)},decamelizeKeys:function(s,E){return u(f(r,E),s,E)},pascalizeKeys:function(s,E){return u(f(i,E),s)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=y:e.humps=y})(P5)})(q5);var St={};Object.defineProperty(St,"__esModule",{value:!0});function xe(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:xe(e));{const e={};for(const u in t){const n=t[u];e[u]=typeof n!="object"||n===null?n:xe(n)}return e}}var O5=St.default=xe;function k5(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function q(t){if(t!==void 0)return(typeof t=="undefined"?"undefined":k5(t))==="object"?O5(t):t}function j5(t){return Object.prototype.toString.call(t)==="[object Object]"}function U5(t){return Array.isArray(t)}function N5(t){return t.reduce(function(e,u){return e.includes(u)||e.push(u),e},[])}function Pe(t,e){(e==null||e>t.length)&&(e=t.length);for(var u=0,n=new Array(e);u<e;u++)n[u]=t[u];return n}function W5(t){if(Array.isArray(t))return Pe(t)}function wt(t,e,u,n,a,i,r){try{var l=t[i](r),d=l.value}catch(c){u(c);return}l.done?e(d):Promise.resolve(d).then(n,a)}function H5(t){return function(){var e=this,u=arguments;return new Promise(function(n,a){var i=t.apply(e,u);function r(d){wt(i,n,a,r,l,"next",d)}function l(d){wt(i,n,a,r,l,"throw",d)}r(void 0)})}}function T5(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function $t(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function z5(t,e,u){return e&&$t(t.prototype,e),u&&$t(t,u),t}function Rt(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}function K5(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function J5(){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 qe(t){return W5(t)||K5(t)||X5(t)||J5()}function X5(t,e){if(!!t){if(typeof t=="string")return Pe(t,e);var u=Object.prototype.toString.call(t).slice(8,-1);if(u==="Object"&&t.constructor&&(u=t.constructor.name),u==="Map"||u==="Set")return Array.from(u);if(u==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(u))return Pe(t,e)}}function G5(t,e){var u,n,a,i,r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]};return i={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function l(c){return function(m){return d([c,m])}}function d(c){if(u)throw new TypeError("Generator is already executing.");for(;r;)try{if(u=1,n&&(a=c[0]&2?n.return:c[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,c[1])).done)return a;switch(n=0,a&&(c=[c[0]&2,a.value]),c[0]){case 0:case 1:a=c;break;case 4:return r.label++,{value:c[1],done:!1};case 5:r.label++,n=c[1],c=[0];continue;case 7:c=r.ops.pop(),r.trys.pop();continue;default:if(a=r.trys,!(a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){r=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){r.label=c[1];break}if(c[0]===6&&r.label<a[1]){r.label=a[1],a=c;break}if(a&&r.label<a[2]){r.label=a[2],r.ops.push(c);break}a[2]&&r.ops.pop(),r.trys.pop();continue}c=e.call(t,r)}catch(m){c=[6,m],n=0}finally{u=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var Q5=function(){function t(){T5(this,t),Rt(this,"_events",new Map),Rt(this,"debug",!1)}return z5(t,[{key:"emit",value:function(u){for(var n=arguments.length,a=new Array(n>1?n-1:0),i=1;i<n;i++)a[i-1]=arguments[i];var r=this;return H5(function(){var l,d,c,m,B,A,b,F,f,y,s,E;return G5(this,function(C){switch(C.label){case 0:if(l=r._events.get(u),d=[],!l)return[3,10];c=l.slice(),m=!0,B=!1,A=void 0,C.label=1;case 1:C.trys.push([1,8,9,10]),b=c[Symbol.iterator](),C.label=2;case 2:if(m=(F=b.next()).done)return[3,7];if(f=F.value,!l.includes(f))return[3,6];C.label=3;case 3:return C.trys.push([3,5,,6]),r.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(qe(a))),[4,f.apply(null,qe(a))];case 4:return y=C.sent(),r.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(qe(a),[y])),d.push(y),y===!1?[3,7]:[3,6];case 5:return s=C.sent(),L5(String(s)+":"+String(s.stack)),[3,6];case 6:return m=!0,[3,2];case 7:return[3,10];case 8:return E=C.sent(),B=!0,A=E,[3,10];case 9:try{!m&&b.return!=null&&b.return()}finally{if(B)throw A}return[7];case 10:return[2,d]}})})()}},{key:"on",value:function(u,n){if(this._events.has(u)){var a;(a=this._events.get(u))===null||a===void 0||a.push(n)}else this._events.set(u,[n])}},{key:"off",value:function(u,n){if(this._events.has(u)){var a=this._events.get(u),i=a==null?void 0:a.indexOf(n);a==null||a.splice(i,1)}}},{key:"delete",value:function(u){this._events.has(u)&&this._events.delete(u)}},{key:"clear",value:function(){this._events=new Map}}]),t}();function Z5(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function It(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function Y5(t,e,u){return e&&It(t.prototype,e),u&&It(t,u),t}function p5(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var ed=[{key:"on_click",name:h("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:h("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:h("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:h("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:h("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:h("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:h("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:h("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:h("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:h("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:h("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:h("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:h("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:h("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:h("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:h("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:h("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:h("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:h("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:h("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:h("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:h("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:h("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"},{key:"on_option_selected",name:h("CMD.optionSelected",null,"DOM\u70B9\u51FBoption\u4E8B\u4EF6"),code:"option_selected"}],td=function(){function t(){Z5(this,t)}return Y5(t,null,[{key:"getEventsFromKeys",value:function(u){var n=typeof u=="string"?[u]:u;return t.events.filter(function(a){return n.includes(a.key)})}},{key:"getEventsFromControl",value:function(u){var n=[],a=u.eventKeys;n=n.concat(t.events.filter(function(r){return a.includes(r.key)}));var i=u.customEvents.map(function(r){var l=r.key;return r.namespace!==void 0&&r.namespace!==null&&r.namespace!==""&&(l=r.namespace+":"+r.key),{key:l,code:r.key,name:r.name}});return n=n.concat(i),n}}]),t}();p5(td,"events",ed);function ce(t,e){var u;(u=Object.getOwnPropertyDescriptors(t)[e])!=null&&u.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function Oe(t,e,u){u!=="Runtime"&&(t.parent=e,ce(t,"parent"))}function Lt(t,e,u){t.forEach(n=>{Oe(n,e,u)})}const Mt=Symbol("targetKey");function _t(t){var e;return(e=t[Mt])!=null?e:t}function Vt(t,e,u){return Lt(t,e,u),new Proxy(t,{get(n,a,...i){return a===Mt?n:Reflect.get(n,a,...i)},set(n,a,i,...r){if(U5(t)&&a==="length"&&i===t.length)return!0;const l=Reflect.set(n,a,i,...r);return j5(i)&&Oe(i,e,u),l}})}function U(t,e,u,n,a){const i=n!=null?n:t;let r=Vt(_t(u!=null?u:[]),i,a);Object.defineProperty(t,e,{get(){return r},set(l){r=Vt(_t(l),i,a)},enumerable:!0})}const xt=[],ke=class{constructor(t){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=t,this._initControls(t)}static staticGetRules(t,e){const u=ke.staticControlsRuntimeRules.get(t);let n=[];if(u){const a=new u(e);n=Array.from(a)}return n}registerControlConfig(t,e){return this.controlConfigMap.set(t,e),this}getControlConfig(t){return this.controlConfigMap.get(t)}static register(t,e){const{Designer:u,Runtime:n,Property:a}=t;(!u||!n||!u.__is_control__||!n.__is_control__)&&Ve(`${t} is can't register as a Control`);const i=this.staticControls.findIndex(r=>r.Designer.controlType===u.controlType);return i>-1&&(Me(`The ${u.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(t),a.mode=e,this}getControls(){return this._controls}register(t){t.__is_control__||Ve(`${t.name} is not a Control`);const e=this._controls.findIndex(u=>u.controlType===t.controlType);return e>-1&&(Me(`The ${t.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(e,1)),this.registeredControlTypes.add(t.controlType),this._controls.push(t),this}isLayoutControl(t){return t.controlType===T.LAYOUT}isFormControl(t){return t.controlType===T.FORM}isListControl(t){return t.controlType===T.LIST}isColumnControl(t){return t.controlType===T.COLUMN}createControl(t,e){if(Array.isArray(t))return t.map(n=>this.createControl(n,e));if(t.children&&(t.children=t.children.map(n=>this.createControl(n,e))),this.isListControl(t)){const n=t.props;n.headers&&(n.headers=n.headers.map(a=>this.createControl(a,e)))}const u=this.getControlFormType(t.type);if(u){let n=t;if(typeof e=="function"){const i=e(n);i&&(n=i)}let a;return u.mode==="Runtime"?(a=n,a.fieldType=u.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new u(n),a}else Ve(`The constructor of ${t.type} could not be found, please confirm that the constructor has been registered`)}resetInstanceParent(t,e){delete t.parent,Object.defineProperty(t,"parent",{configurable:!0,get(){return e}}),ce(t,"parent")}_setParentPrototypeToSchema(t,e){e._type==="Runtime"&&(Object.defineProperty(t,"parent",{configurable:!0,get(){const u=t.id,n=e._controlParentIdMap,a=e.instanceMap;if(!n||!a)return;const i=n[u],r=a[u];if(!i&&!r)return;const l=r.findIndex(m=>m==t),d=a[i]||[];let c;return d.length!==r.length?c=d[0]:c=d[l],c}}),ce(t,"parent"))}createControlInstance(t,e){const u=this.getControlFormType(t);if(u)return new u(e)}getControlFormType(t){return this._controls.find(e=>e.controlType===t)}_initControls(t){this.constructor.staticControls.forEach(e=>{this.register(e[t]),ke.staticControlsRuntimeRules.set(e.Runtime.controlType,e.Property.RuntimeRules),e.Property.mode=t})}};let ee=ke;ee.staticControlsRuntimeRules=new Map,ee.staticControls=xt,ee.staticRegisteredTypes=new Set(xt.map(t=>t.Designer.controlType)),ee.staticRegisteredConfigs=new Map;class M{constructor(e){var u,n,a;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.aliasCode=e==null?void 0:e.aliasCode}}class je{constructor(e){var u,n;this.minWidth=(u=e==null?void 0:e.minWidth)!=null?u:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(n=e==null?void 0:e.flex)!=null?n:1}}class Ue{constructor(e){var u,n,a,i;this.rowHeightType=(u=e==null?void 0:e.rowHeightType)!=null?u:"fixed",this.minRows=(n=e==null?void 0:e.minRows)!=null?n:4,this.maxRows=(a=e==null?void 0:e.maxRows)!=null?a:20,this.fiexdRow=(i=e==null?void 0:e.fiexdRow)!=null?i:4}}class ud{constructor(e){this.pc=new Ue(e==null?void 0:e.pc),this.mobile=new Ue(e==null?void 0:e.mobile)}}class de extends je{constructor(e){var u,n;super(e),this.width=(u=e==null?void 0:e.width)!=null?u:240,this.widthType=(n=e==null?void 0:e.widthType)!=null?n:"auto"}}class nd{constructor(e){this.pc=new de(e==null?void 0:e.pc),this.mobile=e!=null&&e.mobile?new de(e==null?void 0:e.mobile):new de({width:130,minWidth:180})}}class ad{constructor(e){var u,n;this.type=(u=e==null?void 0:e.type)!=null?u:"firstThree",this.customOptions=(n=e==null?void 0:e.customOptions)!=null?n:[]}}class he{constructor(e){var u,n,a;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.formKey=(n=e==null?void 0:e.formKey)!=null?n:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class id extends he{constructor(e){var u;super(e),this.primaryControlId=(u=e==null?void 0:e.primaryControlId)!=null?u:""}}class Pt{constructor(e){var u,n;this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:""}}class rd{constructor(e){var u,n,a,i;this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.formKey=(n=e==null?void 0:e.formKey)!=null?n:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Pt(r)))!=null?i:[]}}class qt{constructor(e){var u,n,a;this.fieldName=(u=e==null?void 0:e.fieldName)!=null?u:"",this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:Z.VARCHAR}}class Ot extends he{constructor(e){var u,n,a,i;super(e),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.svcCode=(n=e==null?void 0:e.svcCode)!=null?n:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class ld{constructor(e){var u,n,a,i;this.type="sublist-page",this.formBind=new he(e==null?void 0:e.formBind),this.displayFields=(n=(u=e==null?void 0:e.displayFields)==null?void 0:u.map(r=>new qt(r)))!=null?n:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Ot(r)))!=null?i:[]}}class kt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value,this.dataCode=e==null?void 0:e.dataCode}}class fe{constructor(e){var u,n,a;this.type=(u=e==null?void 0:e.type)!=null?u:"custom",this.value=(n=e==null?void 0:e.value)!=null?n:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class z{constructor(e){var u,n,a,i;this.type="conditions",this.id=(u=e==null?void 0:e.id)!=null?u:j(),this.ruleId=(n=e==null?void 0:e.ruleId)!=null?n:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var l,d;if(r.children!==void 0){const c=new z(r);(l=this.children)==null||l.push(c)}else{const c=new te(r);(d=this.children)==null||d.push(c)}}))}}class te{constructor(e){var u,n,a,i,r;this.type="condition",this.id=(u=e==null?void 0:e.id)!=null?u:j(),this.ruleId=(n=e==null?void 0:e.ruleId)!=null?n:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new kt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new fe(e==null?void 0:e.rightVariableBo)}}class od{constructor(e){var u,n;this.aliasCode=(u=e==null?void 0:e.aliasCode)!=null?u:"",this.datasourceBind=new Ee(e==null?void 0:e.datasourceBind),this.relationFields=(n=e==null?void 0:e.relationFields)!=null?n:[]}}class jt{constructor(e){var u,n,a,i;this.controlId=(u=e==null?void 0:e.controlId)!=null?u:"",this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class Ne{constructor(e){var u,n;this.type=(u=e==null?void 0:e.type)!=null?u:"FIELD",this.value=(n=e==null?void 0:e.value)!=null?n:"",this.fieldType=e==null?void 0:e.fieldType}}class sd{constructor(e){var u,n;this.title=(u=e==null?void 0:e.title)!=null?u:"",this.displayBoList=(n=e==null?void 0:e.displayBoList)!=null?n:[]}}class We{constructor(e){var u,n;this.columnName=(u=e.columnName)!=null?u:"",this.desc=(n=e.desc)!=null?n:!1}}class Ut{constructor(e){var u,n,a;this.code=(u=e.code)!=null?u:"",this.value=(n=e.value)!=null?n:"",this.field_type=(a=e.field_type)!=null?a:Z.ANY}}class cd{constructor(e){var u,n,a,i,r,l,d;this.id=(u=e.id)!=null?u:"",this.limit=(n=e.limit)!=null?n:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(c=>new We(c)))!=null?r:[],this.dataSet=(d=(l=e.dataSet)==null?void 0:l.map(c=>new Ut(c)))!=null?d:[]}}function He(t){var e,u,n,a,i,r;this.filters=(u=(e=t==null?void 0:t.filters)==null?void 0:e.map(l=>l.children!==void 0?new z(l):new te(l)))!=null?u:[],this.viewFilters=(a=(n=t==null?void 0:t.viewFilters)==null?void 0:n.map(l=>l.children!==void 0?new z(l):new te(l)))!=null?a:[],this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(l=>new We(l)))!=null?r:[]}class Ee{constructor(e){var u,n,a,i,r,l,d,c;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(i=e==null?void 0:e.isOpenViewFilters)!=null?i:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(m=>{var B;(B=this.displayBoList)==null||B.push(new Ne(m))})),this.keywordMapping=(r=e==null?void 0:e.keywordMapping)!=null?r:"",this.showOrder=(l=e==null?void 0:e.showOrder)!=null?l:!0,this.svcCode=(d=e==null?void 0:e.svcCode)!=null?d:"",this.assignDepartment=new fe(e==null?void 0:e.assignDepartment),this.openAssignDepartment=(c=e==null?void 0:e.openAssignDepartment)!=null?c:!1,He.call(this,e)}}class dd{constructor(e){var u,n;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.displayBoList=(n=e==null?void 0:e.displayBoList)!=null?n:[]}}class hd{constructor(e){var u,n,a,i,r,l,d,c,m,B;this.code=(u=e==null?void 0:e.code)!=null?u:"view",this.color=(n=e==null?void 0:e.color)!=null?n:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(l=e==null?void 0:e.formKey)!=null?l:void 0,this.formType=e==null?void 0:e.formType,this.icon=(d=e==null?void 0:e.icon)!=null?d:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(m=e==null?void 0:e.openType)!=null?m:"modal",this.priorityProcess=(B=e==null?void 0:e.priorityProcess)!=null?B:!0}}class Te{constructor(e){var u,n,a,i;this.name=(u=e==null?void 0:e.name)!=null?u:"",this.key=(n=e==null?void 0:e.key)!=null?n:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new Ne(r)))!=null?i:[]}}class Nt extends Ee{constructor(e){var u,n;super(e),this.attributes=(n=(u=e==null?void 0:e.attributes)==null?void 0:u.map(a=>new Te(a)))!=null?n:[]}}class fd extends Ee{constructor(e){var u,n,a;super(e),this.attributes=(n=(u=e==null?void 0:e.attributes)==null?void 0:u.map(i=>new Te(i)))!=null?n:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class Ed extends Nt{constructor(e){var u;super(e),this.rootNode=new fe(e==null?void 0:e.rootNode),this.filterCode=(u=e==null?void 0:e.filterCode)!=null?u:""}}class Wt{constructor(e){var u,n,a,i;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new jt(r)))!=null?i:[]}}class md extends Wt{constructor(e){super(e),He.call(this,e)}}class vd extends Wt{constructor(e){var u,n;super(e),this.mode=(u=e==null?void 0:e.mode)!=null?u:"current",this.multiple=(n=e==null?void 0:e.multiple)!=null?n:!1}}class Bd{constructor(e){var u,n,a;this.zh=(u=e==null?void 0:e.zh)!=null?u:"",this.en=(n=e==null?void 0:e.en)!=null?n:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class Cd{constructor(e){var u,n,a;this.stencilName=(u=e==null?void 0:e.stencilName)!=null?u:"",this.expression=(n=e==null?void 0:e.expression)!=null?n:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class me{constructor(e){var u,n,a;this.id=(u=e==null?void 0:e.id)!=null?u:j(8),this.label=(n=e==null?void 0:e.label)!=null?n:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Ht extends me{constructor(e){var u,n;super(e),this.image=(u=e==null?void 0:e.image)!=null?u:"",this.type=(n=e==null?void 0:e.type)!=null?n:"src"}}class Tt extends me{constructor(e){var u,n;super(e),this.cueWord=(u=e==null?void 0:e.cueWord)!=null?u:"",this.checked=(n=e==null?void 0:e.checked)!=null?n:!1}}function Fd(t){var e;return(e=t==null?void 0:t.map(u=>new me(u)))!=null?e:[]}function yd(t){var e;return(e=t==null?void 0:t.map(u=>new Ht(u)))!=null?e:[]}function gd(t){var e;return(e=t==null?void 0:t.map(u=>new Tt(u)))!=null?e:[]}class ve{}class Ad extends ve{constructor(e){super(),this.amount=new M(e==null?void 0:e.amount),this.currency=new M(e==null?void 0:e.currency)}}class Dd{constructor(e){var u,n;this.amount=(u=e==null?void 0:e.amount)!=null?u:"",this.currency=(n=e==null?void 0:e.currency)!=null?n:ze.CNY}}class bd extends ve{constructor(e){super(),this.min=new M(e==null?void 0:e.min),this.max=new M(e==null?void 0:e.max)}}class Sd{constructor(e){var u,n;this.min=(u=e==null?void 0:e.min)!=null?u:"",this.max=(n=e==null?void 0:e.max)!=null?n:""}}class wd{constructor(e){var u,n,a,i,r,l;this.city=(u=e==null?void 0:e.city)!=null?u:"",this.cityDisplay=(n=e==null?void 0:e.cityDisplay)!=null?n:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(l=e==null?void 0:e.provinceDisplay)!=null?l:""}}class $d extends ve{constructor(e){super(),this.result=new M(e==null?void 0:e.result),this.unit=new M(e==null?void 0:e.unit)}}class Rd{constructor(e){var u,n;this.result=(u=e==null?void 0:e.result)!=null?u:0,this.unit=(n=e==null?void 0:e.unit)!=null?n:""}}var ze=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(ze||{}),zt=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.IS_SHOW_WATERMARK="isShowWatermark",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t.IS_PASTE="isPaste",t.SORTABLE="sortable",t.IS_SHOW_SIMPLE_SEARCH="isShowSimpleSearch",t.IS_SHOW_TOOL_BAE="isShowToolbar",t.MAIN_DEPT_FLAG="mainDeptFlag",t))(zt||{}),Ke=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(Ke||{});class Id{constructor(e){var u,n,a,i,r,l;this.isShow=(u=e==null?void 0:e.isShow)!=null?u:!0,this.content=(n=e==null?void 0:e.content)!=null?n:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(l=e==null?void 0:e.priorityProcess)!=null?l:!1}}class Ld{constructor(e){var u,n,a,i;this.id=(u=e==null?void 0:e.id)!=null?u:j(8),this.title=(n=e==null?void 0:e.title)!=null?n:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Pt(r)))!=null?i:[],He.call(this,e)}}class Md{constructor(e){var u,n;this.key=(u=e.key)!=null?u:j(8),this.caption=(n=e.caption)!=null?n:""}}class Kt{constructor(e){var u,n,a,i;this.width=(u=e==null?void 0:e.width)!=null?u:"",this.height=(n=e==null?void 0:e.height)!=null?n:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class _d{constructor(e){var u,n;this.optCode=(u=e==null?void 0:e.optCode)!=null?u:"",this.optType=(n=e==null?void 0:e.optType)!=null?n:""}}class Jt{constructor(e){var u,n,a,i,r,l;this.id=(u=e==null?void 0:e.id)!=null?u:j(),this.name=(n=e==null?void 0:e.name)!=null?n:"",this.filters=(i=(a=e==null?void 0:e.filters)==null?void 0:a.map(d=>d.children!==void 0?new z(d):new te(d)))!=null?i:[],this.settings=(e==null?void 0:e.settings)&&Array.isArray(e==null?void 0:e.settings)?(l=(r=e==null?void 0:e.settings)==null?void 0:r.map(d=>new Xt(d)))!=null?l:[]:[],this.script=e==null?void 0:e.script}}class Xt{constructor(e){var u,n,a,i;this.type=(u=e.type)!=null?u:"background",this.fieldCodes=(n=e.fieldCodes)!=null?n:[],this.color=(a=e.color)!=null?a:"theme",this.scope=(i=e.scope)!=null?i:"row"}}class Vd{constructor(e){var u,n,a,i;this.type=(u=e==null?void 0:e.type)!=null?u:"none",this.interval=(n=e==null?void 0:e.interval)!=null?n:{color:""},this.rules=(e==null?void 0:e.rules)&&Array.isArray(e==null?void 0:e.rules)?(i=(a=e==null?void 0:e.rules)==null?void 0:a.map(r=>new Jt(r)))!=null?i:[]:[]}}class Be{constructor(e){this.isHide={type:"boolean"}}}class Je extends Array{constructor(e){super()}}class O{constructor(e,u=""){var n,a;this.isHide=(n=e==null?void 0:e.isHide)!=null?n:!1,this.style=new Kt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:u}}O.Rules=Be,O.RuntimeRules=Je;function _(){return _=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var u=arguments[e];for(var n in u)Object.prototype.hasOwnProperty.call(u,n)&&(t[n]=u[n])}return t},_.apply(this,arguments)}function xd(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function Xe(t){return Xe=Object.setPrototypeOf?Object.getPrototypeOf:function(u){return u.__proto__||Object.getPrototypeOf(u)},Xe(t)}function Ce(t,e){return Ce=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},Ce(t,e)}function Pd(){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(t){return!1}}function Fe(t,e,u){return Pd()?Fe=Reflect.construct:Fe=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&Ce(c,r.prototype),c},Fe.apply(null,arguments)}function qd(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Ge(t){var e=typeof Map=="function"?new Map:void 0;return Ge=function(n){if(n===null||!qd(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,a)}function a(){return Fe(n,arguments,Xe(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ce(a,n)},Ge(t)}var Od=/%[sdj%]/g,Gt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Gt=function(e,u){typeof console!="undefined"&&console.warn&&u.every(function(n){return typeof n=="string"})&&console.warn(e,u)});function Qe(t){if(!t||!t.length)return null;var e={};return t.forEach(function(u){var n=u.field;e[n]=e[n]||[],e[n].push(u)}),e}function L(){for(var t=arguments.length,e=new Array(t),u=0;u<t;u++)e[u]=arguments[u];var n=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(Od,function(l){if(l==="%%")return"%";if(n>=i)return l;switch(l){case"%s":return String(e[n++]);case"%d":return Number(e[n++]);case"%j":try{return JSON.stringify(e[n++])}catch(d){return"[Circular]"}break;default:return l}});return r}return a}function kd(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function R(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||kd(e)&&typeof t=="string"&&!t)}function jd(t,e,u){var n=[],a=0,i=t.length;function r(l){n.push.apply(n,l),a++,a===i&&u(n)}t.forEach(function(l){e(l,r)})}function Qt(t,e,u){var n=0,a=t.length;function i(r){if(r&&r.length){u(r);return}var l=n;n=n+1,l<a?e(t[l],i):u([])}i([])}function Ud(t){var e=[];return Object.keys(t).forEach(function(u){e.push.apply(e,t[u])}),e}var Zt=function(t){xd(e,t);function e(u,n){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=u,a.fields=n,a}return e}(Ge(Error));function Nd(t,e,u,n){if(e.first){var a=new Promise(function(B,A){var b=function(y){return n(y),y.length?A(new Zt(y,Qe(y))):B()},F=Ud(t);Qt(F,u,b)});return a.catch(function(B){return B}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),l=r.length,d=0,c=[],m=new Promise(function(B,A){var b=function(f){if(c.push.apply(c,f),d++,d===l)return n(c),c.length?A(new Zt(c,Qe(c))):B()};r.length||(n(c),B()),r.forEach(function(F){var f=t[F];i.indexOf(F)!==-1?Qt(f,u,b):jd(f,u,b)})});return m.catch(function(B){return B}),m}function Yt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function pt(t,e){if(e){for(var u in e)if(e.hasOwnProperty(u)){var n=e[u];typeof n=="object"&&typeof t[u]=="object"?t[u]=_(_({},t[u]),n):t[u]=n}}return t}function eu(t,e,u,n,a,i){t.required&&(!u.hasOwnProperty(t.field)||R(e,i||t.type))&&n.push(L(a.messages.required,t.fullField))}function Wd(t,e,u,n,a){(/^\s+$/.test(e)||e==="")&&n.push(L(a.messages.whitespace,t.fullField))}var Ze={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},ue={integer:function(e){return ue.number(e)&&parseInt(e,10)===e},float:function(e){return ue.number(e)&&!ue.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(u){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ue.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(Ze.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(Ze.url)},hex:function(e){return typeof e=="string"&&!!e.match(Ze.hex)}};function Hd(t,e,u,n,a){if(t.required&&e===void 0){eu(t,e,u,n,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?ue[r](e)||n.push(L(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&n.push(L(a.messages.types[r],t.fullField,t.type))}function Td(t,e,u,n,a){var i=typeof t.len=="number",r=typeof t.min=="number",l=typeof t.max=="number",d=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,m=null,B=typeof e=="number",A=typeof e=="string",b=Array.isArray(e);if(B?m="number":A?m="string":b&&(m="array"),!m)return!1;b&&(c=e.length),A&&(c=e.replace(d,"_").length),i?c!==t.len&&n.push(L(a.messages[m].len,t.fullField,t.len)):r&&!l&&c<t.min?n.push(L(a.messages[m].min,t.fullField,t.min)):l&&!r&&c>t.max?n.push(L(a.messages[m].max,t.fullField,t.max)):r&&l&&(c<t.min||c>t.max)&&n.push(L(a.messages[m].range,t.fullField,t.min,t.max))}var K="enum";function zd(t,e,u,n,a){t[K]=Array.isArray(t[K])?t[K]:[],t[K].indexOf(e)===-1&&n.push(L(a.messages[K],t.fullField,t[K].join(", ")))}function Kd(t,e,u,n,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||n.push(L(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||n.push(L(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var v={required:eu,whitespace:Wd,type:Hd,range:Td,enum:zd,pattern:Kd};function Jd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e,"string")&&!t.required)return u();v.required(t,e,n,i,a,"string"),R(e,"string")||(v.type(t,e,n,i,a),v.range(t,e,n,i,a),v.pattern(t,e,n,i,a),t.whitespace===!0&&v.whitespace(t,e,n,i,a))}u(i)}function Xd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&v.type(t,e,n,i,a)}u(i)}function Gd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&(v.type(t,e,n,i,a),v.range(t,e,n,i,a))}u(i)}function Qd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&v.type(t,e,n,i,a)}u(i)}function Zd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),R(e)||v.type(t,e,n,i,a)}u(i)}function Yd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&(v.type(t,e,n,i,a),v.range(t,e,n,i,a))}u(i)}function pd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&(v.type(t,e,n,i,a),v.range(t,e,n,i,a))}u(i)}function e3(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return u();v.required(t,e,n,i,a,"array"),e!=null&&(v.type(t,e,n,i,a),v.range(t,e,n,i,a))}u(i)}function t3(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&v.type(t,e,n,i,a)}u(i)}var u3="enum";function n3(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a),e!==void 0&&v[u3](t,e,n,i,a)}u(i)}function a3(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e,"string")&&!t.required)return u();v.required(t,e,n,i,a),R(e,"string")||v.pattern(t,e,n,i,a)}u(i)}function i3(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e,"date")&&!t.required)return u();if(v.required(t,e,n,i,a),!R(e,"date")){var l;e instanceof Date?l=e:l=new Date(e),v.type(t,l,n,i,a),l&&v.range(t,l.getTime(),n,i,a)}}u(i)}function r3(t,e,u,n,a){var i=[],r=Array.isArray(e)?"array":typeof e;v.required(t,e,n,i,a,r),u(i)}function Ye(t,e,u,n,a){var i=t.type,r=[],l=t.required||!t.required&&n.hasOwnProperty(t.field);if(l){if(R(e,i)&&!t.required)return u();v.required(t,e,n,r,a,i),R(e,i)||v.type(t,e,n,r,a)}u(r)}function l3(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(R(e)&&!t.required)return u();v.required(t,e,n,i,a)}u(i)}var ne={string:Jd,method:Xd,number:Gd,boolean:Qd,regexp:Zd,integer:Yd,float:pd,array:e3,object:t3,enum:n3,pattern:a3,date:i3,url:Ye,hex:Ye,email:Ye,required:r3,any:l3};function pe(){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 e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var et=pe();function N(t){this.rules=null,this._messages=et,this.define(t)}N.prototype={messages:function(e){return e&&(this._messages=pt(pe(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var u,n;for(u in e)e.hasOwnProperty(u)&&(n=e[u],this.rules[u]=Array.isArray(n)?n:[n])},validate:function(e,u,n){var a=this;u===void 0&&(u={}),n===void 0&&(n=function(){});var i=e,r=u,l=n;if(typeof r=="function"&&(l=r,r={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function d(f){var y,s=[],E={};function C(S){if(Array.isArray(S)){var w;s=(w=s).concat.apply(w,S)}else s.push(S)}for(y=0;y<f.length;y++)C(f[y]);s.length?E=Qe(s):(s=null,E=null),l(s,E)}if(r.messages){var c=this.messages();c===et&&(c=pe()),pt(c,r.messages),r.messages=c}else r.messages=this.messages();var m,B,A={},b=r.keys||Object.keys(this.rules);b.forEach(function(f){m=a.rules[f],B=i[f],m.forEach(function(y){var s=y;typeof s.transform=="function"&&(i===e&&(i=_({},i)),B=i[f]=s.transform(B)),typeof s=="function"?s={validator:s}:s=_({},s),s.validator=a.getValidationMethod(s),s.field=f,s.fullField=s.fullField||f,s.type=a.getType(s),s.validator&&(A[f]=A[f]||[],A[f].push({rule:s,value:B,source:i,field:f}))})});var F={};return Nd(A,r,function(f,y){var s=f.rule,E=(s.type==="object"||s.type==="array")&&(typeof s.fields=="object"||typeof s.defaultField=="object");E=E&&(s.required||!s.required&&f.value),s.field=f.field;function C(V,g){return _(_({},g),{},{fullField:s.fullField+"."+V})}function S(V){V===void 0&&(V=[]);var g=V;if(Array.isArray(g)||(g=[g]),!r.suppressWarning&&g.length&&N.warning("async-validator:",g),g.length&&s.message!==void 0&&(g=[].concat(s.message)),g=g.map(Yt(s)),r.first&&g.length)return F[s.field]=1,y(g);if(!E)y(g);else{if(s.required&&!f.value)return s.message!==void 0?g=[].concat(s.message).map(Yt(s)):r.error&&(g=[r.error(s,L(r.messages.required,s.field))]),y(g);var x={};if(s.defaultField)for(var ou in f.value)f.value.hasOwnProperty(ou)&&(x[ou]=s.defaultField);x=_(_({},x),f.rule.fields);for(var J in x)if(x.hasOwnProperty(J)){var A3=Array.isArray(x[J])?x[J]:[x[J]];x[J]=A3.map(C.bind(null,J))}var su=new N(x);su.messages(r.messages),f.rule.options&&(f.rule.options.messages=r.messages,f.rule.options.error=r.error),su.validate(f.value,f.rule.options||r,function(ot){var X=[];g&&g.length&&X.push.apply(X,g),ot&&ot.length&&X.push.apply(X,ot),y(X.length?X:null)})}}var w;s.asyncValidator?w=s.asyncValidator(s,f.value,S,f.source,r):s.validator&&(w=s.validator(s,f.value,S,f.source,r),w===!0?S():w===!1?S(s.message||s.field+" fails"):w instanceof Array?S(w):w instanceof Error&&S(w.message)),w&&w.then&&w.then(function(){return S()},function(V){return S(V)})},function(f){d(f)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ne.hasOwnProperty(e.type))throw new Error(L("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var u=Object.keys(e),n=u.indexOf("message");return n!==-1&&u.splice(n,1),u.length===1&&u[0]==="required"?ne.required:ne[this.getType(e)]||!1}},N.register=function(e,u){if(typeof u!="function")throw new Error("Cannot register a validator by type, validator is not a function");ne[e]=u},N.warning=Gt,N.messages=et,N.validators=ne;const o3={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 tu(t,e={}){const u=new N(t);return u.messages(Object.assign(o3,e)),u}const uu=new Q5;class I{constructor(e){var A,b,F,f;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=au,this.removeSetting=nu,this._callControlHooks("preInstance",e);const{controlName:u,controlIcon:n,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:l,name:d,setting:c,slots:m,slotPosition:B}=new.target;u&&n&&a||At(`The ${d} controlName,controlIcon,controlType is not define`),this.id=(A=e==null?void 0:e.id)!=null?A:j(10),this.name=u,this.icon=n,this.type=(b=e==null?void 0:e.type)!=null?b:a,this.props=new O(e==null?void 0:e.props,new.target.controlName),this.controlType=(F=e==null?void 0:e.controlType)!=null?F:"base",this.setting=q(c),this.fieldType=(f=e==null?void 0:e.fieldType)!=null?f:i,this.eventKeys=q(r),this.customEvents=q(l),this.slots=q(m),this.slotPosition=q(B),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[u,...n]=e;return uu.emit(u,this,...n)}preUpdate(e,u){this._callControlHooks("preUpdateProps",e,u)}postUpdate(e,u){this._callControlHooks("postUpdateProps",e,u)}updateProps(e,u){this.preUpdate(e,u),x5(this.props,e,u),this.postUpdate(e,u)}preValidate(){return le(this,null,function*(){const e=H({},this.rules),u=yield this._callControlHooks("preValidate",e),n=u[u.length-1];return n===!1?void 0:n})}validate(e,u){return le(this,null,function*(){const n=yield this.preValidate(),a=n!==void 0?n:H({},this.rules);Array.isArray(u)&&u.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=tu(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const u=this.fieldType,n=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:l,caption:d,required:c,maxLength:m,options:B,encrypted:A,encryptedMode:b}=this.props;if(!u&&!i&&!r)return;const F={parentId:e,fieldType:u,controlId:n,caption:d,type:a,props:{}};switch(i&&(F.dataBind=i),l){case"datasource":case void 0:r&&(F.datasourceBind=r);break;case"custom":F.props.options=B;break}return c!==void 0&&(F.required=c),m!==void 0&&(F.maxLength=m),A!==void 0&&(F.encrypted=A),b!==void 0&&(F.encryptedMode=b),F}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:q(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,u){e==="setting"&&(u.add&&this.setting.push(...u.add),u.remove&&this.removeSettingItem(u.remove),u.update)}}I.mode="Designer",I.controlName="\u63A7\u4EF6",I.controlIcon="icon",I.controlType="control",I.controlEventKeys=[],I.controlCustomEvents=[],I.setting=[],I.__is_control__=!0,I.removeSettingItem=nu,I.updateSettingItem=au;function nu(t){(Array.isArray(t)?t:[t]).forEach(u=>{var i,r,l;const n=typeof u!="string",a=(i=this.setting)==null?void 0:i.findIndex(d=>d.key===(n?u.key:u));a!==-1&&(n?this.setting[a].showItems=(r=this.setting[a].showItems)==null?void 0:r.filter(d=>!u.hideItems.includes(d)):this.setting.splice(a,1),n&&!((l=this.setting[a].showItems)!=null&&l.length)&&this.setting.splice(a,1))})}function au(t,e){(typeof t=="string"?[t]:t).forEach(n=>{var i;const a=this.setting.find(r=>r.key===n);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class k{constructor(e){var r,l,d,c,m;this.customEvents=[],this.parent=null;const{controlType:u,controlFieldType:n,name:a,controlCustomEvents:i}=new.target;u||At(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:j(10),this.type=(l=e==null?void 0:e.type)!=null?l:u,this.props=new O(e==null?void 0:e.props),this.customEvents=i,this.controlType=(d=e==null?void 0:e.controlType)!=null?d:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:n,this.pageStatus=(m=e==null?void 0:e.pageStatus)!=null?m:Ke.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const u=new e(this.props);return Array.from(u)}return[]}}k.mode="Runtime",k.controlType="control",k.__is_control__=!0,k.controlCustomEvents=[];function tt(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:h("CMD.pleaseEnterLabel",null,"\u8BF7\u8F93\u5165\u663E\u793A\u503C")},value:{type:"string",required:!0,message:h("CMD.pleaseEnterValue",null,"\u8BF7\u8F93\u5165\u5B58\u50A8\u503C")}}}},{type:"array",validator(e,u,n){u.length===0&&n(h("CMD.optionIsRequired",null,"\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879")),n()}},{type:"array",validator(e,u,n){const a=u.map(r=>r.value),i=N5(a);a.length!==i.length?n(h("CMD.optionIdIsRepeat",null,"\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D")):n()},message:h("CMD.optionIdIsRepeat",null,"\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:h("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:h("CMD.pleaseEnterDataCode",null,"\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B")},valueFieldCode:{type:"string",required:!0,message:h("CMD.pleaseEnterValueFieldCode",null,"\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C")},svcCode:{type:"string",required:!0,message:h("CMD.pleaseEnterSvcCode",null,"\u8BF7\u7ED1\u5B9A\u670D\u52A1")},displayBoList:[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",validator(e,u,n){u.length===0&&n(h("CMD.pleaseBindAtLeastOneDisplayValue",null,"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")),n()},message:h("CMD.pleaseBindAtLeastOneDisplayValue",null,"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")}],orders:[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},desc:{type:"boolean",message:h("CMD.isNotBoolean",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14")}}}}]}}])}function s3(t,e,u=!1){this.datasourceBind=[{type:"object",message:h("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:h(u?"CMD.pleaseEnterDataCodeInDataSetting":"CMD.pleaseEnterDataCode",null,u?"\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B":"\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B")},valueFieldCode:{type:"string",required:!0,message:h(u?"CMD.pleaseEnterValueFieldCodeInDataSetting":"CMD.pleaseEnterValueFieldCode",null,u?"\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C":"\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C")},svcCode:{type:"string",required:!0,message:h(u?"CMD.pleaseEnterSvcCodeInDataSetting":"CMD.pleaseEnterSvcCode",null,u?"\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1":"\u8BF7\u7ED1\u5B9A\u670D\u52A1")},attributes:[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:h("CMD.isNotString",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32")},key:{type:"string",required:!0,message:h("CMD.isNotString",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32")},value:[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",validator(n,a,i){a.length===0&&i(h(u?"CMD.pleaseBindAtLeastOneDisplayValueInDataSetting":"CMD.pleaseBindAtLeastOneDisplayValue",null,u?"\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C":"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")),i()},message:h(u?"CMD.pleaseBindAtLeastOneDisplayValueInDataSetting":"CMD.pleaseBindAtLeastOneDisplayValue",null,u?"\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C":"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")}]}}}],orders:[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},desc:{type:"boolean",message:h("CMD.isNotBoolean",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14")}}}}]}}]}function iu(t){return(t==null?void 0:t.dataCode)!==void 0&&(t==null?void 0:t.fieldCode)!==void 0}class ut extends Be{constructor(e){super(e),this.dataBind={},this.caption={type:"string",required:!0,message:h("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:h("CMD.pleaseEnterCaptionTip",null,"\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED")};const u={fieldCode:{type:"string",required:!0,message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},dataCode:{type:"string",required:!0,message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}};if(iu(e.dataBind))this.dataBind={type:"object",required:!0,fields:q(u),message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};else{let n={type:"object",required:!0,fields:{},message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};Object.keys(e.dataBind).forEach(a=>{n.fields[a]={type:"object",required:!0,fields:q(u),message:h("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}}),this.dataBind=n}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class ru extends Je{constructor(e){super(e);const u=e.isHide?!1:e.required;u&&this.push({type:"string",required:u,message:e.requiredMessage!==""?e.requiredMessage:h("CMD.runtimeRequired",{caption:e.caption},"{caption}\u5FC5\u586B")})}}class ae extends O{constructor(e){var u,n,a,i,r,l,d,c,m,B;super(e),this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.isHideCaption=(n=e==null?void 0:e.isHideCaption)!=null?n:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(l=e==null?void 0:e.labelPosition)!=null?l:"top",this.placeholder=(d=e==null?void 0:e.placeholder)!=null?d:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(m=e==null?void 0:e.requiredMessage)!=null?m:"",this.dataBind=new M(e==null?void 0:e.dataBind),this.defaultValue=(B=e==null?void 0:e.defaultValue)!=null?B:""}}ae.Rules=ut,ae.RuntimeRules=ru;class c3 extends ut{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource"],message:h("CMD.PleaseSelectTheCorrectOptionSettings",null,"\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E")},this.options=[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")}],this.datasourceBind=[{type:"object",message:h("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")}],tt.call(this,e)}}class lu extends I{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}lu.controlEventKeys=["on_change","on_focus","on_blur"];class d3 extends k{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}class ie extends O{constructor(e){super(e)}}const h3=1e4;class W extends I{constructor(e){super(e),this.controlType="layout";const{excludes:u,childrenMaxLength:n}=new.target;this.props=new ie(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Designer"),this.excludes=q(u),this.childrenMaxLength=n}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const u=this.judgeExcludesChildren(e);return u&&this.childrenMaxLength>this.children.length}validate(e,u){return le(this,null,function*(){return yield st(W.prototype,this,"validate").call(this,e,u),yield Promise.all(this.children.map(n=>n.validate(e,u))),!0})}toDataBindModel(e=null){const u=super.toDataBindModel(),n=u?[u]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const l=r.filter(d=>!!d);return[...a,...l]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),u=this.children.map(n=>n.toSchema());return re(H({},e),{children:u})}}W.excludes=!1,W.childrenMaxLength=h3;class nt extends k{constructor(e){super(e),this.controlType="layout",this.props=new ie(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class at extends O{constructor(e,u,n){var a,i,r,l;super(u),U(this,"headers",u==null?void 0:u.headers,e,n),U(this,"footers",u==null?void 0:u.footers,e),this.pageIndex=(a=u==null?void 0:u.pageIndex)!=null?a:1,this.pageSize=(i=u==null?void 0:u.pageSize)!=null?i:20,this.pageSizeOptions=(r=u==null?void 0:u.pageSizeOptions)!=null?r:[20],this.totalCount=(l=u==null?void 0:u.totalCount)!=null?l:0}}class ye extends I{constructor(e){super(e),this.controlType="list",this.props=new at(this,e==null?void 0:e.props,"Designer")}validate(e,u){return le(this,null,function*(){return yield st(ye.prototype,this,"validate").call(this,e),yield Promise.all(this.props.headers.map(n=>n.validate(e,u))),!0})}toDataBindModel(){const e=super.toDataBindModel(),u=e?[e]:[],n=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(n);if(Array.isArray(r)){const l=r.filter(d=>!!d);return[...a,...l]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),u=this.props.headers.map(n=>n.toSchema());return re(H({},e),{props:re(H({},this.props),{headers:u})})}}ye.controlFieldType=Z.LIST;class f3 extends k{constructor(e){super(e),this.controlType="list",this.props=new at(this,e==null?void 0:e.props,"Runtime"),U(this,"children",e==null?void 0:e.children,void 0,"Runtime")}get length(){return this.children.length}}class it extends Be{constructor(e){super(e),this.caption={type:"string",required:!0,message:h("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")},this.width={type:"number",required:!1,message:h("CMD.pleaseEnterColumnWidth",null,"\u8BF7\u8F93\u5165\u5217\u5BBD")},this.width.required=e.widthType==="px"}}class ge extends O{constructor(e){var u,n,a,i,r;super(e),this.width=(u=e==null?void 0:e.width)!=null?u:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new je(e==null?void 0:e.autoWidth),this.dataBind=new M(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}ge.Rules=it;class E3 extends it{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:h("CMD.PleaseSelectTheCorrectOptionSettings",null,"\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E")},this.options=[{type:"array",message:h("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")}],this.datasourceBind=[{type:"object",message:h("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")}],tt.call(this,e)}}class m3 extends I{constructor(e){super(e),this.controlType="column",this.props=new ge(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Designer")}toSchema(){const e=super.toSchema();return re(H({},e),{children:this.children?this.children.map(u=>u.toSchema()):[]})}}class v3 extends k{constructor(e){super(e),this.controlType="column",this.props=new ge(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class rt extends ie{constructor(e){super(e),this.dataBind=new M(e==null?void 0:e.dataBind)}}class B3 extends W{constructor(e){super(e),this.controlType="search",this.props=new rt(e==null?void 0:e.props)}}class C3 extends nt{constructor(e){super(e),this.controlType="search",this.props=new rt(e==null?void 0:e.props)}}class lt extends ie{constructor(e){super(e)}}class F3 extends W{constructor(e){super(e),this.controlType="wrap",this.props=new lt(e==null?void 0:e.props)}}class y3 extends nt{constructor(e){super(e),this.controlType="wrap",this.props=new lt(e==null?void 0:e.props)}}function g3(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:h("CMD.pleaseEnterForm",null,"\u8BF7\u7ED1\u5B9A\u8868\u5355")}}}])}o.AMOUNT_TYPE=ze,o.AddressValue=wd,o.AiOptionSetting=Tt,o.AmountDataBind=Ad,o.AmountValue=Dd,o.AutoWidth=je,o.BaseControlProperty=ae,o.BaseControlPropertyRules=ut,o.BaseControlPropertyRuntimeRules=ru,o.BaseStyle=Kt,o.COMMON_SETTING_TYPE=zt,o.CalcDataBind=$d,o.CalcValue=Rd,o.ColumnControlProperty=ge,o.ColumnControlPropertyRules=it,o.ColumnOptionAndDataSourcePropertyRules=E3,o.CustomAttributeItem=Te,o.CustomPermissionItem=Md,o.DataBind=M,o.DataSourceBind=Ee,o.DataSourceDataSetValue=Ut,o.DataSourceOrderItem=We,o.DataSourceParamItem=cd,o.DataStorageDoc=ad,o.DesignerColumnControl=m3,o.DesignerControl=I,o.DesignerFormControl=lu,o.DesignerLayoutControl=W,o.DesignerListControl=ye,o.DesignerSearchControl=B3,o.DesignerWrapControl=F3,o.DisplayBoListItem=Ne,o.FieldBindItem=qt,o.FieldFilterCondition=te,o.FieldFilterConditions=z,o.FillBackBind=vd,o.FillPayloadBind=md,o.FormBind=he,o.FormSelectBind=id,o.ImageOptionSetting=Ht,o.JoinRelation=od,o.Language=Bd,o.LayoutControlProperty=ie,o.LeftVariable=kt,o.LinkOperationOption=hd,o.ListBind=rd,o.ListControlProperty=at,o.MetaAutoWidth=nd,o.MetaRowHeight=ud,o.MetaWidth=de,o.MultistageFillingItem=jt,o.ObjectDataBind=ve,o.OperationItem=Id,o.OptObject=_d,o.OptionAndDataSourcePropertyRules=c3,o.OptionDisplayConfigItem=sd,o.OptionSetting=me,o.OrganizationDataSourceBind=fd,o.PAGE_STATUS=Ke,o.Property=O,o.PropertyRules=Be,o.PropertyRuntimeRules=Je,o.RangeDataBind=bd,o.RangeDateValue=Sd,o.RegisterControls=ee,o.RegularRules=Cd,o.RightVariable=fe,o.RowHeight=Ue,o.RowStyle=Vd,o.RowStyleRule=Jt,o.RowStyleSettings=Xt,o.RuntimeColumnControl=v3,o.RuntimeControl=k,o.RuntimeFormControl=d3,o.RuntimeLayoutControl=nt,o.RuntimeListControl=f3,o.RuntimeSearchControl=C3,o.RuntimeWrapControl=y3,o.SearchControlProperty=rt,o.SelectedContentConfig=dd,o.SubListItem=Ot,o.SubListPageConfig=ld,o.SuperDataSourceBind=Nt,o.TreeDataSourceBind=Ed,o.ViewOperationItem=Ld,o.WrapControlProperty=lt,o.controlHooksEmitter=uu,o.createValidator=tu,o.defineArrayParent=Lt,o.defineControlArrayToProperty=U,o.defineParent=Oe,o.initAiOptions=gd,o.initImageOptions=yd,o.initLinkOperationRules=g3,o.initOptionAndDataSourceRules=tt,o.initOptions=Fd,o.initSuperDataSourceRules=s3,o.isDataBind=iu,o.setPropertyDontEnum=ce,Object.defineProperty(o,"__esModule",{value:!0})});
|
|
1
|
+
var b6=Object.defineProperty,S6=Object.defineProperties;var w6=Object.getOwnPropertyDescriptors;var cu=Object.getOwnPropertySymbols,$6=Object.getPrototypeOf,R6=Object.prototype.hasOwnProperty,I6=Object.prototype.propertyIsEnumerable,M6=Reflect.get;var du=(o,d,$)=>d in o?b6(o,d,{enumerable:!0,configurable:!0,writable:!0,value:$}):o[d]=$,H=(o,d)=>{for(var $ in d||(d={}))R6.call(d,$)&&du(o,$,d[$]);if(cu)for(var $ of cu(d))I6.call(d,$)&&du(o,$,d[$]);return o},re=(o,d)=>S6(o,w6(d));var st=(o,d,$)=>M6($6(o),$,d);var le=(o,d,$)=>new Promise((Ae,oe)=>{var De=P=>{try{G($.next(P))}catch(Q){oe(Q)}},be=P=>{try{G($.throw(P))}catch(Q){oe(Q)}},G=P=>P.done?Ae(P.value):Promise.resolve(P.value).then(De,be);G(($=$.apply(o,d)).next())});(function(o,d){typeof exports=="object"&&typeof module!="undefined"?d(exports):typeof define=="function"&&define.amd?define(["exports"],d):(o=typeof globalThis!="undefined"?globalThis:o||self,d(o.modelDrivenCore={}))})(this,function(o){"use strict";const d=(t,e,u)=>{if(!t)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const n=t.split(".");let a;const r=(window.baitedaWorkers||{}).languageMessages||{};n.forEach((l,h)=>{h===0?a=r[l]:a&&(a=a[l])});let i="";return a&&(i=a),e&&Object.keys(e).forEach(l=>{const h=e[l];i=i.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),h)}),i||(u?i=u:i=t),i};var $="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Ae="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",oe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",be="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",G="{caption}\u5FC5\u586B",P="\u8BF7\u8F93\u5165\u6807\u9898",Q="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",hu="\u8BF7\u8F93\u5165\u884C\u6807\u9898",fu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",mu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",vu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Eu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Bu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Cu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",yu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Fu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",gu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Au="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Du="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",bu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Su="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",wu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",$u="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Ru="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Iu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Mu="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Lu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",_u="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Vu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",xu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Pu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",qu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Ou="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",ku="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ju="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Uu="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Nu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Wu="\u8BF7\u9009\u62E9\u7701",Hu="\u8BF7\u9009\u62E9\u5E02",Tu="\u8BF7\u9009\u62E9\u533A",zu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Ku="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ju="\u8BF7\u8F93\u5165\u5217\u5BBD",Xu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Gu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Qu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Yu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",pu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",en="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",tn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",un="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",nn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",an="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",rn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ln="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",on="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",sn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",cn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",dn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",hn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",fn="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",mn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",vn="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",En="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Bn="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Cn="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",yn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Fn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",gn="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",An="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",Dn="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",bn="\u6279\u91CF\u5220\u9664",Sn="\u6279\u91CF\u6253\u5370",wn="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",$n="\u6309\u94AE",Rn="\u521B\u5EFA\u5355\u636E",In="\u4EEA\u8868\u76D8",Mn="\u5206\u5272\u7EBF",Ln="\u5BFC\u51FA",_n="\u8868\u5355\u64CD\u4F5C",Vn="\u5BFC\u5165",xn="\u53D1\u7968\u8BC6\u522B",Pn="\u94FE\u63A5",qn="\u5217\u8868\u9009\u62E9",On="\u5217\u8868\u89C6\u56FE",kn="\u64CD\u4F5C\u6309\u94AE",jn="\u5206\u9875",Un="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Nn="\u8BF4\u660E\u6587\u5B57",Wn="\u6587\u5B57\u8BC6\u522B",Hn="\u6807\u9898\u7EC4\u4EF6",Tn="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",zn="\u6570\u7EC4",Kn="\u81EA\u52A8\u7F16\u53F7",Jn="\u81EA\u5B9A\u4E49",Xn="\u6570\u503C",Gn="\u90E8\u95E8",Qn="\u4EBA\u5458",Zn="\u9644\u4EF6",Yn="\u56FE\u7247",pn="\u5730\u5740",ea="\u64CD\u4F5C",ta="\u5E8F\u53F7",ua="\u4EBA\u5458",na="\u957F\u6587\u672C",aa="\u65E5\u671F\u533A\u95F4",ia="\u65E5\u671F",ra="\u77ED\u6587\u672C",la="\u6362\u884C\u5BB9\u5668Wrap",oa="\u8868\u683C",sa="\u660E\u7EC6\u5B50\u8868",ca="\u5730\u5740",da="\u91D1\u989D",ha="\u8BA1\u7B97\u516C\u5F0F",fa="\u591A\u9009",ma="\u7535\u5B50\u7B7E\u7AE0",va="\u5355\u884C\u6587\u672C",Ea="\u6570\u5B57",Ba="\u4E1A\u52A1\u7EC4\u7EC7",Ca="\u5355\u9009",ya="\u5BCC\u6587\u672C",Fa="\u8BC4\u5206",ga="\u6570\u5B57\u533A\u95F4",Aa="\u4E0B\u62C9\u5355\u9009",Da="\u4E0B\u62C9\u591A\u9009",ba="\u5173\u8054\u5355\u9009",Sa="\u591A\u884C\u6587\u672C",wa="\u6811",$a="Vue\u5BB9\u5668",Ra="Vue\u9875\u9762",Ia="\u5728\u7EBF\u6587\u6863",Ma="\u6309\u94AE\u64CD\u4F5C\u680F",La="\u9AD8\u7EA7\u5BB9\u5668",_a="\u5206\u7EC4",Va="\u6805\u683C\u5217",xa="\u6570\u636E\u5BB9\u5668",Pa="\u753B\u5E03",qa="\u6362\u884C\u5BB9\u5668",Oa="\u6805\u683C\u7B49\u5206\u884C",ka="\u5217\u8868\u5BB9\u5668",ja="\u81EA\u7531\u9875\u9762",Ua="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Na="\u5B9A\u4F4D\u5BB9\u5668",Wa="\u6805\u683C\u5E03\u5C40",Ha="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Ta="\u660E\u7EC6\u5B50\u8868\u884C",za="\u6807\u7B7E\u9875",Ka="\u6807\u7B7E\u5355\u5143",Ja="\u5DE5\u5177\u680F",Xa="\u6279\u91CF\u63D0\u4EA4",Ga="\u5BFC\u51FA\u8BB0\u5F55",Qa="\u5217\u8868\u89C6\u56FE",Za="\u7ED3\u675F\u65F6\u95F4",Ya="\u5F00\u59CB\u65F6\u95F4",pa="\u5355\u4F4D",ei="\u7ED3\u679C",ti="\u5E01\u79CD",ui="\u7ED3\u675F\u65E5\u671F",ni="\u5F00\u59CB\u65E5\u671F",ai="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",ii="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",ri="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",li="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",oi="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",si="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",ci="\u8BF7\u9009\u62E9",di="\u8BF7\u9009\u62E9\u7EC4\u7EC7",hi="\u8BF7\u9009\u62E9\u90E8\u95E8",fi="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",mi="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",vi="\u8BF7\u9009\u62E9\u5730\u5740",Ei="\u5F39\u7A97\u786E\u8BA4\u65F6",Bi="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Ci="\u884C\u9009\u4E2D\u65F6",yi="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Fi="\u884C\u5220\u9664\u524D",gi="\u884C\u70B9\u51FB\u65F6",Ai="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",Di="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",bi="\u91CD\u547D\u540D\u65F6",Si="\u4FDD\u5B58\u6587\u4EF6\u65F6",wi="\u6253\u5F00\u6587\u4EF6\u65F6",$i="\u83B7\u53D6\u7126\u70B9\u65F6",Ri="\u5931\u53BB\u7126\u70B9\u65F6",Ii="\u7528\u6237\u8F93\u5165\u65F6",Mi="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",Li="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",_i="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",Vi="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",xi="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Pi="\u641C\u7D22\u65F6",qi="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Oi="\u6267\u884C\u5B8C\u6210\u65F6",ki="\u70B9\u51FB\u65F6",ji="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Ui="\u8BF7\u8F93\u5165\u65E5\u671F",Ni="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Wi="\u8BF7\u8F93\u5165",Hi="\u9ED8\u8BA4\u6A21\u7248",Ti="\u5DE6\u53F3\u5E03\u5C40",zi="\u4E0A\u4E0B\u5E03\u5C40",Ki="\u53EA\u8BFB",Ji="\u5FC5\u586B",Xi="\u63D0\u793A\u6587\u5B57",Gi="\u9690\u85CF\u6807\u9898",Qi="\u6807\u9898\u5FC5\u586B",Zi="\u7EC4\u7EC7\u5F62\u6001",Yi="\u4E1A\u52A1\u7C7B\u578B",pi="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",er="\u9690\u85CF",tr="\u6D41\u7A0B\u72B6\u6001",ur="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",nr="\u5220\u9664",ar="\u7F16\u8F91",ir="\u67E5\u770B",rr="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",lr="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",or="\u5145\u6EE1\u6574\u884C",sr="\u6700\u5C0F\u503C",cr="\u6700\u5927\u503C",dr="\u65B0\u5EFA\u6587\u6863",hr="\u91CD\u7F6E",fr="\u67E5\u8BE2",mr="\u660E\u7EC6",vr="\u6253\u5370",Er="\u4FDD\u5B58\u8349\u7A3F",Br="\u4FDD\u5B58",Cr="\u53D6\u6D88",yr="\u4E0A\u4F20\u56FE\u7247",Fr="\u53D1\u8D77\u7B7E\u7F72",gr="\u4E0A\u4F20\u9644\u4EF6",Ar="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",Dr="\u5F15\u7528\u5217\u8868",br="\u9009\u9879\u4E00",Sr="\u9009\u9879\u4E8C",wr="\u9009\u9879\u4E09",$r={isNotNumber:$,isNotString:Ae,isNotObject:oe,isNotArray:De,isNotBoolean:be,runtimeRequired:G,pleaseEnterCaption:P,pleaseEnterCaptionTip:Q,pleaseEnterRowCaption:hu,pleaseEnterPlaceholder:fu,pleaseEnterFieldCode:mu,pleaseEnterForm:vu,pleaseEnterList:Eu,pleaseEnterProcess:Bu,pleaseEnterLabel:Cu,pleaseEnterValue:yu,bizKeyNotBindFiled:Fu,pleaseSelectOneField:gu,pleaseEnterNumberRange:Au,pleaseEnterAValueGreaterThanMin:Du,pleaseEnterAValueLessThanMax:bu,numberRangeSetError:Su,stringRangeError:wu,attachmentMaxSize:$u,pleaseEnterTotalScoreSetting:Ru,theTotalScoreMustNotBeLessThan1:Iu,scoreDefaultValueRange:Mu,attachmentLimitError:Lu,PleaseReselectTheOptionalQuantity:_u,TheMaximumLengthIsGreaterThanTheMinimumLength:Vu,TheMinimumLengthIsGreaterThanTheMaximumLength:xu,PleaseSelectTheCorrectOptionSettings:Pu,optionIdIsRepeat:qu,optionIsRequired:Ou,pleaseEnterDataCode:ku,pleaseEnterValueFieldCode:ju,pleaseEnterSvcCode:Uu,pleaseBindAtLeastOneDisplayValue:Nu,pleaseSelectProvince:Wu,pleaseSelectCity:Hu,pleaseSelectDistrict:Tu,limitRowsCannotBeLessThan0:zu,TheNumberOfRowsCannotBeLessThanMinRows:Ku,pleaseEnterColumnWidth:Ju,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Xu,pleaseCompleteAllRulesAndConditions:Gu,pleaseSelectControl:Qu,pleaseSelectAtLeastOneColumn:Zu,pleaseSelectFillBackMode:Yu,pleaseSelectDashboard:pu,rootNodeIsRequired:en,theViewNameCannotBeEmpty:tn,pleaseSelectOcrType:un,pleaseSelectAtLeastOneFieldToFillIn:nn,pleaseChooseAtLeastOne:an,pleaseEnterButtonContent:rn,pleaseEnterDataCodeInDataSetting:ln,pleaseEnterValueFieldCodeInDataSetting:on,pleaseEnterSvcCodeInDataSetting:sn,pleaseBindAtLeastOneDisplayValueInDataSetting:cn,rootNodeIsRequiredInDataSetting:dn,pleaseEnterMaxHeight:hn,pleaseEnterWatermark:fn,pleaseEnterFileName:mn,pleaseUploadAtLeastOnePrintTemplate:vn,pleaseAssignBusiness:En,pleaseAssignExternal:Bn,pleaseEnterAliasCode:Cn,pleaseSelectDataCode:yn,pleaseSelectSvcCode:Fn,pleaseSelectJoinFieldCode:gn,pleaseSelectMainFieldCode:An,pleaseSelectSortFieldCode:Dn,batchDeleteButton:bn,batchPrintListButton:Sn,batchPrintRecordList:wn,button:$n,createFormListButton:Rn,dashboard:In,divider:Mn,exportListButton:Ln,formSelectButton:_n,importRecordListButton:Vn,invoiceCheckButton:xn,link:Pn,listSelectButton:qn,ListViewSelect:On,operationButton:kn,pagination:jn,submissionRecordListButton:Un,text:Nn,textOcrButton:Wn,title:Hn,approvalStatusColumn:Tn,array:zn,autoNumber:Kn,custom:Jn,decimal:Xn,department:Gn,employee:Qn,file:Zn,image:Yn,location:pn,operation:ea,order:ta,people:ua,long:na,timescope:aa,timestamp:ia,varchar:ra,gridLayoutWrap:la,gridTable:oa,subTable:sa,address:ca,amount:da,calc:ha,checkBox:fa,electronicSignature:ma,input:va,number:Ea,organizationSelection:Ba,radio:Ca,richText:ya,score:Fa,searchNumberRange:ga,select:Aa,selectMultiple:Da,selectRelation:ba,textarea:Sa,tree:wa,vueFormItem:$a,vuePage:Ra,WPS:Ia,actionBar:Ma,advancedContainer:La,cardGroup:_a,col:Va,dataView:xa,grid:Pa,gridLayoutContainer:qa,gridRow:Oa,listView:ka,page:ja,position:Ua,positioningContainer:Na,row:Wa,subtableColumn:Ha,subtableRow:Ta,tab:za,tabPane:Ka,toolbox:Ja,batchSubmissionListButton:Xa,exportRecordListButton:Ga,listViewSelect:Qa,endTime:Za,startTime:Ya,unit:pa,result:ei,currency:ti,endDate:ui,startDate:ni,pleaseSelectCompanyName:ai,pleaseSelectPhoneOrEmail:ii,pleaseSelectSignType:ri,pleaseSelectSigner:li,pleaseSelectOnlyOne:oi,pleaseSelectSignFile:si,pleaseSelect:ci,pleaseSelectOrg:di,pleaseSelectDept:hi,pleaseSelectEndDate:fi,pleaseSelectStartDate:mi,pleaseChooseAddress:vi,modalConfirm:Ei,tabChange:Bi,rowSelected:Ci,listDataImport:yi,rowDelete:Fi,rowClick:gi,cellRender:Ai,onClickBtn:Di,rename:bi,onSaveFile:Si,onOpenFile:wi,onFocus:$i,onBlur:Ri,onInput:Ii,listDataAdd:Mi,listDataDelete:Li,listDataBack:_i,listDataCreate:Vi,listDataChange:xi,search:Pi,valueChange:qi,finished:Oi,click:ki,pleaseEnterNameorEmail:ji,pleaseEnterDate:Ui,pleaseEnterAutonumber:Ni,pleaseEnter:Wi,defaultTemplate:Hi,left:Ti,top:zi,default:"\u666E\u901A",readonly:Ki,required:Ji,textTip:Xi,hideCaption:Gi,titleRequired:Qi,organizationalForm:Zi,businessType:Yi,deleteConfirm:pi,hide:er,processStatus:tr,approvedDocuments:ur,delete:nr,edit:ar,view:ir,loadCtrlErrorTip:rr,loadCtrlError:lr,fullLine:or,min:sr,max:cr,createWPS:dr,reset:hr,query:fr,detailed:mr,print:vr,draft:Er,save:Br,cancel:Cr,uploadImg:yr,signature:Fr,uploadFile:gr,linkContent:Ar,referenceList:Dr,optionOne:br,optionTwo:Sr,optionThird:wr},Rr="Please enter a number",Ir="Please enter a string",Mr="Please enter an object",Lr="Please enter an array",_r="Please enter a boolean",Vr="{caption} Required",xr="Please enter the title",Pr="Please enter the bubble prompt",qr="Please enter the row title",Or="Please enter the prompt text",kr="Please bind data items",jr="Please bind the form",Ur="Please bind the list",Nr="Please bind the process",Wr="Please enter the displayed value",Hr="Please enter the stored value",Tr="The document number is not bound to the data item",zr="Please select at least one display field",Kr="Please enter a value greater than or equal to {min} and less than or equal to {max}",Jr="Please enter a value greater than or equal to {min}",Xr="Please enter a value less than or equal to {max}",Gr="The value range is set incorrectly",Qr="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Zr="The attachment size must be between 0MB and 1000MB",Yr="Please fill in the total score setting",pr="The total score cannot be less than 1",el="The default value must be between {min} and {max}",tl="The number of attachment uploads exceeds the limit",ul="Please re-select the optional quantity",nl="The maximum length of the control must be greater than the minimum length",al="The minimum length of the control must be less than the maximum length",il="Please select the correct option setting",rl="Option ID cannot be repeated",ll="Please enter at least one option",ol="Please bind the data source",sl="Please bind the stored value",cl="Please bind the service",dl="At least one display value must be bound",hl="Please select a province",fl="Please select a city",ml="Please select a district",vl="The minimum number of lines to fill in cannot be less than 0",El="The number of rows cannot be less than {min} rows",Bl="Please enter the column width",Cl="Please set the logical relationship of all rule conditions",yl="Please complete all rules and conditions",Fl="please select control",gl="Please select the dashboard",Al="View name cannot be empty",Dl="Please select recognition type",bl="Please select at least one field to fill in",Sl="Please select at least one",wl="Please enter the button title",$l="Please bind the business model in the data settings",Rl="Please bind storage values in data settings",Il="Please bind the service in the data settings",Ml="Please bind at least one display value in the data settings",Ll="Please select the root node in the data settings",_l="Please enter the maximum height",Vl="The input content cannot be empty",xl="Watermark cannot be empty",Pl="File name cannot be empty",ql="Please upload at least one printing template!\uFF01",Ol="Please select a specific business department",kl="Please select a specified external organization",jl="Please enter a sub table alias",Ul="Please select the associated table to set the business model",Nl="Please select the association table to set the binding service",Wl="Select associated sub table fields",Hl="Please select the associated main table field",Tl="Please select the sort field",zl="\u6279\u91CF\u5220\u9664",Kl="\u6279\u91CF\u6253\u5370",Jl="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Xl="\u6309\u94AE",Gl="\u521B\u5EFA\u5355\u636E",Ql="\u4EEA\u8868\u76D8",Zl="\u5206\u5272\u7EBF",Yl="\u5BFC\u51FA",pl="\u8868\u5355\u64CD\u4F5C",eo="\u5BFC\u5165",to="\u53D1\u7968\u8BC6\u522B",uo="\u94FE\u63A5",no="\u5217\u8868\u9009\u62E9",ao="\u5217\u8868\u89C6\u56FE",io="\u64CD\u4F5C\u6309\u94AE",ro="\u5206\u9875",lo="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",oo="\u8BF4\u660E\u6587\u5B57",so="\u6587\u5B57\u8BC6\u522B",co="\u6807\u9898\u7EC4\u4EF6",ho="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",fo="\u6570\u7EC4",mo="\u81EA\u52A8\u7F16\u53F7",vo="\u81EA\u5B9A\u4E49",Eo="\u6570\u503C",Bo="\u90E8\u95E8",Co="\u4EBA\u5458",yo="\u9644\u4EF6",Fo="\u56FE\u7247",go="\u5730\u5740",Ao="\u64CD\u4F5C",Do="\u5E8F\u53F7",bo="\u4EBA\u5458",So="\u957F\u6587\u672C",wo="\u65E5\u671F\u533A\u95F4",$o="\u65E5\u671F",Ro="\u77ED\u6587\u672C",Io="\u6362\u884C\u5BB9\u5668Wrap",Mo="\u8868\u683C",Lo="\u660E\u7EC6\u5B50\u8868",_o="\u5730\u5740",Vo="\u91D1\u989D",xo="\u8BA1\u7B97\u516C\u5F0F",Po="\u591A\u9009",qo="\u7535\u5B50\u7B7E\u7AE0",Oo="\u5355\u884C\u6587\u672C",ko="\u6570\u5B57",jo="\u4E1A\u52A1\u7EC4\u7EC7",Uo="\u5355\u9009",No="\u5BCC\u6587\u672C",Wo="\u8BC4\u5206",Ho="\u6570\u5B57\u533A\u95F4",To="\u4E0B\u62C9\u5355\u9009",zo="\u4E0B\u62C9\u591A\u9009",Ko="\u5173\u8054\u5355\u9009",Jo="\u591A\u884C\u6587\u672C",Xo="\u6811",Go="Vue\u5BB9\u5668",Qo="Vue\u9875\u9762",Zo="\u5728\u7EBF\u6587\u6863",Yo="\u6309\u94AE\u64CD\u4F5C\u680F",po="\u9AD8\u7EA7\u5BB9\u5668",es="\u5206\u7EC4",ts="\u6805\u683C\u5217",us="\u6570\u636E\u5BB9\u5668",ns="\u753B\u5E03",as="\u6362\u884C\u5BB9\u5668",is="\u6805\u683C\u7B49\u5206\u884C",rs="\u5217\u8868\u5BB9\u5668",ls="\u81EA\u7531\u9875\u9762",os="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ss="\u5B9A\u4F4D\u5BB9\u5668",cs="\u6805\u683C\u5E03\u5C40",ds="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",hs="\u660E\u7EC6\u5B50\u8868\u884C",fs="\u6807\u7B7E\u9875",ms="\u6807\u7B7E\u5355\u5143",vs="\u5DE5\u5177\u680F",Es="\u6279\u91CF\u63D0\u4EA4",Bs="\u5BFC\u51FA\u8BB0\u5F55",Cs="\u5217\u8868\u89C6\u56FE",ys="\u5F15\u7528\u5217\u8868",Fs="\u9009\u9879\u4E00",gs="\u9009\u9879\u4E8C",As="\u9009\u9879\u4E09",Ds={isNotNumber:Rr,isNotString:Ir,isNotObject:Mr,isNotArray:Lr,isNotBoolean:_r,runtimeRequired:Vr,pleaseEnterCaption:xr,pleaseEnterCaptionTip:Pr,pleaseEnterRowCaption:qr,pleaseEnterPlaceholder:Or,pleaseEnterFieldCode:kr,pleaseEnterForm:jr,pleaseEnterList:Ur,pleaseEnterProcess:Nr,pleaseEnterLabel:Wr,pleaseEnterValue:Hr,bizKeyNotBindFiled:Tr,pleaseSelectOneField:zr,pleaseEnterNumberRange:Kr,pleaseEnterAValueGreaterThanMin:Jr,pleaseEnterAValueLessThanMax:Xr,numberRangeSetError:Gr,stringRangeError:Qr,attachmentMaxSize:Zr,pleaseEnterTotalScoreSetting:Yr,theTotalScoreMustNotBeLessThan1:pr,scoreDefaultValueRange:el,attachmentLimitError:tl,PleaseReselectTheOptionalQuantity:ul,TheMaximumLengthIsGreaterThanTheMinimumLength:nl,TheMinimumLengthIsGreaterThanTheMaximumLength:al,PleaseSelectTheCorrectOptionSettings:il,optionIdIsRepeat:rl,optionIsRequired:ll,pleaseEnterDataCode:ol,pleaseEnterValueFieldCode:sl,pleaseEnterSvcCode:cl,pleaseBindAtLeastOneDisplayValue:dl,pleaseSelectProvince:hl,pleaseSelectCity:fl,pleaseSelectDistrict:ml,limitRowsCannotBeLessThan0:vl,TheNumberOfRowsCannotBeLessThanMinRows:El,pleaseEnterColumnWidth:Bl,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Cl,pleaseCompleteAllRulesAndConditions:yl,pleaseSelectControl:Fl,pleaseSelectDashboard:gl,theViewNameCannotBeEmpty:Al,pleaseSelectOcrType:Dl,pleaseSelectAtLeastOneFieldToFillIn:bl,pleaseChooseAtLeastOne:Sl,pleaseEnterButtonContent:wl,pleaseEnterDataCodeInDataSetting:$l,pleaseEnterValueFieldCodeInDataSetting:Rl,pleaseEnterSvcCodeInDataSetting:Il,pleaseBindAtLeastOneDisplayValueInDataSetting:Ml,rootNodeIsRequiredInDataSetting:Ll,pleaseEnterMaxHeight:_l,pleaseEnter:Vl,pleaseEnterWatermark:xl,pleaseEnterFileName:Pl,pleaseUploadAtLeastOnePrintTemplate:ql,pleaseAssignBusiness:Ol,pleaseAssignExternal:kl,pleaseEnterAliasCode:jl,pleaseSelectDataCode:Ul,pleaseSelectSvcCode:Nl,pleaseSelectJoinFieldCode:Wl,pleaseSelectMainFieldCode:Hl,pleaseSelectSortFieldCode:Tl,batchDeleteButton:zl,batchPrintListButton:Kl,batchPrintRecordList:Jl,button:Xl,createFormListButton:Gl,dashboard:Ql,divider:Zl,exportListButton:Yl,formSelectButton:pl,importRecordListButton:eo,invoiceCheckButton:to,link:uo,listSelectButton:no,ListViewSelect:ao,operationButton:io,pagination:ro,submissionRecordListButton:lo,text:oo,textOcrButton:so,title:co,approvalStatusColumn:ho,array:fo,autoNumber:mo,custom:vo,decimal:Eo,department:Bo,employee:Co,file:yo,image:Fo,location:go,operation:Ao,order:Do,people:bo,long:So,timescope:wo,timestamp:$o,varchar:Ro,gridLayoutWrap:Io,gridTable:Mo,subTable:Lo,address:_o,amount:Vo,calc:xo,checkBox:Po,electronicSignature:qo,input:Oo,number:ko,organizationSelection:jo,radio:Uo,richText:No,score:Wo,searchNumberRange:Ho,select:To,selectMultiple:zo,selectRelation:Ko,textarea:Jo,tree:Xo,vueFormItem:Go,vuePage:Qo,WPS:Zo,actionBar:Yo,advancedContainer:po,cardGroup:es,col:ts,dataView:us,grid:ns,gridLayoutContainer:as,gridRow:is,listView:rs,page:ls,position:os,positioningContainer:ss,row:cs,subtableColumn:ds,subtableRow:hs,tab:fs,tabPane:ms,toolbox:vs,batchSubmissionListButton:Es,exportRecordListButton:Bs,listViewSelect:Cs,referenceList:ys,optionOne:Fs,optionTwo:gs,optionThird:As},bs="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ss="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ws="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$s="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rs="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Is="{caption}\u5FC5\u9808",Ms="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ls="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_s="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Vs="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xs="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ps="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qs="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Os="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ks="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",js="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Us="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Ns="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ws="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Hs="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ts="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zs="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ks="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Js="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Xs="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Gs="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Qs="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Zs="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Ys="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ps="\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",ec="\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",tc="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",uc="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",nc="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ac="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ic="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",rc="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",lc="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",oc="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",cc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",dc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",hc="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",fc="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",vc="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ec="please select control",Bc="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Cc="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",yc="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fc="\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",gc="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ac="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Dc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",bc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Sc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",wc="\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",$c="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Rc="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ic="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Mc="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Lc="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",_c="\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",Vc="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",xc="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Pc="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qc="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Oc="\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",kc="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",jc="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Uc="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Nc="\u6279\u91CF\u5220\u9664",Wc="\u6279\u91CF\u6253\u5370",Hc="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Tc="\u6309\u94AE",zc="\u521B\u5EFA\u5355\u636E",Kc="\u4EEA\u8868\u76D8",Jc="\u5206\u5272\u7EBF",Xc="\u5BFC\u51FA",Gc="\u8868\u5355\u64CD\u4F5C",Qc="\u5BFC\u5165",Zc="\u53D1\u7968\u8BC6\u522B",Yc="\u94FE\u63A5",pc="\u5217\u8868\u9009\u62E9",e0="\u5217\u8868\u89C6\u56FE",t0="\u64CD\u4F5C\u6309\u94AE",u0="\u5206\u9875",n0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",a0="\u8BF4\u660E\u6587\u5B57",i0="\u6587\u5B57\u8BC6\u522B",r0="\u6807\u9898\u7EC4\u4EF6",l0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",o0="\u6570\u7EC4",s0="\u81EA\u52A8\u7F16\u53F7",c0="\u81EA\u5B9A\u4E49",d0="\u6570\u503C",h0="\u90E8\u95E8",f0="\u4EBA\u5458",m0="\u9644\u4EF6",v0="\u56FE\u7247",E0="\u5730\u5740",B0="\u64CD\u4F5C",C0="\u5E8F\u53F7",y0="\u4EBA\u5458",F0="\u957F\u6587\u672C",g0="\u65E5\u671F\u533A\u95F4",A0="\u65E5\u671F",D0="\u77ED\u6587\u672C",b0="\u6362\u884C\u5BB9\u5668Wrap",S0="\u8868\u683C",w0="\u660E\u7EC6\u5B50\u8868",$0="\u5730\u5740",R0="\u91D1\u989D",I0="\u8BA1\u7B97\u516C\u5F0F",M0="\u591A\u9009",L0="\u7535\u5B50\u7B7E\u7AE0",_0="\u5355\u884C\u6587\u672C",V0="\u6570\u5B57",x0="\u4E1A\u52A1\u7EC4\u7EC7",P0="\u5355\u9009",q0="\u5BCC\u6587\u672C",O0="\u8BC4\u5206",k0="\u6570\u5B57\u533A\u95F4",j0="\u4E0B\u62C9\u5355\u9009",U0="\u4E0B\u62C9\u591A\u9009",N0="\u5173\u8054\u5355\u9009",W0="\u591A\u884C\u6587\u672C",H0="\u6811",T0="Vue\u5BB9\u5668",z0="Vue\u9875\u9762",K0="\u5728\u7EBF\u6587\u6863",J0="\u6309\u94AE\u64CD\u4F5C\u680F",X0="\u9AD8\u7EA7\u5BB9\u5668",G0="\u5206\u7EC4",Q0="\u6805\u683C\u5217",Z0="\u6570\u636E\u5BB9\u5668",Y0="\u753B\u5E03",p0="\u6362\u884C\u5BB9\u5668",ed="\u6805\u683C\u7B49\u5206\u884C",td="\u5217\u8868\u5BB9\u5668",ud="\u81EA\u7531\u9875\u9762",nd="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ad="\u5B9A\u4F4D\u5BB9\u5668",id="\u6805\u683C\u5E03\u5C40",rd="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ld="\u660E\u7EC6\u5B50\u8868\u884C",od="\u6807\u7B7E\u9875",sd="\u6807\u7B7E\u5355\u5143",cd="\u5DE5\u5177\u680F",dd="\u6279\u91CF\u63D0\u4EA4",hd="\u5BFC\u51FA\u8BB0\u5F55",fd="\u5217\u8868\u89C6\u56FE",md="\u5F15\u7528\u5217\u8868",vd="\u9009\u9879\u4E00",Ed="\u9009\u9879\u4E8C",Bd="\u9009\u9879\u4E09",Cd={isNotNumber:bs,isNotString:Ss,isNotObject:ws,isNotArray:$s,isNotBoolean:Rs,runtimeRequired:Is,pleaseEnterCaption:Ms,pleaseEnterCaptionTip:Ls,pleaseEnterRowCaption:_s,pleaseEnterPlaceholder:Vs,pleaseEnterFieldCode:xs,pleaseEnterForm:Ps,pleaseEnterList:qs,pleaseEnterProcess:Os,pleaseEnterLabel:ks,pleaseEnterValue:js,bizKeyNotBindFiled:Us,pleaseSelectOneField:Ns,pleaseEnterNumberRange:Ws,pleaseEnterAValueGreaterThanMin:Hs,pleaseEnterAValueLessThanMax:Ts,numberRangeSetError:zs,stringRangeError:Ks,attachmentMaxSize:Js,pleaseEnterTotalScoreSetting:Xs,theTotalScoreMustNotBeLessThan1:Gs,scoreDefaultValueRange:Qs,attachmentLimitError:Zs,PleaseReselectTheOptionalQuantity:Ys,TheMaximumLengthIsGreaterThanTheMinimumLength:ps,TheMinimumLengthIsGreaterThanTheMaximumLength:ec,PleaseSelectTheCorrectOptionSettings:tc,optionIdIsRepeat:uc,optionIsRequired:nc,pleaseEnterDataCode:ac,pleaseEnterValueFieldCode:ic,pleaseEnterSvcCode:rc,pleaseBindAtLeastOneDisplayValue:lc,pleaseSelectProvince:oc,pleaseSelectCity:sc,pleaseSelectDistrict:cc,limitRowsCannotBeLessThan0:dc,TheNumberOfRowsCannotBeLessThanMinRows:hc,pleaseEnterColumnWidth:fc,pleaseSetTheLogicalRelationshipOfAllRuleConditions:mc,pleaseCompleteAllRulesAndConditions:vc,pleaseSelectControl:Ec,pleaseSelectDashboard:Bc,theViewNameCannotBeEmpty:Cc,pleaseSelectOcrType:yc,pleaseSelectAtLeastOneFieldToFillIn:Fc,pleaseChooseAtLeastOne:gc,pleaseEnterButtonContent:Ac,pleaseEnterDataCodeInDataSetting:Dc,pleaseEnterValueFieldCodeInDataSetting:bc,pleaseEnterSvcCodeInDataSetting:Sc,pleaseBindAtLeastOneDisplayValueInDataSetting:wc,rootNodeIsRequiredInDataSetting:$c,pleaseEnterMaxHeight:Rc,pleaseEnter:Ic,pleaseEnterWatermark:Mc,pleaseEnterFileName:Lc,pleaseUploadAtLeastOnePrintTemplate:_c,pleaseAssignBusiness:Vc,pleaseAssignExternal:xc,pleaseEnterAliasCode:Pc,pleaseSelectDataCode:qc,pleaseSelectSvcCode:Oc,pleaseSelectJoinFieldCode:kc,pleaseSelectMainFieldCode:jc,pleaseSelectSortFieldCode:Uc,batchDeleteButton:Nc,batchPrintListButton:Wc,batchPrintRecordList:Hc,button:Tc,createFormListButton:zc,dashboard:Kc,divider:Jc,exportListButton:Xc,formSelectButton:Gc,importRecordListButton:Qc,invoiceCheckButton:Zc,link:Yc,listSelectButton:pc,ListViewSelect:e0,operationButton:t0,pagination:u0,submissionRecordListButton:n0,text:a0,textOcrButton:i0,title:r0,approvalStatusColumn:l0,array:o0,autoNumber:s0,custom:c0,decimal:d0,department:h0,employee:f0,file:m0,image:v0,location:E0,operation:B0,order:C0,people:y0,long:F0,timescope:g0,timestamp:A0,varchar:D0,gridLayoutWrap:b0,gridTable:S0,subTable:w0,address:$0,amount:R0,calc:I0,checkBox:M0,electronicSignature:L0,input:_0,number:V0,organizationSelection:x0,radio:P0,richText:q0,score:O0,searchNumberRange:k0,select:j0,selectMultiple:U0,selectRelation:N0,textarea:W0,tree:H0,vueFormItem:T0,vuePage:z0,WPS:K0,actionBar:J0,advancedContainer:X0,cardGroup:G0,col:Q0,dataView:Z0,grid:Y0,gridLayoutContainer:p0,gridRow:ed,listView:td,page:ud,position:nd,positioningContainer:ad,row:id,subtableColumn:rd,subtableRow:ld,tab:od,tabPane:sd,toolbox:cd,batchSubmissionListButton:dd,exportRecordListButton:hd,listViewSelect:fd,referenceList:md,optionOne:vd,optionTwo:Ed,optionThird:Bd},Se={zhCN:$r,enUS:Ds,jaJP:Cd},ct;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(ct||(ct={}));var dt;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(dt||(dt={}));var we,yd=(we=window.localStorage.getItem("locale"))!==null&&we!==void 0?we:"zh-CN",T;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(T||(T={}));var ht;(function(t){t[t.FORM=0]="FORM",t[t.LIST=1]="LIST",t[t.REPORT=2]="REPORT",t[t.DASHBOARD=3]="DASHBOARD",t[t.VUE=4]="VUE",t[t.FREE_PAGE=5]="FREE_PAGE"})(ht||(ht={}));var ft;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.OPERATION_BUTTON="operation-button",t.EMPLOYEE_COLUMN="employee-column",t.Approval_Status_Column="approval-status-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.GRID_LAYOUT_CONTAINER="grid-layout-container",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.ACTION_BAR="action-bar",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2",t.GRID_LAYOUT_WRAP="grid-layout-wrap",t.VUE_PAGE="vue-page",t.REFERENCE_LIST="reference-list"})(ft||(ft={}));var mt;(function(t){t.SAVE="save",t.DRAFT="draft",t.UNSUBMIT="unsubmit",t.AUDIT="audit",t.UNAUDIT="unaudit",t.CANCEL="cancel",t.FORM_SUBMIT="form_submit"})(mt||(mt={}));var Z;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.LIST="list",t.JSON="json",t.ANY="ANY"})(Z||(Z={}));var vt;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATEHOUR="datehour",t.DATEMIN="datemin",t.DATETIME="datetime"})(vt||(vt={}));var Et="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Fd=Et+"0123456789";function j(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",u=0;u<t;u++){var n=u===0?Et:Fd,a=Math.random()*n.length;e+=n[parseInt(String(a),10)]}return e}function $e(t,e){(e==null||e>t.length)&&(e=t.length);for(var u=0,n=new Array(e);u<e;u++)n[u]=t[u];return n}function gd(t){if(Array.isArray(t))return $e(t)}function Ad(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Bt(t,e,u){return e=Y(e),wd(t,Ie()?Reflect.construct(e,u||[],Y(t).constructor):e.apply(t,u))}function Ct(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function se(t,e,u){return Ie()?se=Reflect.construct:se=function(a,r,i){var l=[null];l.push.apply(l,r);var h=Function.bind.apply(a,l),c=new h;return i&&p(c,i.prototype),c},se.apply(null,arguments)}function Y(t){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(u){return u.__proto__||Object.getPrototypeOf(u)},Y(t)}function yt(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&p(t,e)}function Dd(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function bd(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Sd(){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 wd(t,e){return e&&($d(e)==="object"||typeof e=="function")?e:Ad(t)}function p(t,e){return p=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},p(t,e)}function Ft(t){return gd(t)||bd(t)||Rd(t)||Sd()}function $d(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function Rd(t,e){if(!!t){if(typeof t=="string")return $e(t,e);var u=Object.prototype.toString.call(t).slice(8,-1);if(u==="Object"&&t.constructor&&(u=t.constructor.name),u==="Map"||u==="Set")return Array.from(u);if(u==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(u))return $e(t,e)}}function Re(t){var e=typeof Map=="function"?new Map:void 0;return Re=function(n){if(n===null||!Dd(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,a)}function a(){return se(n,arguments,Y(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),p(a,n)},Re(t)}function Ie(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(Ie=function(){return!!t})()}var Me=console;function Le(){for(var t=arguments.length,e=new Array(t),u=0;u<t;u++)e[u]=arguments[u];var n,a=e.slice(1);(n=Me).warn.apply(n,["\u{1F9D0} Driven Warning:"+e[0]].concat(Ft(a)))}function gt(){for(var t=arguments.length,e=new Array(t),u=0;u<t;u++)e[u]=arguments[u];var n,a=e.slice(1);(n=Me).log.apply(n,["\u{1F680} Driven Log:"+e[0]].concat(Ft(a)))}function Id(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var _e=function(t){yt(e,t);function e(u){Ct(this,e);var n;return n=Bt(this,e,[u]),n.name="\u{1F4A5} Driven Error",n.message=u?Id(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",n}return e}(Re(Error)),Md=function(t){yt(e,t);function e(u){Ct(this,e);var n;return n=Bt(this,e,[u]),n.name="\u{1F6A8} Driven Reference Error",n}return e}(_e);function Ve(t){throw new _e(t)}function At(t){throw new Md(t)}function Ld(t){Me.error(new _e(t))}const C=(t,e,u)=>{if(!t)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const n=t.split(".");let a;const r=(window.baitedaWorkers||{}).languageMessages||{};n.forEach((l,h)=>{h===0?a=r[l]:a&&(a=a[l])});let i="";return a&&(i=a),e&&Object.keys(e).forEach(l=>{const h=e[l];i=i.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),h)}),i||(u?i=u:i=t),i};function _d(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Dt(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function Vd(t,e,u){return e&&Dt(t.prototype,e),u&&Dt(t,u),t}function xd(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var bt=function(){function t(){_d(this,t)}return Vd(t,null,[{key:"getMessage",value:function(u){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a;return C("CMD."+u,n,Se==null||(a=Se[yd.split("-").join("")])===null||a===void 0?void 0:a[u])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(u,n){}}]),t}();xd(bt,"$i18n",bt.resetI18n());function Pd(t,e,u){var n=e.replace(/\[(\d)]/g,function(r,i){return"."+i}).split("."),a=!1;return n.reduce(function(r,i,l,h){var c=r;if(!!r){if(!Object.prototype.hasOwnProperty.call(r,i)){Le("Can not set ".concat(e,"'s ").concat(i," property in current %o, Because there is no ").concat(i," property on the %o"),r,r);return}return l===h.length-1&&!Object.is(c[i],u)&&(c[i]=u,a=!0),c[i]}},t),a}var qd=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Od={exports:{}};(function(t){(function(e){var u=function(s,m,y){if(!c(m)||B(m)||D(m)||b(m)||h(m))return m;var S,w=0,V=0;if(v(m))for(S=[],V=m.length;w<V;w++)S.push(u(s,m[w],y));else{S={};for(var A in m)Object.prototype.hasOwnProperty.call(m,A)&&(S[s(A,y)]=u(s,m[A],y))}return S},n=function(s,m){m=m||{};var y=m.separator||"_",S=m.split||/(?=[A-Z])/;return s.split(S).join(y)},a=function(s){return F(s)?s:(s=s.replace(/[\-_\s]+(.)?/g,function(m,y){return y?y.toUpperCase():""}),s.substr(0,1).toLowerCase()+s.substr(1))},r=function(s){var m=a(s);return m.substr(0,1).toUpperCase()+m.substr(1)},i=function(s,m){return n(s,m).toLowerCase()},l=Object.prototype.toString,h=function(s){return typeof s=="function"},c=function(s){return s===Object(s)},v=function(s){return l.call(s)=="[object Array]"},B=function(s){return l.call(s)=="[object Date]"},D=function(s){return l.call(s)=="[object RegExp]"},b=function(s){return l.call(s)=="[object Boolean]"},F=function(s){return s=s-0,s===s},f=function(s,m){var y=m&&"process"in m?m.process:m;return typeof y!="function"?s:function(S,w){return y(S,s,w)}},g={camelize:a,decamelize:i,pascalize:r,depascalize:i,camelizeKeys:function(s,m){return u(f(a,m),s)},decamelizeKeys:function(s,m){return u(f(i,m),s,m)},pascalizeKeys:function(s,m){return u(f(r,m),s)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=g:e.humps=g})(qd)})(Od);var St={};Object.defineProperty(St,"__esModule",{value:!0});function xe(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:xe(e));{const e={};for(const u in t){const n=t[u];e[u]=typeof n!="object"||n===null?n:xe(n)}return e}}var kd=St.default=xe;function jd(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function q(t){if(t!==void 0)return(typeof t=="undefined"?"undefined":jd(t))==="object"?kd(t):t}function Ud(t){return Object.prototype.toString.call(t)==="[object Object]"}function Nd(t){return Array.isArray(t)}function Wd(t){return t.reduce(function(e,u){return e.includes(u)||e.push(u),e},[])}function Pe(t,e){(e==null||e>t.length)&&(e=t.length);for(var u=0,n=new Array(e);u<e;u++)n[u]=t[u];return n}function Hd(t){if(Array.isArray(t))return Pe(t)}function wt(t,e,u,n,a,r,i){try{var l=t[r](i),h=l.value}catch(c){u(c);return}l.done?e(h):Promise.resolve(h).then(n,a)}function Td(t){return function(){var e=this,u=arguments;return new Promise(function(n,a){var r=t.apply(e,u);function i(h){wt(r,n,a,i,l,"next",h)}function l(h){wt(r,n,a,i,l,"throw",h)}i(void 0)})}}function zd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function $t(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function Kd(t,e,u){return e&&$t(t.prototype,e),u&&$t(t,u),t}function Rt(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}function Jd(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Xd(){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 qe(t){return Hd(t)||Jd(t)||Gd(t)||Xd()}function Gd(t,e){if(!!t){if(typeof t=="string")return Pe(t,e);var u=Object.prototype.toString.call(t).slice(8,-1);if(u==="Object"&&t.constructor&&(u=t.constructor.name),u==="Map"||u==="Set")return Array.from(u);if(u==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(u))return Pe(t,e)}}function Qd(t,e){var u,n,a,r,i={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]};return r={next:l(0),throw:l(1),return:l(2)},typeof Symbol=="function"&&(r[Symbol.iterator]=function(){return this}),r;function l(c){return function(v){return h([c,v])}}function h(c){if(u)throw new TypeError("Generator is already executing.");for(;i;)try{if(u=1,n&&(a=c[0]&2?n.return:c[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,c[1])).done)return a;switch(n=0,a&&(c=[c[0]&2,a.value]),c[0]){case 0:case 1:a=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,n=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(a=i.trys,!(a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){i.label=c[1];break}if(c[0]===6&&i.label<a[1]){i.label=a[1],a=c;break}if(a&&i.label<a[2]){i.label=a[2],i.ops.push(c);break}a[2]&&i.ops.pop(),i.trys.pop();continue}c=e.call(t,i)}catch(v){c=[6,v],n=0}finally{u=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}var Zd=function(){function t(){zd(this,t),Rt(this,"_events",new Map),Rt(this,"debug",!1)}return Kd(t,[{key:"emit",value:function(u){for(var n=arguments.length,a=new Array(n>1?n-1:0),r=1;r<n;r++)a[r-1]=arguments[r];var i=this;return Td(function(){var l,h,c,v,B,D,b,F,f,g,s,m;return Qd(this,function(y){switch(y.label){case 0:if(l=i._events.get(u),h=[],!l)return[3,10];c=l.slice(),v=!0,B=!1,D=void 0,y.label=1;case 1:y.trys.push([1,8,9,10]),b=c[Symbol.iterator](),y.label=2;case 2:if(v=(F=b.next()).done)return[3,7];if(f=F.value,!l.includes(f))return[3,6];y.label=3;case 3:return y.trys.push([3,5,,6]),i.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(qe(a))),[4,f.apply(null,qe(a))];case 4:return g=y.sent(),i.debug&>.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(qe(a),[g])),h.push(g),g===!1?[3,7]:[3,6];case 5:return s=y.sent(),Ld(String(s)+":"+String(s.stack)),[3,6];case 6:return v=!0,[3,2];case 7:return[3,10];case 8:return m=y.sent(),B=!0,D=m,[3,10];case 9:try{!v&&b.return!=null&&b.return()}finally{if(B)throw D}return[7];case 10:return[2,h]}})})()}},{key:"on",value:function(u,n){if(this._events.has(u)){var a;(a=this._events.get(u))===null||a===void 0||a.push(n)}else this._events.set(u,[n])}},{key:"off",value:function(u,n){if(this._events.has(u)){var a=this._events.get(u),r=a==null?void 0:a.indexOf(n);a==null||a.splice(r,1)}}},{key:"delete",value:function(u){this._events.has(u)&&this._events.delete(u)}},{key:"clear",value:function(){this._events=new Map}}]),t}();function Yd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function It(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function pd(t,e,u){return e&&It(t.prototype,e),u&&It(t,u),t}function e5(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var t5=[{key:"on_click",name:C("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:C("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:C("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:C("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:C("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:C("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:C("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:C("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:C("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:C("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:C("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:C("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:C("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:C("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:C("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:C("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:C("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:C("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:C("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:C("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:C("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:C("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:C("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"},{key:"on_option_selected",name:C("CMD.optionSelected",null,"DOM\u70B9\u51FBoption\u4E8B\u4EF6"),code:"option_selected"}],u5=function(){function t(){Yd(this,t)}return pd(t,null,[{key:"getEventsFromKeys",value:function(u){var n=typeof u=="string"?[u]:u;return t.events.filter(function(a){return n.includes(a.key)})}},{key:"getEventsFromControl",value:function(u){var n=[],a=u.eventKeys;n=n.concat(t.events.filter(function(i){return a.includes(i.key)}));var r=u.customEvents.map(function(i){var l=i.key;return i.namespace!==void 0&&i.namespace!==null&&i.namespace!==""&&(l=i.namespace+":"+i.key),{key:l,code:i.key,name:i.name}});return n=n.concat(r),n}}]),t}();e5(u5,"events",t5);function ce(t,e){var u;(u=Object.getOwnPropertyDescriptors(t)[e])!=null&&u.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function Oe(t,e,u){u!=="Runtime"&&(t.parent=e,ce(t,"parent"))}function Mt(t,e,u){t.forEach(n=>{Oe(n,e,u)})}const Lt=Symbol("targetKey");function _t(t){var e;return(e=t[Lt])!=null?e:t}function Vt(t,e,u){return Mt(t,e,u),new Proxy(t,{get(n,a,...r){return a===Lt?n:Reflect.get(n,a,...r)},set(n,a,r,...i){if(Nd(t)&&a==="length"&&r===t.length)return!0;const l=Reflect.set(n,a,r,...i);return Ud(r)&&Oe(r,e,u),l}})}function U(t,e,u,n,a){const r=n!=null?n:t;let i=Vt(_t(u!=null?u:[]),r,a);Object.defineProperty(t,e,{get(){return i},set(l){i=Vt(_t(l),r,a)},enumerable:!0})}const xt=[],ke=class{constructor(t){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=t,this._initControls(t)}static staticGetRules(t,e){const u=ke.staticControlsRuntimeRules.get(t);let n=[];if(u){const a=new u(e);n=Array.from(a)}return n}registerControlConfig(t,e){return this.controlConfigMap.set(t,e),this}getControlConfig(t){return this.controlConfigMap.get(t)}static register(t,e){const{Designer:u,Runtime:n,Property:a}=t;(!u||!n||!u.__is_control__||!n.__is_control__)&&Ve(`${t} is can't register as a Control`);const r=this.staticControls.findIndex(i=>i.Designer.controlType===u.controlType);return r>-1&&(Le(`The ${u.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(r,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(t),a.mode=e,this}getControls(){return this._controls}register(t){t.__is_control__||Ve(`${t.name} is not a Control`);const e=this._controls.findIndex(u=>u.controlType===t.controlType);return e>-1&&(Le(`The ${t.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(e,1)),this.registeredControlTypes.add(t.controlType),this._controls.push(t),this}isLayoutControl(t){return t.controlType===T.LAYOUT}isFormControl(t){return t.controlType===T.FORM}isListControl(t){return t.controlType===T.LIST}isColumnControl(t){return t.controlType===T.COLUMN}createControl(t,e){if(Array.isArray(t))return t.map(n=>this.createControl(n,e));if(t.children&&(t.children=t.children.map(n=>this.createControl(n,e))),this.isListControl(t)){const n=t.props;n.headers&&(n.headers=n.headers.map(a=>this.createControl(a,e)))}const u=this.getControlFormType(t.type);if(u){let n=t;if(typeof e=="function"){const r=e(n);r&&(n=r)}let a;return u.mode==="Runtime"?(a=n,a.fieldType=u.controlFieldType,this._setParentPrototypeToSchema(a,this)):a=new u(n),a}else Ve(`The constructor of ${t.type} could not be found, please confirm that the constructor has been registered`)}resetInstanceParent(t,e){delete t.parent,Object.defineProperty(t,"parent",{configurable:!0,get(){return e}}),ce(t,"parent")}_setParentPrototypeToSchema(t,e){e._type==="Runtime"&&(Object.defineProperty(t,"parent",{configurable:!0,get(){const u=t.id,n=e._controlParentIdMap,a=e.instanceMap;if(!n||!a)return;const r=n[u],i=a[u];if(!r&&!i)return;const l=i.findIndex(v=>v==t),h=a[r]||[];let c;return h.length!==i.length?c=h[0]:c=h[l],c}}),ce(t,"parent"))}createControlInstance(t,e){const u=this.getControlFormType(t);if(u)return new u(e)}getControlFormType(t){return this._controls.find(e=>e.controlType===t)}_initControls(t){this.constructor.staticControls.forEach(e=>{this.register(e[t]),ke.staticControlsRuntimeRules.set(e.Runtime.controlType,e.Property.RuntimeRules),e.Property.mode=t})}};let ee=ke;ee.staticControlsRuntimeRules=new Map,ee.staticControls=xt,ee.staticRegisteredTypes=new Set(xt.map(t=>t.Designer.controlType)),ee.staticRegisteredConfigs=new Map;class L{constructor(e){var u,n,a;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.aliasCode=e==null?void 0:e.aliasCode}}class je{constructor(e){var u,n;this.minWidth=(u=e==null?void 0:e.minWidth)!=null?u:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(n=e==null?void 0:e.flex)!=null?n:1}}class Ue{constructor(e){var u,n,a,r;this.rowHeightType=(u=e==null?void 0:e.rowHeightType)!=null?u:"fixed",this.minRows=(n=e==null?void 0:e.minRows)!=null?n:4,this.maxRows=(a=e==null?void 0:e.maxRows)!=null?a:20,this.fiexdRow=(r=e==null?void 0:e.fiexdRow)!=null?r:4}}class n5{constructor(e){this.pc=new Ue(e==null?void 0:e.pc),this.mobile=new Ue(e==null?void 0:e.mobile)}}class de extends je{constructor(e){var u,n;super(e),this.width=(u=e==null?void 0:e.width)!=null?u:240,this.widthType=(n=e==null?void 0:e.widthType)!=null?n:"auto"}}class a5{constructor(e){this.pc=new de(e==null?void 0:e.pc),this.mobile=e!=null&&e.mobile?new de(e==null?void 0:e.mobile):new de({width:130,minWidth:180})}}class i5{constructor(e){var u,n;this.type=(u=e==null?void 0:e.type)!=null?u:"firstThree",this.customOptions=(n=e==null?void 0:e.customOptions)!=null?n:[]}}class he{constructor(e){var u,n,a;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.formKey=(n=e==null?void 0:e.formKey)!=null?n:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class r5 extends he{constructor(e){var u;super(e),this.primaryControlId=(u=e==null?void 0:e.primaryControlId)!=null?u:""}}class Pt{constructor(e){var u,n;this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:""}}class l5{constructor(e){var u,n,a,r;this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.formKey=(n=e==null?void 0:e.formKey)!=null?n:"",this.headers=(r=(a=e==null?void 0:e.headers)==null?void 0:a.map(i=>new Pt(i)))!=null?r:[]}}class qt{constructor(e){var u,n,a;this.fieldName=(u=e==null?void 0:e.fieldName)!=null?u:"",this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:Z.VARCHAR}}class Ot extends he{constructor(e){var u,n,a,r;super(e),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.svcCode=(n=e==null?void 0:e.svcCode)!=null?n:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(r=e==null?void 0:e.filters)!=null?r:[]}}class o5{constructor(e){var u,n,a,r;this.type="sublist-page",this.formBind=new he(e==null?void 0:e.formBind),this.displayFields=(n=(u=e==null?void 0:e.displayFields)==null?void 0:u.map(i=>new qt(i)))!=null?n:[],this.sublists=(r=(a=e==null?void 0:e.sublists)==null?void 0:a.map(i=>new Ot(i)))!=null?r:[]}}class kt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value,this.dataCode=e==null?void 0:e.dataCode}}class fe{constructor(e){var u,n,a;this.type=(u=e==null?void 0:e.type)!=null?u:"custom",this.value=(n=e==null?void 0:e.value)!=null?n:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class z{constructor(e){var u,n,a,r;this.type="conditions",this.id=(u=e==null?void 0:e.id)!=null?u:j(),this.ruleId=(n=e==null?void 0:e.ruleId)!=null?n:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(r=e==null?void 0:e.value)!=null?r:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(i=>{var l,h;if(i.children!==void 0){const c=new z(i);(l=this.children)==null||l.push(c)}else{const c=new te(i);(h=this.children)==null||h.push(c)}}))}}class te{constructor(e){var u,n,a,r,i;this.type="condition",this.id=(u=e==null?void 0:e.id)!=null?u:j(),this.ruleId=(n=e==null?void 0:e.ruleId)!=null?n:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(r=e==null?void 0:e.checked)!=null?r:!1,this.describe=(i=e==null?void 0:e.describe)!=null?i:"",this.leftVariableBo=new kt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new fe(e==null?void 0:e.rightVariableBo)}}class s5{constructor(e){var u,n;this.aliasCode=(u=e==null?void 0:e.aliasCode)!=null?u:"",this.datasourceBind=new me(e==null?void 0:e.datasourceBind),this.relationFields=(n=e==null?void 0:e.relationFields)!=null?n:[]}}class jt{constructor(e){var u,n,a,r;this.controlId=(u=e==null?void 0:e.controlId)!=null?u:"",this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(r=e==null?void 0:e.propName)!=null?r:""}}class Ne{constructor(e){var u,n;this.type=(u=e==null?void 0:e.type)!=null?u:"FIELD",this.value=(n=e==null?void 0:e.value)!=null?n:"",this.fieldType=e==null?void 0:e.fieldType}}class c5{constructor(e){var u,n;this.title=(u=e==null?void 0:e.title)!=null?u:"",this.displayBoList=(n=e==null?void 0:e.displayBoList)!=null?n:[]}}class We{constructor(e){var u,n;this.columnName=(u=e.columnName)!=null?u:"",this.desc=(n=e.desc)!=null?n:!1}}class Ut{constructor(e){var u,n,a;this.code=(u=e.code)!=null?u:"",this.value=(n=e.value)!=null?n:"",this.field_type=(a=e.field_type)!=null?a:Z.ANY}}class d5{constructor(e){var u,n,a,r,i,l,h;this.id=(u=e.id)!=null?u:"",this.limit=(n=e.limit)!=null?n:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(i=(r=e.orders)==null?void 0:r.map(c=>new We(c)))!=null?i:[],this.dataSet=(h=(l=e.dataSet)==null?void 0:l.map(c=>new Ut(c)))!=null?h:[]}}function He(t){var e,u,n,a,r,i;this.filters=(u=(e=t==null?void 0:t.filters)==null?void 0:e.map(l=>l.children!==void 0?new z(l):new te(l)))!=null?u:[],this.viewFilters=(a=(n=t==null?void 0:t.viewFilters)==null?void 0:n.map(l=>l.children!==void 0?new z(l):new te(l)))!=null?a:[],this.orders=(i=(r=t==null?void 0:t.orders)==null?void 0:r.map(l=>new We(l)))!=null?i:[]}class me{constructor(e){var u,n,a,r,i,l,h,c;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(r=e==null?void 0:e.isOpenViewFilters)!=null?r:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(v=>{var B;(B=this.displayBoList)==null||B.push(new Ne(v))})),this.keywordMapping=(i=e==null?void 0:e.keywordMapping)!=null?i:"",this.showOrder=(l=e==null?void 0:e.showOrder)!=null?l:!0,this.svcCode=(h=e==null?void 0:e.svcCode)!=null?h:"",this.assignDepartment=new fe(e==null?void 0:e.assignDepartment),this.openAssignDepartment=(c=e==null?void 0:e.openAssignDepartment)!=null?c:!1,He.call(this,e)}}class h5{constructor(e){var u,n;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.displayBoList=(n=e==null?void 0:e.displayBoList)!=null?n:[]}}class f5{constructor(e){var u,n,a,r,i,l,h,c,v,B;this.code=(u=e==null?void 0:e.code)!=null?u:"view",this.color=(n=e==null?void 0:e.color)!=null?n:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(r=e==null?void 0:e.confirmMessage)!=null?r:void 0,this.defaultState=(i=e==null?void 0:e.defaultState)!=null?i:"default",this.formKey=(l=e==null?void 0:e.formKey)!=null?l:void 0,this.formType=e==null?void 0:e.formType,this.icon=(h=e==null?void 0:e.icon)!=null?h:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(v=e==null?void 0:e.openType)!=null?v:"modal",this.priorityProcess=(B=e==null?void 0:e.priorityProcess)!=null?B:!0}}class Te{constructor(e){var u,n,a,r;this.name=(u=e==null?void 0:e.name)!=null?u:"",this.key=(n=e==null?void 0:e.key)!=null?n:"",this.value=(r=(a=e==null?void 0:e.value)==null?void 0:a.map(i=>new Ne(i)))!=null?r:[]}}class Nt extends me{constructor(e){var u,n;super(e),this.attributes=(n=(u=e==null?void 0:e.attributes)==null?void 0:u.map(a=>new Te(a)))!=null?n:[]}}class m5 extends me{constructor(e){var u,n,a;super(e),this.attributes=(n=(u=e==null?void 0:e.attributes)==null?void 0:u.map(r=>new Te(r)))!=null?n:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class v5 extends Nt{constructor(e){var u;super(e),this.rootNode=new fe(e==null?void 0:e.rootNode),this.filterCode=(u=e==null?void 0:e.filterCode)!=null?u:""}}class Wt{constructor(e){var u,n,a,r;this.dataCode=(u=e==null?void 0:e.dataCode)!=null?u:"",this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.fillList=(r=(a=e==null?void 0:e.fillList)==null?void 0:a.map(i=>new jt(i)))!=null?r:[]}}class E5 extends Wt{constructor(e){super(e),He.call(this,e)}}class B5 extends Wt{constructor(e){var u,n;super(e),this.mode=(u=e==null?void 0:e.mode)!=null?u:"current",this.multiple=(n=e==null?void 0:e.multiple)!=null?n:!1}}class C5{constructor(e){var u,n,a;this.zh=(u=e==null?void 0:e.zh)!=null?u:"",this.en=(n=e==null?void 0:e.en)!=null?n:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class y5{constructor(e){var u,n,a;this.stencilName=(u=e==null?void 0:e.stencilName)!=null?u:"",this.expression=(n=e==null?void 0:e.expression)!=null?n:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class ve{constructor(e){var u,n,a;this.id=(u=e==null?void 0:e.id)!=null?u:j(8),this.label=(n=e==null?void 0:e.label)!=null?n:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Ht extends ve{constructor(e){var u,n;super(e),this.image=(u=e==null?void 0:e.image)!=null?u:"",this.type=(n=e==null?void 0:e.type)!=null?n:"src"}}class Tt extends ve{constructor(e){var u,n;super(e),this.cueWord=(u=e==null?void 0:e.cueWord)!=null?u:"",this.checked=(n=e==null?void 0:e.checked)!=null?n:!1}}function F5(t){var e;return(e=t==null?void 0:t.map(u=>new ve(u)))!=null?e:[]}function g5(t){var e;return(e=t==null?void 0:t.map(u=>new Ht(u)))!=null?e:[]}function A5(t){var e;return(e=t==null?void 0:t.map(u=>new Tt(u)))!=null?e:[]}class Ee{}class D5 extends Ee{constructor(e){super(),this.amount=new L(e==null?void 0:e.amount),this.currency=new L(e==null?void 0:e.currency)}}class b5{constructor(e){var u,n;this.amount=(u=e==null?void 0:e.amount)!=null?u:"",this.currency=(n=e==null?void 0:e.currency)!=null?n:ze.CNY}}class S5 extends Ee{constructor(e){super(),this.min=new L(e==null?void 0:e.min),this.max=new L(e==null?void 0:e.max)}}class w5{constructor(e){var u,n;this.min=(u=e==null?void 0:e.min)!=null?u:"",this.max=(n=e==null?void 0:e.max)!=null?n:""}}class $5{constructor(e){var u,n,a,r,i,l;this.city=(u=e==null?void 0:e.city)!=null?u:"",this.cityDisplay=(n=e==null?void 0:e.cityDisplay)!=null?n:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(r=e==null?void 0:e.districtDisplay)!=null?r:"",this.province=(i=e==null?void 0:e.province)!=null?i:"",this.provinceDisplay=(l=e==null?void 0:e.provinceDisplay)!=null?l:""}}class R5 extends Ee{constructor(e){super(),this.result=new L(e==null?void 0:e.result),this.unit=new L(e==null?void 0:e.unit)}}class I5{constructor(e){var u,n;this.result=(u=e==null?void 0:e.result)!=null?u:0,this.unit=(n=e==null?void 0:e.unit)!=null?n:""}}var ze=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(ze||{}),zt=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.IS_SHOW_WATERMARK="isShowWatermark",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t.IS_PASTE="isPaste",t.SORTABLE="sortable",t.IS_SHOW_SIMPLE_SEARCH="isShowSimpleSearch",t.IS_SHOW_TOOL_BAE="isShowToolbar",t.MAIN_DEPT_FLAG="mainDeptFlag",t))(zt||{}),Ke=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(Ke||{});class M5{constructor(e){var u,n,a,r,i,l;this.isShow=(u=e==null?void 0:e.isShow)!=null?u:!0,this.content=(n=e==null?void 0:e.content)!=null?n:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(r=e==null?void 0:e.openType)!=null?r:"modal",this.type=(i=e==null?void 0:e.type)!=null?i:"",this.priorityProcess=(l=e==null?void 0:e.priorityProcess)!=null?l:!1}}class L5{constructor(e){var u,n,a,r;this.id=(u=e==null?void 0:e.id)!=null?u:j(8),this.title=(n=e==null?void 0:e.title)!=null?n:"",this.headers=(r=(a=e==null?void 0:e.headers)==null?void 0:a.map(i=>new Pt(i)))!=null?r:[],He.call(this,e)}}class _5{constructor(e){var u,n;this.key=(u=e.key)!=null?u:j(8),this.caption=(n=e.caption)!=null?n:""}}class Kt{constructor(e){var u,n,a,r;this.width=(u=e==null?void 0:e.width)!=null?u:"",this.height=(n=e==null?void 0:e.height)!=null?n:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(r=e==null?void 0:e.heightConfig)!=null?r:"fill"}}class V5{constructor(e){var u,n;this.optCode=(u=e==null?void 0:e.optCode)!=null?u:"",this.optType=(n=e==null?void 0:e.optType)!=null?n:""}}class Jt{constructor(e){var u,n,a,r,i,l;this.id=(u=e==null?void 0:e.id)!=null?u:j(),this.name=(n=e==null?void 0:e.name)!=null?n:"",this.filters=(r=(a=e==null?void 0:e.filters)==null?void 0:a.map(h=>h.children!==void 0?new z(h):new te(h)))!=null?r:[],this.settings=(e==null?void 0:e.settings)&&Array.isArray(e==null?void 0:e.settings)?(l=(i=e==null?void 0:e.settings)==null?void 0:i.map(h=>new Xt(h)))!=null?l:[]:[],this.script=e==null?void 0:e.script}}class Xt{constructor(e){var u,n,a,r;this.type=(u=e.type)!=null?u:"background",this.fieldCodes=(n=e.fieldCodes)!=null?n:[],this.color=(a=e.color)!=null?a:"theme",this.scope=(r=e.scope)!=null?r:"row"}}class x5{constructor(e){var u,n,a,r;this.type=(u=e==null?void 0:e.type)!=null?u:"none",this.interval=(n=e==null?void 0:e.interval)!=null?n:{color:""},this.rules=(e==null?void 0:e.rules)&&Array.isArray(e==null?void 0:e.rules)?(r=(a=e==null?void 0:e.rules)==null?void 0:a.map(i=>new Jt(i)))!=null?r:[]:[]}}class Be{constructor(e){this.isHide={type:"boolean"}}}class Je extends Array{constructor(e){super()}}class O{constructor(e,u=""){var n,a;this.isHide=(n=e==null?void 0:e.isHide)!=null?n:!1,this.style=new Kt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:u}}O.Rules=Be,O.RuntimeRules=Je;function _(){return _=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var u=arguments[e];for(var n in u)Object.prototype.hasOwnProperty.call(u,n)&&(t[n]=u[n])}return t},_.apply(this,arguments)}function P5(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function Xe(t){return Xe=Object.setPrototypeOf?Object.getPrototypeOf:function(u){return u.__proto__||Object.getPrototypeOf(u)},Xe(t)}function Ce(t,e){return Ce=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},Ce(t,e)}function q5(){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(t){return!1}}function ye(t,e,u){return q5()?ye=Reflect.construct:ye=function(a,r,i){var l=[null];l.push.apply(l,r);var h=Function.bind.apply(a,l),c=new h;return i&&Ce(c,i.prototype),c},ye.apply(null,arguments)}function O5(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Ge(t){var e=typeof Map=="function"?new Map:void 0;return Ge=function(n){if(n===null||!O5(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,a)}function a(){return ye(n,arguments,Xe(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ce(a,n)},Ge(t)}var k5=/%[sdj%]/g,Gt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Gt=function(e,u){typeof console!="undefined"&&console.warn&&u.every(function(n){return typeof n=="string"})&&console.warn(e,u)});function Qe(t){if(!t||!t.length)return null;var e={};return t.forEach(function(u){var n=u.field;e[n]=e[n]||[],e[n].push(u)}),e}function M(){for(var t=arguments.length,e=new Array(t),u=0;u<t;u++)e[u]=arguments[u];var n=1,a=e[0],r=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var i=String(a).replace(k5,function(l){if(l==="%%")return"%";if(n>=r)return l;switch(l){case"%s":return String(e[n++]);case"%d":return Number(e[n++]);case"%j":try{return JSON.stringify(e[n++])}catch(h){return"[Circular]"}break;default:return l}});return i}return a}function j5(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function R(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||j5(e)&&typeof t=="string"&&!t)}function U5(t,e,u){var n=[],a=0,r=t.length;function i(l){n.push.apply(n,l),a++,a===r&&u(n)}t.forEach(function(l){e(l,i)})}function Qt(t,e,u){var n=0,a=t.length;function r(i){if(i&&i.length){u(i);return}var l=n;n=n+1,l<a?e(t[l],r):u([])}r([])}function N5(t){var e=[];return Object.keys(t).forEach(function(u){e.push.apply(e,t[u])}),e}var Zt=function(t){P5(e,t);function e(u,n){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=u,a.fields=n,a}return e}(Ge(Error));function W5(t,e,u,n){if(e.first){var a=new Promise(function(B,D){var b=function(g){return n(g),g.length?D(new Zt(g,Qe(g))):B()},F=N5(t);Qt(F,u,b)});return a.catch(function(B){return B}),a}var r=e.firstFields||[];r===!0&&(r=Object.keys(t));var i=Object.keys(t),l=i.length,h=0,c=[],v=new Promise(function(B,D){var b=function(f){if(c.push.apply(c,f),h++,h===l)return n(c),c.length?D(new Zt(c,Qe(c))):B()};i.length||(n(c),B()),i.forEach(function(F){var f=t[F];r.indexOf(F)!==-1?Qt(f,u,b):U5(f,u,b)})});return v.catch(function(B){return B}),v}function Yt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function pt(t,e){if(e){for(var u in e)if(e.hasOwnProperty(u)){var n=e[u];typeof n=="object"&&typeof t[u]=="object"?t[u]=_(_({},t[u]),n):t[u]=n}}return t}function eu(t,e,u,n,a,r){t.required&&(!u.hasOwnProperty(t.field)||R(e,r||t.type))&&n.push(M(a.messages.required,t.fullField))}function H5(t,e,u,n,a){(/^\s+$/.test(e)||e==="")&&n.push(M(a.messages.whitespace,t.fullField))}var Ze={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},ue={integer:function(e){return ue.number(e)&&parseInt(e,10)===e},float:function(e){return ue.number(e)&&!ue.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(u){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ue.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(Ze.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(Ze.url)},hex:function(e){return typeof e=="string"&&!!e.match(Ze.hex)}};function T5(t,e,u,n,a){if(t.required&&e===void 0){eu(t,e,u,n,a);return}var r=["integer","float","array","regexp","object","method","email","number","date","url","hex"],i=t.type;r.indexOf(i)>-1?ue[i](e)||n.push(M(a.messages.types[i],t.fullField,t.type)):i&&typeof e!==t.type&&n.push(M(a.messages.types[i],t.fullField,t.type))}function z5(t,e,u,n,a){var r=typeof t.len=="number",i=typeof t.min=="number",l=typeof t.max=="number",h=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,v=null,B=typeof e=="number",D=typeof e=="string",b=Array.isArray(e);if(B?v="number":D?v="string":b&&(v="array"),!v)return!1;b&&(c=e.length),D&&(c=e.replace(h,"_").length),r?c!==t.len&&n.push(M(a.messages[v].len,t.fullField,t.len)):i&&!l&&c<t.min?n.push(M(a.messages[v].min,t.fullField,t.min)):l&&!i&&c>t.max?n.push(M(a.messages[v].max,t.fullField,t.max)):i&&l&&(c<t.min||c>t.max)&&n.push(M(a.messages[v].range,t.fullField,t.min,t.max))}var K="enum";function K5(t,e,u,n,a){t[K]=Array.isArray(t[K])?t[K]:[],t[K].indexOf(e)===-1&&n.push(M(a.messages[K],t.fullField,t[K].join(", ")))}function J5(t,e,u,n,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||n.push(M(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var r=new RegExp(t.pattern);r.test(e)||n.push(M(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var E={required:eu,whitespace:H5,type:T5,range:z5,enum:K5,pattern:J5};function X5(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e,"string")&&!t.required)return u();E.required(t,e,n,r,a,"string"),R(e,"string")||(E.type(t,e,n,r,a),E.range(t,e,n,r,a),E.pattern(t,e,n,r,a),t.whitespace===!0&&E.whitespace(t,e,n,r,a))}u(r)}function G5(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&E.type(t,e,n,r,a)}u(r)}function Q5(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(e===""&&(e=void 0),R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&(E.type(t,e,n,r,a),E.range(t,e,n,r,a))}u(r)}function Z5(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&E.type(t,e,n,r,a)}u(r)}function Y5(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),R(e)||E.type(t,e,n,r,a)}u(r)}function p5(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&(E.type(t,e,n,r,a),E.range(t,e,n,r,a))}u(r)}function e6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&(E.type(t,e,n,r,a),E.range(t,e,n,r,a))}u(r)}function t6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(e==null&&!t.required)return u();E.required(t,e,n,r,a,"array"),e!=null&&(E.type(t,e,n,r,a),E.range(t,e,n,r,a))}u(r)}function u6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&E.type(t,e,n,r,a)}u(r)}var n6="enum";function a6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a),e!==void 0&&E[n6](t,e,n,r,a)}u(r)}function i6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e,"string")&&!t.required)return u();E.required(t,e,n,r,a),R(e,"string")||E.pattern(t,e,n,r,a)}u(r)}function r6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e,"date")&&!t.required)return u();if(E.required(t,e,n,r,a),!R(e,"date")){var l;e instanceof Date?l=e:l=new Date(e),E.type(t,l,n,r,a),l&&E.range(t,l.getTime(),n,r,a)}}u(r)}function l6(t,e,u,n,a){var r=[],i=Array.isArray(e)?"array":typeof e;E.required(t,e,n,r,a,i),u(r)}function Ye(t,e,u,n,a){var r=t.type,i=[],l=t.required||!t.required&&n.hasOwnProperty(t.field);if(l){if(R(e,r)&&!t.required)return u();E.required(t,e,n,i,a,r),R(e,r)||E.type(t,e,n,i,a)}u(i)}function o6(t,e,u,n,a){var r=[],i=t.required||!t.required&&n.hasOwnProperty(t.field);if(i){if(R(e)&&!t.required)return u();E.required(t,e,n,r,a)}u(r)}var ne={string:X5,method:G5,number:Q5,boolean:Z5,regexp:Y5,integer:p5,float:e6,array:t6,object:u6,enum:a6,pattern:i6,date:r6,url:Ye,hex:Ye,email:Ye,required:l6,any:o6};function pe(){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 e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var et=pe();function N(t){this.rules=null,this._messages=et,this.define(t)}N.prototype={messages:function(e){return e&&(this._messages=pt(pe(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var u,n;for(u in e)e.hasOwnProperty(u)&&(n=e[u],this.rules[u]=Array.isArray(n)?n:[n])},validate:function(e,u,n){var a=this;u===void 0&&(u={}),n===void 0&&(n=function(){});var r=e,i=u,l=n;if(typeof i=="function"&&(l=i,i={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function h(f){var g,s=[],m={};function y(S){if(Array.isArray(S)){var w;s=(w=s).concat.apply(w,S)}else s.push(S)}for(g=0;g<f.length;g++)y(f[g]);s.length?m=Qe(s):(s=null,m=null),l(s,m)}if(i.messages){var c=this.messages();c===et&&(c=pe()),pt(c,i.messages),i.messages=c}else i.messages=this.messages();var v,B,D={},b=i.keys||Object.keys(this.rules);b.forEach(function(f){v=a.rules[f],B=r[f],v.forEach(function(g){var s=g;typeof s.transform=="function"&&(r===e&&(r=_({},r)),B=r[f]=s.transform(B)),typeof s=="function"?s={validator:s}:s=_({},s),s.validator=a.getValidationMethod(s),s.field=f,s.fullField=s.fullField||f,s.type=a.getType(s),s.validator&&(D[f]=D[f]||[],D[f].push({rule:s,value:B,source:r,field:f}))})});var F={};return W5(D,i,function(f,g){var s=f.rule,m=(s.type==="object"||s.type==="array")&&(typeof s.fields=="object"||typeof s.defaultField=="object");m=m&&(s.required||!s.required&&f.value),s.field=f.field;function y(V,A){return _(_({},A),{},{fullField:s.fullField+"."+V})}function S(V){V===void 0&&(V=[]);var A=V;if(Array.isArray(A)||(A=[A]),!i.suppressWarning&&A.length&&N.warning("async-validator:",A),A.length&&s.message!==void 0&&(A=[].concat(s.message)),A=A.map(Yt(s)),i.first&&A.length)return F[s.field]=1,g(A);if(!m)g(A);else{if(s.required&&!f.value)return s.message!==void 0?A=[].concat(s.message).map(Yt(s)):i.error&&(A=[i.error(s,M(i.messages.required,s.field))]),g(A);var x={};if(s.defaultField)for(var ou in f.value)f.value.hasOwnProperty(ou)&&(x[ou]=s.defaultField);x=_(_({},x),f.rule.fields);for(var J in x)if(x.hasOwnProperty(J)){var D6=Array.isArray(x[J])?x[J]:[x[J]];x[J]=D6.map(y.bind(null,J))}var su=new N(x);su.messages(i.messages),f.rule.options&&(f.rule.options.messages=i.messages,f.rule.options.error=i.error),su.validate(f.value,f.rule.options||i,function(ot){var X=[];A&&A.length&&X.push.apply(X,A),ot&&ot.length&&X.push.apply(X,ot),g(X.length?X:null)})}}var w;s.asyncValidator?w=s.asyncValidator(s,f.value,S,f.source,i):s.validator&&(w=s.validator(s,f.value,S,f.source,i),w===!0?S():w===!1?S(s.message||s.field+" fails"):w instanceof Array?S(w):w instanceof Error&&S(w.message)),w&&w.then&&w.then(function(){return S()},function(V){return S(V)})},function(f){h(f)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ne.hasOwnProperty(e.type))throw new Error(M("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var u=Object.keys(e),n=u.indexOf("message");return n!==-1&&u.splice(n,1),u.length===1&&u[0]==="required"?ne.required:ne[this.getType(e)]||!1}},N.register=function(e,u){if(typeof u!="function")throw new Error("Cannot register a validator by type, validator is not a function");ne[e]=u},N.warning=Gt,N.messages=et,N.validators=ne;const s6={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 tu(t,e={}){const u=new N(t);return u.messages(Object.assign(s6,e)),u}const uu=new Zd;class I{constructor(e){var D,b,F,f;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=au,this.removeSetting=nu,this._callControlHooks("preInstance",e);const{controlName:u,controlIcon:n,controlType:a,controlFieldType:r,controlEventKeys:i,controlCustomEvents:l,name:h,setting:c,slots:v,slotPosition:B}=new.target;u&&n&&a||At(`The ${h} controlName,controlIcon,controlType is not define`),this.id=(D=e==null?void 0:e.id)!=null?D:j(10),this.name=u,this.icon=n,this.type=(b=e==null?void 0:e.type)!=null?b:a,this.props=new O(e==null?void 0:e.props,new.target.controlName),this.controlType=(F=e==null?void 0:e.controlType)!=null?F:"base",this.setting=q(c),this.fieldType=(f=e==null?void 0:e.fieldType)!=null?f:r,this.eventKeys=q(i),this.customEvents=q(l),this.slots=q(v),this.slotPosition=q(B),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[u,...n]=e;return uu.emit(u,this,...n)}preUpdate(e,u){this._callControlHooks("preUpdateProps",e,u)}postUpdate(e,u){this._callControlHooks("postUpdateProps",e,u)}updateProps(e,u){this.preUpdate(e,u),Pd(this.props,e,u),this.postUpdate(e,u)}preValidate(){return le(this,null,function*(){const e=H({},this.rules),u=yield this._callControlHooks("preValidate",e),n=u[u.length-1];return n===!1?void 0:n})}validate(e,u){return le(this,null,function*(){const n=yield this.preValidate(),a=n!==void 0?n:H({},this.rules);Array.isArray(u)&&u.forEach(i=>{a.hasOwnProperty(i)&&delete a[i]});const r=tu(a,e);try{return yield r.validate(this.props),!0}catch(i){throw i.control||(i.control=this),i}})}toDataBindModel(e=null){const u=this.fieldType,n=this.id,a=this.type,{dataBind:r,datasourceBind:i,optionConfig:l,caption:h,required:c,maxLength:v,options:B,encrypted:D,encryptedMode:b}=this.props;if(!u&&!r&&!i)return;const F={parentId:e,fieldType:u,controlId:n,caption:h,type:a,props:{}};switch(r&&(F.dataBind=r),l){case"datasource":case void 0:i&&(F.datasourceBind=i);break;case"custom":F.props.options=B;break}return c!==void 0&&(F.required=c),v!==void 0&&(F.maxLength=v),D!==void 0&&(F.encrypted=D),b!==void 0&&(F.encryptedMode=b),F}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:q(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,u){e==="setting"&&(u.add&&this.setting.push(...u.add),u.remove&&this.removeSettingItem(u.remove),u.update)}}I.mode="Designer",I.controlName=d("CMD.c81c1751969095754"),I.controlIcon="icon",I.controlType="control",I.controlEventKeys=[],I.controlCustomEvents=[],I.setting=[],I.__is_control__=!0,I.removeSettingItem=nu,I.updateSettingItem=au;function nu(t){(Array.isArray(t)?t:[t]).forEach(u=>{var r,i,l;const n=typeof u!="string",a=(r=this.setting)==null?void 0:r.findIndex(h=>h.key===(n?u.key:u));a!==-1&&(n?this.setting[a].showItems=(i=this.setting[a].showItems)==null?void 0:i.filter(h=>!u.hideItems.includes(h)):this.setting.splice(a,1),n&&!((l=this.setting[a].showItems)!=null&&l.length)&&this.setting.splice(a,1))})}function au(t,e){(typeof t=="string"?[t]:t).forEach(n=>{var r;const a=this.setting.find(i=>i.key===n);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((r=e.type)!=null?r:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class k{constructor(e){var i,l,h,c,v;this.customEvents=[],this.parent=null;const{controlType:u,controlFieldType:n,name:a,controlCustomEvents:r}=new.target;u||At(`The ${a} controlType is not define`),this.id=(i=e==null?void 0:e.id)!=null?i:j(10),this.type=(l=e==null?void 0:e.type)!=null?l:u,this.props=new O(e==null?void 0:e.props),this.customEvents=r,this.controlType=(h=e==null?void 0:e.controlType)!=null?h:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:n,this.pageStatus=(v=e==null?void 0:e.pageStatus)!=null?v:Ke.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const u=new e(this.props);return Array.from(u)}return[]}}k.mode="Runtime",k.controlType="control",k.__is_control__=!0,k.controlCustomEvents=[];function tt(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:d("CMD.pleaseEnterLabel",null,"\u8BF7\u8F93\u5165\u663E\u793A\u503C")},value:{type:"string",required:!0,message:d("CMD.pleaseEnterValue",null,"\u8BF7\u8F93\u5165\u5B58\u50A8\u503C")}}}},{type:"array",validator(e,u,n){u.length===0&&n(d("CMD.optionIsRequired",null,"\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879")),n()}},{type:"array",validator(e,u,n){const a=u.map(i=>i.value),r=Wd(a);a.length!==r.length?n(d("CMD.optionIdIsRepeat",null,"\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D")):n()},message:d("CMD.optionIdIsRepeat",null,"\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:d("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:d("CMD.pleaseEnterDataCode",null,"\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B")},valueFieldCode:{type:"string",required:!0,message:d("CMD.pleaseEnterValueFieldCode",null,"\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C")},svcCode:{type:"string",required:!0,message:d("CMD.pleaseEnterSvcCode",null,"\u8BF7\u7ED1\u5B9A\u670D\u52A1")},displayBoList:[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",validator(e,u,n){u.length===0&&n(d("CMD.pleaseBindAtLeastOneDisplayValue",null,"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")),n()},message:d("CMD.pleaseBindAtLeastOneDisplayValue",null,"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")}],orders:[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},desc:{type:"boolean",message:d("CMD.isNotBoolean",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14")}}}}]}}])}function c6(t,e,u=!1){this.datasourceBind=[{type:"object",message:d("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:d(u?"CMD.pleaseEnterDataCodeInDataSetting":"CMD.pleaseEnterDataCode",null,d(u?"CMD.8b141751969070995":"CMD.c10c1751969078999"))},valueFieldCode:{type:"string",required:!0,message:d(u?"CMD.pleaseEnterValueFieldCodeInDataSetting":"CMD.pleaseEnterValueFieldCode",null,d(u?"CMD.c9fa1751969073128":"CMD.01361751969082479"))},svcCode:{type:"string",required:!0,message:d(u?"CMD.pleaseEnterSvcCodeInDataSetting":"CMD.pleaseEnterSvcCode",null,d(u?"CMD.e0dc1751969075280":"CMD.4ad71751969085378"))},attributes:[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:d("CMD.isNotString",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32")},key:{type:"string",required:!0,message:d("CMD.isNotString",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32")},value:[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",validator(n,a,r){a.length===0&&r(d(u?"CMD.pleaseBindAtLeastOneDisplayValueInDataSetting":"CMD.pleaseBindAtLeastOneDisplayValue",null,d(u?"CMD.0e161751969064445":"CMD.f1421751969077253"))),r()},message:d(u?"CMD.pleaseBindAtLeastOneDisplayValueInDataSetting":"CMD.pleaseBindAtLeastOneDisplayValue",null,d(u?"CMD.0e161751969064445":"CMD.f1421751969077253"))}]}}}],orders:[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},desc:{type:"boolean",message:d("CMD.isNotBoolean",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14")}}}}]}}]}function iu(t){return(t==null?void 0:t.dataCode)!==void 0&&(t==null?void 0:t.fieldCode)!==void 0}class ut extends Be{constructor(e){super(e),this.dataBind={},this.caption={type:"string",required:!0,message:d("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:d("CMD.pleaseEnterCaptionTip",null,"\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED")};const u={fieldCode:{type:"string",required:!0,message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},dataCode:{type:"string",required:!0,message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}};if(iu(e.dataBind))this.dataBind={type:"object",required:!0,fields:q(u),message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};else{let n={type:"object",required:!0,fields:{},message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};Object.keys(e.dataBind).forEach(a=>{n.fields[a]={type:"object",required:!0,fields:q(u),message:d("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}}),this.dataBind=n}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class ru extends Je{constructor(e){super(e);const u=e.isHide?!1:e.required;u&&this.push({type:"string",required:u,message:e.requiredMessage!==""?e.requiredMessage:d("CMD.runtimeRequired",{caption:e.caption},"{caption}\u5FC5\u586B")})}}class ae extends O{constructor(e){var u,n,a,r,i,l,h,c,v,B;super(e),this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.isHideCaption=(n=e==null?void 0:e.isHideCaption)!=null?n:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(r=e==null?void 0:e.captionTip)!=null?r:"",this.defaultState=(i=e==null?void 0:e.defaultState)!=null?i:"default",this.labelPosition=(l=e==null?void 0:e.labelPosition)!=null?l:"top",this.placeholder=(h=e==null?void 0:e.placeholder)!=null?h:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(v=e==null?void 0:e.requiredMessage)!=null?v:"",this.dataBind=new L(e==null?void 0:e.dataBind),this.defaultValue=(B=e==null?void 0:e.defaultValue)!=null?B:""}}ae.Rules=ut,ae.RuntimeRules=ru;class d6 extends ut{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource"],message:d("CMD.PleaseSelectTheCorrectOptionSettings",null,"\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E")},this.options=[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")}],this.datasourceBind=[{type:"object",message:d("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")}],tt.call(this,e)}}class lu extends I{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}lu.controlEventKeys=["on_change","on_focus","on_blur"];class h6 extends k{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}class ie extends O{constructor(e){super(e)}}const f6=1e4;class W extends I{constructor(e){super(e),this.controlType="layout";const{excludes:u,childrenMaxLength:n}=new.target;this.props=new ie(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Designer"),this.excludes=q(u),this.childrenMaxLength=n}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const u=this.judgeExcludesChildren(e);return u&&this.childrenMaxLength>this.children.length}validate(e,u){return le(this,null,function*(){return yield st(W.prototype,this,"validate").call(this,e,u),yield Promise.all(this.children.map(n=>n.validate(e,u))),!0})}toDataBindModel(e=null){const u=super.toDataBindModel(),n=u?[u]:[];return this.children.reduce((a,r)=>{const i=r.toDataBindModel(e);if(Array.isArray(i)){const l=i.filter(h=>!!h);return[...a,...l]}return i&&a.push(i),a},n)}toSchema(){const e=super.toSchema(),u=this.children.map(n=>n.toSchema());return re(H({},e),{children:u})}}W.excludes=!1,W.childrenMaxLength=f6;class nt extends k{constructor(e){super(e),this.controlType="layout",this.props=new ie(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class at extends O{constructor(e,u,n){var a,r,i,l;super(u),U(this,"headers",u==null?void 0:u.headers,e,n),U(this,"footers",u==null?void 0:u.footers,e),this.pageIndex=(a=u==null?void 0:u.pageIndex)!=null?a:1,this.pageSize=(r=u==null?void 0:u.pageSize)!=null?r:20,this.pageSizeOptions=(i=u==null?void 0:u.pageSizeOptions)!=null?i:[20],this.totalCount=(l=u==null?void 0:u.totalCount)!=null?l:0}}class Fe extends I{constructor(e){super(e),this.controlType="list",this.props=new at(this,e==null?void 0:e.props,"Designer")}validate(e,u){return le(this,null,function*(){return yield st(Fe.prototype,this,"validate").call(this,e),yield Promise.all(this.props.headers.map(n=>n.validate(e,u))),!0})}toDataBindModel(){const e=super.toDataBindModel(),u=e?[e]:[],n=this.id;return this.props.headers.reduce((a,r)=>{const i=r.toDataBindModel(n);if(Array.isArray(i)){const l=i.filter(h=>!!h);return[...a,...l]}return i&&a.push(i),a},u)}toSchema(){const e=super.toSchema(),u=this.props.headers.map(n=>n.toSchema());return re(H({},e),{props:re(H({},this.props),{headers:u})})}}Fe.controlFieldType=Z.LIST;class m6 extends k{constructor(e){super(e),this.controlType="list",this.props=new at(this,e==null?void 0:e.props,"Runtime"),U(this,"children",e==null?void 0:e.children,void 0,"Runtime")}get length(){return this.children.length}}class it extends Be{constructor(e){super(e),this.caption={type:"string",required:!0,message:d("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")},this.width={type:"number",required:!1,message:d("CMD.pleaseEnterColumnWidth",null,"\u8BF7\u8F93\u5165\u5217\u5BBD")},this.width.required=e.widthType==="px"}}class ge extends O{constructor(e){var u,n,a,r,i;super(e),this.width=(u=e==null?void 0:e.width)!=null?u:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new je(e==null?void 0:e.autoWidth),this.dataBind=new L(e==null?void 0:e.dataBind),this.sort=(r=e==null?void 0:e.sort)!=null?r:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(i=e==null?void 0:e.autoHeight)!=null?i:!1}}ge.Rules=it;class v6 extends it{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:d("CMD.PleaseSelectTheCorrectOptionSettings",null,"\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E")},this.options=[{type:"array",message:d("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")}],this.datasourceBind=[{type:"object",message:d("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")}],tt.call(this,e)}}class E6 extends I{constructor(e){super(e),this.controlType="column",this.props=new ge(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Designer")}toSchema(){const e=super.toSchema();return re(H({},e),{children:this.children?this.children.map(u=>u.toSchema()):[]})}}class B6 extends k{constructor(e){super(e),this.controlType="column",this.props=new ge(e==null?void 0:e.props),U(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class rt extends ie{constructor(e){super(e),this.dataBind=new L(e==null?void 0:e.dataBind)}}class C6 extends W{constructor(e){super(e),this.controlType="search",this.props=new rt(e==null?void 0:e.props)}}class y6 extends nt{constructor(e){super(e),this.controlType="search",this.props=new rt(e==null?void 0:e.props)}}class lt extends ie{constructor(e){super(e)}}class F6 extends W{constructor(e){super(e),this.controlType="wrap",this.props=new lt(e==null?void 0:e.props)}}class g6 extends nt{constructor(e){super(e),this.controlType="wrap",this.props=new lt(e==null?void 0:e.props)}}function A6(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:d("CMD.pleaseEnterForm",null,"\u8BF7\u7ED1\u5B9A\u8868\u5355")}}}])}o.AMOUNT_TYPE=ze,o.AddressValue=$5,o.AiOptionSetting=Tt,o.AmountDataBind=D5,o.AmountValue=b5,o.AutoWidth=je,o.BaseControlProperty=ae,o.BaseControlPropertyRules=ut,o.BaseControlPropertyRuntimeRules=ru,o.BaseStyle=Kt,o.COMMON_SETTING_TYPE=zt,o.CalcDataBind=R5,o.CalcValue=I5,o.ColumnControlProperty=ge,o.ColumnControlPropertyRules=it,o.ColumnOptionAndDataSourcePropertyRules=v6,o.CustomAttributeItem=Te,o.CustomPermissionItem=_5,o.DataBind=L,o.DataSourceBind=me,o.DataSourceDataSetValue=Ut,o.DataSourceOrderItem=We,o.DataSourceParamItem=d5,o.DataStorageDoc=i5,o.DesignerColumnControl=E6,o.DesignerControl=I,o.DesignerFormControl=lu,o.DesignerLayoutControl=W,o.DesignerListControl=Fe,o.DesignerSearchControl=C6,o.DesignerWrapControl=F6,o.DisplayBoListItem=Ne,o.FieldBindItem=qt,o.FieldFilterCondition=te,o.FieldFilterConditions=z,o.FillBackBind=B5,o.FillPayloadBind=E5,o.FormBind=he,o.FormSelectBind=r5,o.ImageOptionSetting=Ht,o.JoinRelation=s5,o.Language=C5,o.LayoutControlProperty=ie,o.LeftVariable=kt,o.LinkOperationOption=f5,o.ListBind=l5,o.ListControlProperty=at,o.MetaAutoWidth=a5,o.MetaRowHeight=n5,o.MetaWidth=de,o.MultistageFillingItem=jt,o.ObjectDataBind=Ee,o.OperationItem=M5,o.OptObject=V5,o.OptionAndDataSourcePropertyRules=d6,o.OptionDisplayConfigItem=c5,o.OptionSetting=ve,o.OrganizationDataSourceBind=m5,o.PAGE_STATUS=Ke,o.Property=O,o.PropertyRules=Be,o.PropertyRuntimeRules=Je,o.RangeDataBind=S5,o.RangeDateValue=w5,o.RegisterControls=ee,o.RegularRules=y5,o.RightVariable=fe,o.RowHeight=Ue,o.RowStyle=x5,o.RowStyleRule=Jt,o.RowStyleSettings=Xt,o.RuntimeColumnControl=B6,o.RuntimeControl=k,o.RuntimeFormControl=h6,o.RuntimeLayoutControl=nt,o.RuntimeListControl=m6,o.RuntimeSearchControl=y6,o.RuntimeWrapControl=g6,o.SearchControlProperty=rt,o.SelectedContentConfig=h5,o.SubListItem=Ot,o.SubListPageConfig=o5,o.SuperDataSourceBind=Nt,o.TreeDataSourceBind=v5,o.ViewOperationItem=L5,o.WrapControlProperty=lt,o.controlHooksEmitter=uu,o.createValidator=tu,o.defineArrayParent=Mt,o.defineControlArrayToProperty=U,o.defineParent=Oe,o.initAiOptions=A5,o.initImageOptions=g5,o.initLinkOperationRules=A6,o.initOptionAndDataSourceRules=tt,o.initOptions=F5,o.initSuperDataSourceRules=c6,o.isDataBind=iu,o.setPropertyDontEnum=ce,Object.defineProperty(o,"__esModule",{value:!0})});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.6",
|
|
4
4
|
"description": "model engine core",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-shared": "3.0.0-beta.
|
|
29
|
+
"@byteluck-fe/model-driven-shared": "3.0.0-beta.6",
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "df89198b192db9e30fa31961e6688feb053e8958"
|
|
34
34
|
}
|