@byteluck-fe/model-driven-core 2.23.0 → 2.23.3

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.
@@ -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, g, _ = {
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({}, _this.rules);
320
+ rules = _object_spread({}, this.rules);
326
321
  return [
327
322
  4,
328
- _this._callControlHooks('preValidate', rules)
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
- _this.preValidate()
348
+ this.preValidate()
355
349
  ];
356
350
  case 1:
357
351
  result = _state.sent();
358
- rules = result !== undefined ? result : _object_spread({}, _this.rules);
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(_this.props)
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 = _this;
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.85531751967135654'));
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, g, _ = {
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(_this1.children.map(function(child) {
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, g, _ = {
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(_this1.props.headers.map(function(child) {
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
  {
@@ -1,4 +1,5 @@
1
1
  import Schema from 'async-validator';
2
+ // @i18n-translate-ignore
2
3
  var messages = {
3
4
  required: '%s 必填',
4
5
  maxLength: '%s 超出最大长度限制',
@@ -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.42a81751967107601') : getLocaleText('CMD.e9071751967116434'))
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.7a991751967110145') : getLocaleText('CMD.1a6d1751967120386'))
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.f3391751967112226') : getLocaleText('CMD.23d61751967123740'))
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.93731751967100312') : getLocaleText('CMD.726a1751967114349')));
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.93731751967100312') : getLocaleText('CMD.726a1751967114349'))
196
196
  }
197
197
  ]
198
198
  }
@@ -1153,8 +1153,8 @@ export function initImageOptions(options) {
1153
1153
  var _props_unit;
1154
1154
  this.unit = (_props_unit = props === null || props === void 0 ? void 0 : props.unit) !== null && _props_unit !== void 0 ? _props_unit : '';
1155
1155
  };
1156
- export var AMOUNT_TYPE;
1157
- (function(AMOUNT_TYPE) {
1156
+ // 币种类型
1157
+ export var AMOUNT_TYPE = /*#__PURE__*/ function(AMOUNT_TYPE) {
1158
1158
  AMOUNT_TYPE["CNY"] = "CNY";
1159
1159
  AMOUNT_TYPE["USD"] = "USD";
1160
1160
  AMOUNT_TYPE["JPY"] = "JPY";
@@ -1182,9 +1182,17 @@ export var AMOUNT_TYPE;
1182
1182
  AMOUNT_TYPE["VND"] = "VND";
1183
1183
  AMOUNT_TYPE["HKD"] = "HKD";
1184
1184
  AMOUNT_TYPE["IEP"] = "IEP";
1185
- })(AMOUNT_TYPE || (AMOUNT_TYPE = {}));
1186
- export var COMMON_SETTING_TYPE;
1187
- (function(COMMON_SETTING_TYPE) {
1185
+ return AMOUNT_TYPE;
1186
+ }({});
1187
+ /**
1188
+ * 选项设置
1189
+ * REQUIRED: 必填
1190
+ * isHide: 隐藏
1191
+ * IS_SHOW_UNIT: 单位
1192
+ * CAN_SEARCH: 支持搜索
1193
+ * MULTIPLE: 允许选中多个日期
1194
+ * SUBMIT_SELECT_CURRENCY: 提交时选择币种
1195
+ */ export var COMMON_SETTING_TYPE = /*#__PURE__*/ function(COMMON_SETTING_TYPE) {
1188
1196
  COMMON_SETTING_TYPE["DEFAULT_DISPLAY"] = "defaultDisplay";
1189
1197
  COMMON_SETTING_TYPE["REQUIRED"] = "required";
1190
1198
  COMMON_SETTING_TYPE["IS_HIDE"] = "isHide";
@@ -1220,14 +1228,15 @@ export var COMMON_SETTING_TYPE;
1220
1228
  COMMON_SETTING_TYPE["IS_SHOW_SIMPLE_SEARCH"] = "isShowSimpleSearch";
1221
1229
  COMMON_SETTING_TYPE["IS_SHOW_TOOL_BAE"] = "isShowToolbar";
1222
1230
  COMMON_SETTING_TYPE["MAIN_DEPT_FLAG"] = "mainDeptFlag";
1223
- })(COMMON_SETTING_TYPE || (COMMON_SETTING_TYPE = {}));
1224
- export var PAGE_STATUS;
1225
- (function(PAGE_STATUS) {
1231
+ return COMMON_SETTING_TYPE;
1232
+ }({});
1233
+ export var PAGE_STATUS = /*#__PURE__*/ function(PAGE_STATUS) {
1226
1234
  PAGE_STATUS[PAGE_STATUS["UNKNOWN"] = 0] = "UNKNOWN";
1227
1235
  PAGE_STATUS[PAGE_STATUS["READONLY"] = 1] = "READONLY";
1228
1236
  PAGE_STATUS[PAGE_STATUS["EDITABLE"] = 2] = "EDITABLE";
1229
1237
  PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
1230
- })(PAGE_STATUS || (PAGE_STATUS = {}));
1238
+ return PAGE_STATUS;
1239
+ }({});
1231
1240
  /**
1232
1241
  * 操作按钮
1233
1242
  * @public
package/dist/index.umd.js CHANGED
@@ -1 +1 @@
1
- var g3=Object.defineProperty,A3=Object.defineProperties;var D3=Object.getOwnPropertyDescriptors;var su=Object.getOwnPropertySymbols,b3=Object.getPrototypeOf,S3=Object.prototype.hasOwnProperty,w3=Object.prototype.propertyIsEnumerable,$3=Reflect.get;var cu=(o,D,$)=>D in o?g3(o,D,{enumerable:!0,configurable:!0,writable:!0,value:$}):o[D]=$,H=(o,D)=>{for(var $ in D||(D={}))S3.call(D,$)&&cu(o,$,D[$]);if(su)for(var $ of su(D))w3.call(D,$)&&cu(o,$,D[$]);return o},re=(o,D)=>A3(o,D3(D));var st=(o,D,$)=>$3(b3(o),$,D);var le=(o,D,$)=>new Promise((ge,oe)=>{var Ae=P=>{try{G($.next(P))}catch(Q){oe(Q)}},De=P=>{try{G($.throw(P))}catch(Q){oe(Q)}},G=P=>P.done?ge(P.value):Promise.resolve(P.value).then(Ae,De);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",ge="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",oe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Ae="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",De="{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",du="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",hu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",fu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Eu="\u8BF7\u7ED1\u5B9A\u5217\u8868",vu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",mu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Bu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Cu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Fu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",yu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",gu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Au="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Du="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",bu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",Su="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",wu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",$u="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Ru="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Iu="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",Lu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",Mu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",_u="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Vu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",xu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Pu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",qu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ou="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ku="\u8BF7\u7ED1\u5B9A\u670D\u52A1",ju="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Uu="\u8BF7\u9009\u62E9\u7701",Nu="\u8BF7\u9009\u62E9\u5E02",Wu="\u8BF7\u9009\u62E9\u533A",Hu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Tu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",zu="\u8BF7\u8F93\u5165\u5217\u5BBD",Ku="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ju="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Xu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Gu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Qu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Zu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Yu="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",pu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",en="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",tn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",un="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",nn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",an="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",rn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ln="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",on="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",sn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",cn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",dn="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",hn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",fn="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",En="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",vn="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",mn="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Bn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Cn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Fn="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",yn="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",gn="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",An="\u6279\u91CF\u5220\u9664",Dn="\u6279\u91CF\u6253\u5370",bn="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Sn="\u6309\u94AE",wn="\u521B\u5EFA\u5355\u636E",$n="\u4EEA\u8868\u76D8",Rn="\u5206\u5272\u7EBF",In="\u5BFC\u51FA",Ln="\u8868\u5355\u64CD\u4F5C",Mn="\u5BFC\u5165",_n="\u53D1\u7968\u8BC6\u522B",Vn="\u94FE\u63A5",xn="\u5217\u8868\u9009\u62E9",Pn="\u5217\u8868\u89C6\u56FE",qn="\u64CD\u4F5C\u6309\u94AE",On="\u5206\u9875",kn="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",jn="\u8BF4\u660E\u6587\u5B57",Un="\u6587\u5B57\u8BC6\u522B",Nn="\u6807\u9898\u7EC4\u4EF6",Wn="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Hn="\u6570\u7EC4",Tn="\u81EA\u52A8\u7F16\u53F7",zn="\u81EA\u5B9A\u4E49",Kn="\u6570\u503C",Jn="\u90E8\u95E8",Xn="\u4EBA\u5458",Gn="\u9644\u4EF6",Qn="\u56FE\u7247",Zn="\u5730\u5740",Yn="\u64CD\u4F5C",pn="\u5E8F\u53F7",ea="\u4EBA\u5458",ta="\u957F\u6587\u672C",ua="\u65E5\u671F\u533A\u95F4",na="\u65E5\u671F",aa="\u77ED\u6587\u672C",ia="\u6362\u884C\u5BB9\u5668Wrap",ra="\u8868\u683C",la="\u660E\u7EC6\u5B50\u8868",oa="\u5730\u5740",sa="\u91D1\u989D",ca="\u8BA1\u7B97\u516C\u5F0F",da="\u591A\u9009",ha="\u7535\u5B50\u7B7E\u7AE0",fa="\u5355\u884C\u6587\u672C",Ea="\u6570\u5B57",va="\u4E1A\u52A1\u7EC4\u7EC7",ma="\u5355\u9009",Ba="\u5BCC\u6587\u672C",Ca="\u8BC4\u5206",Fa="\u6570\u5B57\u533A\u95F4",ya="\u4E0B\u62C9\u5355\u9009",ga="\u4E0B\u62C9\u591A\u9009",Aa="\u5173\u8054\u5355\u9009",Da="\u591A\u884C\u6587\u672C",ba="\u6811",Sa="Vue\u5BB9\u5668",wa="Vue\u9875\u9762",$a="\u5728\u7EBF\u6587\u6863",Ra="\u6309\u94AE\u64CD\u4F5C\u680F",Ia="\u9AD8\u7EA7\u5BB9\u5668",La="\u5206\u7EC4",Ma="\u6805\u683C\u5217",_a="\u6570\u636E\u5BB9\u5668",Va="\u753B\u5E03",xa="\u6362\u884C\u5BB9\u5668",Pa="\u6805\u683C\u7B49\u5206\u884C",qa="\u5217\u8868\u5BB9\u5668",Oa="\u81EA\u7531\u9875\u9762",ka="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ja="\u5B9A\u4F4D\u5BB9\u5668",Ua="\u6805\u683C\u5E03\u5C40",Na="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Wa="\u660E\u7EC6\u5B50\u8868\u884C",Ha="\u6807\u7B7E\u9875",Ta="\u6807\u7B7E\u5355\u5143",za="\u5DE5\u5177\u680F",Ka="\u6279\u91CF\u63D0\u4EA4",Ja="\u5BFC\u51FA\u8BB0\u5F55",Xa="\u5217\u8868\u89C6\u56FE",Ga="\u7ED3\u675F\u65F6\u95F4",Qa="\u5F00\u59CB\u65F6\u95F4",Za="\u5355\u4F4D",Ya="\u7ED3\u679C",pa="\u5E01\u79CD",ei="\u7ED3\u675F\u65E5\u671F",ti="\u5F00\u59CB\u65E5\u671F",ui="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",ni="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",ai="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ii="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",ri="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",li="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",oi="\u8BF7\u9009\u62E9",si="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ci="\u8BF7\u9009\u62E9\u90E8\u95E8",di="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",hi="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",fi="\u8BF7\u9009\u62E9\u5730\u5740",Ei="\u5F39\u7A97\u786E\u8BA4\u65F6",vi="\u6807\u7B7E\u9875\u5207\u6362\u65F6",mi="\u884C\u9009\u4E2D\u65F6",Bi="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Ci="\u884C\u5220\u9664\u524D",Fi="\u884C\u70B9\u51FB\u65F6",yi="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",gi="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",Ai="\u91CD\u547D\u540D\u65F6",Di="\u4FDD\u5B58\u6587\u4EF6\u65F6",bi="\u6253\u5F00\u6587\u4EF6\u65F6",Si="\u83B7\u53D6\u7126\u70B9\u65F6",wi="\u5931\u53BB\u7126\u70B9\u65F6",$i="\u7528\u6237\u8F93\u5165\u65F6",Ri="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",Ii="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Li="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",Mi="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",_i="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Vi="\u641C\u7D22\u65F6",xi="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Pi="\u6267\u884C\u5B8C\u6210\u65F6",qi="\u70B9\u51FB\u65F6",Oi="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",ki="\u8BF7\u8F93\u5165\u65E5\u671F",ji="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ui="\u8BF7\u8F93\u5165",Ni="\u9ED8\u8BA4\u6A21\u7248",Wi="\u5DE6\u53F3\u5E03\u5C40",Hi="\u4E0A\u4E0B\u5E03\u5C40",Ti="\u53EA\u8BFB",zi="\u5FC5\u586B",Ki="\u63D0\u793A\u6587\u5B57",Ji="\u9690\u85CF\u6807\u9898",Xi="\u6807\u9898\u5FC5\u586B",Gi="\u7EC4\u7EC7\u5F62\u6001",Qi="\u4E1A\u52A1\u7C7B\u578B",Zi="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Yi="\u9690\u85CF",pi="\u6D41\u7A0B\u72B6\u6001",er="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",tr="\u5220\u9664",ur="\u7F16\u8F91",nr="\u67E5\u770B",ar="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",ir="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",rr="\u5145\u6EE1\u6574\u884C",lr="\u6700\u5C0F\u503C",or="\u6700\u5927\u503C",sr="\u65B0\u5EFA\u6587\u6863",cr="\u91CD\u7F6E",dr="\u67E5\u8BE2",hr="\u660E\u7EC6",fr="\u6253\u5370",Er="\u4FDD\u5B58\u8349\u7A3F",vr="\u4FDD\u5B58",mr="\u53D6\u6D88",Br="\u4E0A\u4F20\u56FE\u7247",Cr="\u53D1\u8D77\u7B7E\u7F72",Fr="\u4E0A\u4F20\u9644\u4EF6",yr="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",gr="\u5F15\u7528\u5217\u8868",Ar="\u9009\u9879\u4E00",Dr="\u9009\u9879\u4E8C",br="\u9009\u9879\u4E09",Sr={isNotNumber:D,isNotString:$,isNotObject:ge,isNotArray:oe,isNotBoolean:Ae,runtimeRequired:De,pleaseEnterCaption:G,pleaseEnterCaptionTip:P,pleaseEnterRowCaption:Q,pleaseEnterPlaceholder:du,pleaseEnterFieldCode:hu,pleaseEnterForm:fu,pleaseEnterList:Eu,pleaseEnterProcess:vu,pleaseEnterLabel:mu,pleaseEnterValue:Bu,bizKeyNotBindFiled:Cu,pleaseSelectOneField:Fu,pleaseEnterNumberRange:yu,pleaseEnterAValueGreaterThanMin:gu,pleaseEnterAValueLessThanMax:Au,numberRangeSetError:Du,stringRangeError:bu,attachmentMaxSize:Su,pleaseEnterTotalScoreSetting:wu,theTotalScoreMustNotBeLessThan1:$u,scoreDefaultValueRange:Ru,attachmentLimitError:Iu,PleaseReselectTheOptionalQuantity:Lu,TheMaximumLengthIsGreaterThanTheMinimumLength:Mu,TheMinimumLengthIsGreaterThanTheMaximumLength:_u,PleaseSelectTheCorrectOptionSettings:Vu,optionIdIsRepeat:xu,optionIsRequired:Pu,pleaseEnterDataCode:qu,pleaseEnterValueFieldCode:Ou,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:ju,pleaseSelectProvince:Uu,pleaseSelectCity:Nu,pleaseSelectDistrict:Wu,limitRowsCannotBeLessThan0:Hu,TheNumberOfRowsCannotBeLessThanMinRows:Tu,pleaseEnterColumnWidth:zu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ku,pleaseCompleteAllRulesAndConditions:Ju,pleaseSelectControl:Xu,pleaseSelectAtLeastOneColumn:Gu,pleaseSelectFillBackMode:Qu,pleaseSelectDashboard:Zu,rootNodeIsRequired:Yu,theViewNameCannotBeEmpty:pu,pleaseSelectOcrType:en,pleaseSelectAtLeastOneFieldToFillIn:tn,pleaseChooseAtLeastOne:un,pleaseEnterButtonContent:nn,pleaseEnterDataCodeInDataSetting:an,pleaseEnterValueFieldCodeInDataSetting:rn,pleaseEnterSvcCodeInDataSetting:ln,pleaseBindAtLeastOneDisplayValueInDataSetting:on,rootNodeIsRequiredInDataSetting:sn,pleaseEnterMaxHeight:cn,pleaseEnterWatermark:dn,pleaseEnterFileName:hn,pleaseUploadAtLeastOnePrintTemplate:fn,pleaseAssignBusiness:En,pleaseAssignExternal:vn,pleaseEnterAliasCode:mn,pleaseSelectDataCode:Bn,pleaseSelectSvcCode:Cn,pleaseSelectJoinFieldCode:Fn,pleaseSelectMainFieldCode:yn,pleaseSelectSortFieldCode:gn,batchDeleteButton:An,batchPrintListButton:Dn,batchPrintRecordList:bn,button:Sn,createFormListButton:wn,dashboard:$n,divider:Rn,exportListButton:In,formSelectButton:Ln,importRecordListButton:Mn,invoiceCheckButton:_n,link:Vn,listSelectButton:xn,ListViewSelect:Pn,operationButton:qn,pagination:On,submissionRecordListButton:kn,text:jn,textOcrButton:Un,title:Nn,approvalStatusColumn:Wn,array:Hn,autoNumber:Tn,custom:zn,decimal:Kn,department:Jn,employee:Xn,file:Gn,image:Qn,location:Zn,operation:Yn,order:pn,people:ea,long:ta,timescope:ua,timestamp:na,varchar:aa,gridLayoutWrap:ia,gridTable:ra,subTable:la,address:oa,amount:sa,calc:ca,checkBox:da,electronicSignature:ha,input:fa,number:Ea,organizationSelection:va,radio:ma,richText:Ba,score:Ca,searchNumberRange:Fa,select:ya,selectMultiple:ga,selectRelation:Aa,textarea:Da,tree:ba,vueFormItem:Sa,vuePage:wa,WPS:$a,actionBar:Ra,advancedContainer:Ia,cardGroup:La,col:Ma,dataView:_a,grid:Va,gridLayoutContainer:xa,gridRow:Pa,listView:qa,page:Oa,position:ka,positioningContainer:ja,row:Ua,subtableColumn:Na,subtableRow:Wa,tab:Ha,tabPane:Ta,toolbox:za,batchSubmissionListButton:Ka,exportRecordListButton:Ja,listViewSelect:Xa,endTime:Ga,startTime:Qa,unit:Za,result:Ya,currency:pa,endDate:ei,startDate:ti,pleaseSelectCompanyName:ui,pleaseSelectPhoneOrEmail:ni,pleaseSelectSignType:ai,pleaseSelectSigner:ii,pleaseSelectOnlyOne:ri,pleaseSelectSignFile:li,pleaseSelect:oi,pleaseSelectOrg:si,pleaseSelectDept:ci,pleaseSelectEndDate:di,pleaseSelectStartDate:hi,pleaseChooseAddress:fi,modalConfirm:Ei,tabChange:vi,rowSelected:mi,listDataImport:Bi,rowDelete:Ci,rowClick:Fi,cellRender:yi,onClickBtn:gi,rename:Ai,onSaveFile:Di,onOpenFile:bi,onFocus:Si,onBlur:wi,onInput:$i,listDataAdd:Ri,listDataDelete:Ii,listDataBack:Li,listDataCreate:Mi,listDataChange:_i,search:Vi,valueChange:xi,finished:Pi,click:qi,pleaseEnterNameorEmail:Oi,pleaseEnterDate:ki,pleaseEnterAutonumber:ji,pleaseEnter:Ui,defaultTemplate:Ni,left:Wi,top:Hi,default:"\u666E\u901A",readonly:Ti,required:zi,textTip:Ki,hideCaption:Ji,titleRequired:Xi,organizationalForm:Gi,businessType:Qi,deleteConfirm:Zi,hide:Yi,processStatus:pi,approvedDocuments:er,delete:tr,edit:ur,view:nr,loadCtrlErrorTip:ar,loadCtrlError:ir,fullLine:rr,min:lr,max:or,createWPS:sr,reset:cr,query:dr,detailed:hr,print:fr,draft:Er,save:vr,cancel:mr,uploadImg:Br,signature:Cr,uploadFile:Fr,linkContent:yr,referenceList:gr,optionOne:Ar,optionTwo:Dr,optionThird:br},wr="Please enter a number",$r="Please enter a string",Rr="Please enter an object",Ir="Please enter an array",Lr="Please enter a boolean",Mr="{caption} Required",_r="Please enter the title",Vr="Please enter the bubble prompt",xr="Please enter the row title",Pr="Please enter the prompt text",qr="Please bind data items",Or="Please bind the form",kr="Please bind the list",jr="Please bind the process",Ur="Please enter the displayed value",Nr="Please enter the stored value",Wr="The document number is not bound to the data item",Hr="Please select at least one display field",Tr="Please enter a value greater than or equal to {min} and less than or equal to {max}",zr="Please enter a value greater than or equal to {min}",Kr="Please enter a value less than or equal to {max}",Jr="The value range is set incorrectly",Xr="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Gr="The attachment size must be between 0MB and 1000MB",Qr="Please fill in the total score setting",Zr="The total score cannot be less than 1",Yr="The default value must be between {min} and {max}",pr="The number of attachment uploads exceeds the limit",el="Please re-select the optional quantity",tl="The maximum length of the control must be greater than the minimum length",ul="The minimum length of the control must be less than the maximum length",nl="Please select the correct option setting",al="Option ID cannot be repeated",il="Please enter at least one option",rl="Please bind the data source",ll="Please bind the stored value",ol="Please bind the service",sl="At least one display value must be bound",cl="Please select a province",dl="Please select a city",hl="Please select a district",fl="The minimum number of lines to fill in cannot be less than 0",El="The number of rows cannot be less than {min} rows",vl="Please enter the column width",ml="Please set the logical relationship of all rule conditions",Bl="Please complete all rules and conditions",Cl="please select control",Fl="Please select the dashboard",yl="View name cannot be empty",gl="Please select recognition type",Al="Please select at least one field to fill in",Dl="Please select at least one",bl="Please enter the button title",Sl="Please bind the business model in the data settings",wl="Please bind storage values in data settings",$l="Please bind the service in the data settings",Rl="Please bind at least one display value in the data settings",Il="Please select the root node in the data settings",Ll="Please enter the maximum height",Ml="The input content cannot be empty",_l="Watermark cannot be empty",Vl="File name cannot be empty",xl="Please upload at least one printing template!\uFF01",Pl="Please select a specific business department",ql="Please select a specified external organization",Ol="Please enter a sub table alias",kl="Please select the associated table to set the business model",jl="Please select the association table to set the binding service",Ul="Select associated sub table fields",Nl="Please select the associated main table field",Wl="Please select the sort field",Hl="\u6279\u91CF\u5220\u9664",Tl="\u6279\u91CF\u6253\u5370",zl="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Kl="\u6309\u94AE",Jl="\u521B\u5EFA\u5355\u636E",Xl="\u4EEA\u8868\u76D8",Gl="\u5206\u5272\u7EBF",Ql="\u5BFC\u51FA",Zl="\u8868\u5355\u64CD\u4F5C",Yl="\u5BFC\u5165",pl="\u53D1\u7968\u8BC6\u522B",eo="\u94FE\u63A5",to="\u5217\u8868\u9009\u62E9",uo="\u5217\u8868\u89C6\u56FE",no="\u64CD\u4F5C\u6309\u94AE",ao="\u5206\u9875",io="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",ro="\u8BF4\u660E\u6587\u5B57",lo="\u6587\u5B57\u8BC6\u522B",oo="\u6807\u9898\u7EC4\u4EF6",so="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",co="\u6570\u7EC4",ho="\u81EA\u52A8\u7F16\u53F7",fo="\u81EA\u5B9A\u4E49",Eo="\u6570\u503C",vo="\u90E8\u95E8",mo="\u4EBA\u5458",Bo="\u9644\u4EF6",Co="\u56FE\u7247",Fo="\u5730\u5740",yo="\u64CD\u4F5C",go="\u5E8F\u53F7",Ao="\u4EBA\u5458",Do="\u957F\u6587\u672C",bo="\u65E5\u671F\u533A\u95F4",So="\u65E5\u671F",wo="\u77ED\u6587\u672C",$o="\u6362\u884C\u5BB9\u5668Wrap",Ro="\u8868\u683C",Io="\u660E\u7EC6\u5B50\u8868",Lo="\u5730\u5740",Mo="\u91D1\u989D",_o="\u8BA1\u7B97\u516C\u5F0F",Vo="\u591A\u9009",xo="\u7535\u5B50\u7B7E\u7AE0",Po="\u5355\u884C\u6587\u672C",qo="\u6570\u5B57",Oo="\u4E1A\u52A1\u7EC4\u7EC7",ko="\u5355\u9009",jo="\u5BCC\u6587\u672C",Uo="\u8BC4\u5206",No="\u6570\u5B57\u533A\u95F4",Wo="\u4E0B\u62C9\u5355\u9009",Ho="\u4E0B\u62C9\u591A\u9009",To="\u5173\u8054\u5355\u9009",zo="\u591A\u884C\u6587\u672C",Ko="\u6811",Jo="Vue\u5BB9\u5668",Xo="Vue\u9875\u9762",Go="\u5728\u7EBF\u6587\u6863",Qo="\u6309\u94AE\u64CD\u4F5C\u680F",Zo="\u9AD8\u7EA7\u5BB9\u5668",Yo="\u5206\u7EC4",po="\u6805\u683C\u5217",es="\u6570\u636E\u5BB9\u5668",ts="\u753B\u5E03",us="\u6362\u884C\u5BB9\u5668",ns="\u6805\u683C\u7B49\u5206\u884C",as="\u5217\u8868\u5BB9\u5668",is="\u81EA\u7531\u9875\u9762",rs="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ls="\u5B9A\u4F4D\u5BB9\u5668",os="\u6805\u683C\u5E03\u5C40",ss="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",cs="\u660E\u7EC6\u5B50\u8868\u884C",ds="\u6807\u7B7E\u9875",hs="\u6807\u7B7E\u5355\u5143",fs="\u5DE5\u5177\u680F",Es="\u6279\u91CF\u63D0\u4EA4",vs="\u5BFC\u51FA\u8BB0\u5F55",ms="\u5217\u8868\u89C6\u56FE",Bs="\u5F15\u7528\u5217\u8868",Cs="\u9009\u9879\u4E00",Fs="\u9009\u9879\u4E8C",ys="\u9009\u9879\u4E09",gs={isNotNumber:wr,isNotString:$r,isNotObject:Rr,isNotArray:Ir,isNotBoolean:Lr,runtimeRequired:Mr,pleaseEnterCaption:_r,pleaseEnterCaptionTip:Vr,pleaseEnterRowCaption:xr,pleaseEnterPlaceholder:Pr,pleaseEnterFieldCode:qr,pleaseEnterForm:Or,pleaseEnterList:kr,pleaseEnterProcess:jr,pleaseEnterLabel:Ur,pleaseEnterValue:Nr,bizKeyNotBindFiled:Wr,pleaseSelectOneField:Hr,pleaseEnterNumberRange:Tr,pleaseEnterAValueGreaterThanMin:zr,pleaseEnterAValueLessThanMax:Kr,numberRangeSetError:Jr,stringRangeError:Xr,attachmentMaxSize:Gr,pleaseEnterTotalScoreSetting:Qr,theTotalScoreMustNotBeLessThan1:Zr,scoreDefaultValueRange:Yr,attachmentLimitError:pr,PleaseReselectTheOptionalQuantity:el,TheMaximumLengthIsGreaterThanTheMinimumLength:tl,TheMinimumLengthIsGreaterThanTheMaximumLength:ul,PleaseSelectTheCorrectOptionSettings:nl,optionIdIsRepeat:al,optionIsRequired:il,pleaseEnterDataCode:rl,pleaseEnterValueFieldCode:ll,pleaseEnterSvcCode:ol,pleaseBindAtLeastOneDisplayValue:sl,pleaseSelectProvince:cl,pleaseSelectCity:dl,pleaseSelectDistrict:hl,limitRowsCannotBeLessThan0:fl,TheNumberOfRowsCannotBeLessThanMinRows:El,pleaseEnterColumnWidth:vl,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ml,pleaseCompleteAllRulesAndConditions:Bl,pleaseSelectControl:Cl,pleaseSelectDashboard:Fl,theViewNameCannotBeEmpty:yl,pleaseSelectOcrType:gl,pleaseSelectAtLeastOneFieldToFillIn:Al,pleaseChooseAtLeastOne:Dl,pleaseEnterButtonContent:bl,pleaseEnterDataCodeInDataSetting:Sl,pleaseEnterValueFieldCodeInDataSetting:wl,pleaseEnterSvcCodeInDataSetting:$l,pleaseBindAtLeastOneDisplayValueInDataSetting:Rl,rootNodeIsRequiredInDataSetting:Il,pleaseEnterMaxHeight:Ll,pleaseEnter:Ml,pleaseEnterWatermark:_l,pleaseEnterFileName:Vl,pleaseUploadAtLeastOnePrintTemplate:xl,pleaseAssignBusiness:Pl,pleaseAssignExternal:ql,pleaseEnterAliasCode:Ol,pleaseSelectDataCode:kl,pleaseSelectSvcCode:jl,pleaseSelectJoinFieldCode:Ul,pleaseSelectMainFieldCode:Nl,pleaseSelectSortFieldCode:Wl,batchDeleteButton:Hl,batchPrintListButton:Tl,batchPrintRecordList:zl,button:Kl,createFormListButton:Jl,dashboard:Xl,divider:Gl,exportListButton:Ql,formSelectButton:Zl,importRecordListButton:Yl,invoiceCheckButton:pl,link:eo,listSelectButton:to,ListViewSelect:uo,operationButton:no,pagination:ao,submissionRecordListButton:io,text:ro,textOcrButton:lo,title:oo,approvalStatusColumn:so,array:co,autoNumber:ho,custom:fo,decimal:Eo,department:vo,employee:mo,file:Bo,image:Co,location:Fo,operation:yo,order:go,people:Ao,long:Do,timescope:bo,timestamp:So,varchar:wo,gridLayoutWrap:$o,gridTable:Ro,subTable:Io,address:Lo,amount:Mo,calc:_o,checkBox:Vo,electronicSignature:xo,input:Po,number:qo,organizationSelection:Oo,radio:ko,richText:jo,score:Uo,searchNumberRange:No,select:Wo,selectMultiple:Ho,selectRelation:To,textarea:zo,tree:Ko,vueFormItem:Jo,vuePage:Xo,WPS:Go,actionBar:Qo,advancedContainer:Zo,cardGroup:Yo,col:po,dataView:es,grid:ts,gridLayoutContainer:us,gridRow:ns,listView:as,page:is,position:rs,positioningContainer:ls,row:os,subtableColumn:ss,subtableRow:cs,tab:ds,tabPane:hs,toolbox:fs,batchSubmissionListButton:Es,exportRecordListButton:vs,listViewSelect:ms,referenceList:Bs,optionOne:Cs,optionTwo:Fs,optionThird:ys},As="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ds="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bs="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ss="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ws="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$s="{caption}\u5FC5\u9808",Rs="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Is="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ls="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ms="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_s="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vs="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xs="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ps="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qs="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Os="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ks="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",js="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Us="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ns="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ws="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Hs="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ts="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zs="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ks="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Js="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Xs="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Gs="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",Qs="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zs="\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",Ys="\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",ps="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ec="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",tc="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",uc="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",nc="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ac="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ic="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",rc="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",lc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",oc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",cc="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",dc="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",fc="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ec="please select control",vc="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",mc="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Bc="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Cc="\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",Fc="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",yc="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ac="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Dc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",bc="\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",Sc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",wc="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$c="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Rc="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ic="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Lc="\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",Mc="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",_c="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Vc="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xc="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Pc="\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",qc="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Oc="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",kc="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",jc="\u6279\u91CF\u5220\u9664",Uc="\u6279\u91CF\u6253\u5370",Nc="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",Wc="\u6309\u94AE",Hc="\u521B\u5EFA\u5355\u636E",Tc="\u4EEA\u8868\u76D8",zc="\u5206\u5272\u7EBF",Kc="\u5BFC\u51FA",Jc="\u8868\u5355\u64CD\u4F5C",Xc="\u5BFC\u5165",Gc="\u53D1\u7968\u8BC6\u522B",Qc="\u94FE\u63A5",Zc="\u5217\u8868\u9009\u62E9",Yc="\u5217\u8868\u89C6\u56FE",pc="\u64CD\u4F5C\u6309\u94AE",e0="\u5206\u9875",t0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",u0="\u8BF4\u660E\u6587\u5B57",n0="\u6587\u5B57\u8BC6\u522B",a0="\u6807\u9898\u7EC4\u4EF6",i0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",r0="\u6570\u7EC4",l0="\u81EA\u52A8\u7F16\u53F7",o0="\u81EA\u5B9A\u4E49",s0="\u6570\u503C",c0="\u90E8\u95E8",d0="\u4EBA\u5458",h0="\u9644\u4EF6",f0="\u56FE\u7247",E0="\u5730\u5740",v0="\u64CD\u4F5C",m0="\u5E8F\u53F7",B0="\u4EBA\u5458",C0="\u957F\u6587\u672C",F0="\u65E5\u671F\u533A\u95F4",y0="\u65E5\u671F",g0="\u77ED\u6587\u672C",A0="\u6362\u884C\u5BB9\u5668Wrap",D0="\u8868\u683C",b0="\u660E\u7EC6\u5B50\u8868",S0="\u5730\u5740",w0="\u91D1\u989D",$0="\u8BA1\u7B97\u516C\u5F0F",R0="\u591A\u9009",I0="\u7535\u5B50\u7B7E\u7AE0",L0="\u5355\u884C\u6587\u672C",M0="\u6570\u5B57",_0="\u4E1A\u52A1\u7EC4\u7EC7",V0="\u5355\u9009",x0="\u5BCC\u6587\u672C",P0="\u8BC4\u5206",q0="\u6570\u5B57\u533A\u95F4",O0="\u4E0B\u62C9\u5355\u9009",k0="\u4E0B\u62C9\u591A\u9009",j0="\u5173\u8054\u5355\u9009",U0="\u591A\u884C\u6587\u672C",N0="\u6811",W0="Vue\u5BB9\u5668",H0="Vue\u9875\u9762",T0="\u5728\u7EBF\u6587\u6863",z0="\u6309\u94AE\u64CD\u4F5C\u680F",K0="\u9AD8\u7EA7\u5BB9\u5668",J0="\u5206\u7EC4",X0="\u6805\u683C\u5217",G0="\u6570\u636E\u5BB9\u5668",Q0="\u753B\u5E03",Z0="\u6362\u884C\u5BB9\u5668",Y0="\u6805\u683C\u7B49\u5206\u884C",p0="\u5217\u8868\u5BB9\u5668",e5="\u81EA\u7531\u9875\u9762",t5="\u5B9A\u4F4D\u5B50\u5BB9\u5668",u5="\u5B9A\u4F4D\u5BB9\u5668",n5="\u6805\u683C\u5E03\u5C40",a5="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",i5="\u660E\u7EC6\u5B50\u8868\u884C",r5="\u6807\u7B7E\u9875",l5="\u6807\u7B7E\u5355\u5143",o5="\u5DE5\u5177\u680F",s5="\u6279\u91CF\u63D0\u4EA4",c5="\u5BFC\u51FA\u8BB0\u5F55",d5="\u5217\u8868\u89C6\u56FE",h5="\u5F15\u7528\u5217\u8868",f5="\u9009\u9879\u4E00",E5="\u9009\u9879\u4E8C",v5="\u9009\u9879\u4E09",m5={isNotNumber:As,isNotString:Ds,isNotObject:bs,isNotArray:Ss,isNotBoolean:ws,runtimeRequired:$s,pleaseEnterCaption:Rs,pleaseEnterCaptionTip:Is,pleaseEnterRowCaption:Ls,pleaseEnterPlaceholder:Ms,pleaseEnterFieldCode:_s,pleaseEnterForm:Vs,pleaseEnterList:xs,pleaseEnterProcess:Ps,pleaseEnterLabel:qs,pleaseEnterValue:Os,bizKeyNotBindFiled:ks,pleaseSelectOneField:js,pleaseEnterNumberRange:Us,pleaseEnterAValueGreaterThanMin:Ns,pleaseEnterAValueLessThanMax:Ws,numberRangeSetError:Hs,stringRangeError:Ts,attachmentMaxSize:zs,pleaseEnterTotalScoreSetting:Ks,theTotalScoreMustNotBeLessThan1:Js,scoreDefaultValueRange:Xs,attachmentLimitError:Gs,PleaseReselectTheOptionalQuantity:Qs,TheMaximumLengthIsGreaterThanTheMinimumLength:Zs,TheMinimumLengthIsGreaterThanTheMaximumLength:Ys,PleaseSelectTheCorrectOptionSettings:ps,optionIdIsRepeat:ec,optionIsRequired:tc,pleaseEnterDataCode:uc,pleaseEnterValueFieldCode:nc,pleaseEnterSvcCode:ac,pleaseBindAtLeastOneDisplayValue:ic,pleaseSelectProvince:rc,pleaseSelectCity:lc,pleaseSelectDistrict:oc,limitRowsCannotBeLessThan0:sc,TheNumberOfRowsCannotBeLessThanMinRows:cc,pleaseEnterColumnWidth:dc,pleaseSetTheLogicalRelationshipOfAllRuleConditions:hc,pleaseCompleteAllRulesAndConditions:fc,pleaseSelectControl:Ec,pleaseSelectDashboard:vc,theViewNameCannotBeEmpty:mc,pleaseSelectOcrType:Bc,pleaseSelectAtLeastOneFieldToFillIn:Cc,pleaseChooseAtLeastOne:Fc,pleaseEnterButtonContent:yc,pleaseEnterDataCodeInDataSetting:gc,pleaseEnterValueFieldCodeInDataSetting:Ac,pleaseEnterSvcCodeInDataSetting:Dc,pleaseBindAtLeastOneDisplayValueInDataSetting:bc,rootNodeIsRequiredInDataSetting:Sc,pleaseEnterMaxHeight:wc,pleaseEnter:$c,pleaseEnterWatermark:Rc,pleaseEnterFileName:Ic,pleaseUploadAtLeastOnePrintTemplate:Lc,pleaseAssignBusiness:Mc,pleaseAssignExternal:_c,pleaseEnterAliasCode:Vc,pleaseSelectDataCode:xc,pleaseSelectSvcCode:Pc,pleaseSelectJoinFieldCode:qc,pleaseSelectMainFieldCode:Oc,pleaseSelectSortFieldCode:kc,batchDeleteButton:jc,batchPrintListButton:Uc,batchPrintRecordList:Nc,button:Wc,createFormListButton:Hc,dashboard:Tc,divider:zc,exportListButton:Kc,formSelectButton:Jc,importRecordListButton:Xc,invoiceCheckButton:Gc,link:Qc,listSelectButton:Zc,ListViewSelect:Yc,operationButton:pc,pagination:e0,submissionRecordListButton:t0,text:u0,textOcrButton:n0,title:a0,approvalStatusColumn:i0,array:r0,autoNumber:l0,custom:o0,decimal:s0,department:c0,employee:d0,file:h0,image:f0,location:E0,operation:v0,order:m0,people:B0,long:C0,timescope:F0,timestamp:y0,varchar:g0,gridLayoutWrap:A0,gridTable:D0,subTable:b0,address:S0,amount:w0,calc:$0,checkBox:R0,electronicSignature:I0,input:L0,number:M0,organizationSelection:_0,radio:V0,richText:x0,score:P0,searchNumberRange:q0,select:O0,selectMultiple:k0,selectRelation:j0,textarea:U0,tree:N0,vueFormItem:W0,vuePage:H0,WPS:T0,actionBar:z0,advancedContainer:K0,cardGroup:J0,col:X0,dataView:G0,grid:Q0,gridLayoutContainer:Z0,gridRow:Y0,listView:p0,page:e5,position:t5,positioningContainer:u5,row:n5,subtableColumn:a5,subtableRow:i5,tab:r5,tabPane:l5,toolbox:o5,batchSubmissionListButton:s5,exportRecordListButton:c5,listViewSelect:d5,referenceList:h5,optionOne:f5,optionTwo:E5,optionThird:v5},be={zhCN:Sr,enUS:gs,jaJP:m5},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 Se,B5=(Se=window.localStorage.getItem("locale"))!==null&&Se!==void 0?Se:"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 vt;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATEHOUR="datehour",t.DATEMIN="datemin",t.DATETIME="datetime"})(vt||(vt={}));var mt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",C5=mt+"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?mt:C5,a=Math.random()*n.length;e+=n[parseInt(String(a),10)]}return e}function we(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 F5(t){if(Array.isArray(t))return we(t)}function y5(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),b5(t,Re()?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 Re()?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 g5(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function A5(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function D5(){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 b5(t,e){return e&&(S5(e)==="object"||typeof e=="function")?e:y5(t)}function p(t,e){return p=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},p(t,e)}function yt(t){return F5(t)||A5(t)||w5(t)||D5()}function S5(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function w5(t,e){if(!!t){if(typeof t=="string")return we(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 we(t,e)}}function $e(t){var e=typeof Map=="function"?new Map:void 0;return $e=function(n){if(n===null||!g5(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)},$e(t)}function Re(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(Re=function(){return!!t})()}var Ie=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=Ie).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=Ie).log.apply(n,["\u{1F680} Driven Log:"+e[0]].concat(yt(a)))}function $5(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Me=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?$5(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",n}return e}($e(Error)),R5=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}(Me);function _e(t){throw new Me(t)}function At(t){throw new R5(t)}function I5(t){Ie.error(new Me(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 L5(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 M5(t,e,u){return e&&Dt(t.prototype,e),u&&Dt(t,u),t}function _5(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(){L5(this,t)}return M5(t,null,[{key:"getMessage",value:function(u){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a;return h("CMD."+u,n,be==null||(a=be[B5.split("-").join("")])===null||a===void 0?void 0:a[u])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(u,n){}}]),t}();_5(bt,"$i18n",bt.resetI18n());function V5(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)){Le("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 x5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},P5={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(v(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)},v=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})(x5)})(P5);var St={};Object.defineProperty(St,"__esModule",{value:!0});function Ve(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:Ve(e));{const e={};for(const u in t){const n=t[u];e[u]=typeof n!="object"||n===null?n:Ve(n)}return e}}var q5=St.default=Ve;function O5(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function q(t){if(t!==void 0)return(typeof t=="undefined"?"undefined":O5(t))==="object"?q5(t):t}function k5(t){return Object.prototype.toString.call(t)==="[object Object]"}function j5(t){return Array.isArray(t)}function U5(t){return t.reduce(function(e,u){return e.includes(u)||e.push(u),e},[])}function xe(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 N5(t){if(Array.isArray(t))return xe(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 W5(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 H5(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 T5(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 z5(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function K5(){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 Pe(t){return N5(t)||z5(t)||J5(t)||K5()}function J5(t,e){if(!!t){if(typeof t=="string")return xe(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 xe(t,e)}}function X5(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(v){return d([c,v])}}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(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 G5=function(){function t(){H5(this,t),Rt(this,"_events",new Map),Rt(this,"debug",!1)}return T5(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 W5(function(){var l,d,c,v,B,A,b,F,f,y,s,E;return X5(this,function(C){switch(C.label){case 0:if(l=r._events.get(u),d=[],!l)return[3,10];c=l.slice(),v=!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(v=(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&&gt.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(Pe(a))),[4,f.apply(null,Pe(a))];case 4:return y=C.sent(),r.debug&&gt.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(Pe(a),[y])),d.push(y),y===!1?[3,7]:[3,6];case 5:return s=C.sent(),I5(String(s)+":"+String(s.stack)),[3,6];case 6:return v=!0,[3,2];case 7:return[3,10];case 8:return E=C.sent(),B=!0,A=E,[3,10];case 9:try{!v&&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 Q5(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 Z5(t,e,u){return e&&It(t.prototype,e),u&&It(t,u),t}function Y5(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var p5=[{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"}],ed=function(){function t(){Q5(this,t)}return Z5(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}();Y5(ed,"events",p5);function ce(t,e){var u;(u=Object.getOwnPropertyDescriptors(t)[e])!=null&&u.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function qe(t,e,u){u!=="Runtime"&&(t.parent=e,ce(t,"parent"))}function Lt(t,e,u){t.forEach(n=>{qe(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(j5(t)&&a==="length"&&i===t.length)return!0;const l=Reflect.set(n,a,i,...r);return k5(i)&&qe(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=[],Oe=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=Oe.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__)&&_e(`${t} is can't register as a Control`);const i=this.staticControls.findIndex(r=>r.Designer.controlType===u.controlType);return i>-1&&(Le(`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__||_e(`${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 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 _e(`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(v=>v==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]),Oe.staticControlsRuntimeRules.set(e.Runtime.controlType,e.Property.RuntimeRules),e.Property.mode=t})}};let ee=Oe;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 ke{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 je{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 td{constructor(e){this.pc=new je(e==null?void 0:e.pc),this.mobile=new je(e==null?void 0:e.mobile)}}class de extends ke{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 ud{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 nd{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 ad 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 id{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 rd{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 ld{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 Ue{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 od{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 Ne{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 sd{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 Ne(c)))!=null?r:[],this.dataSet=(d=(l=e.dataSet)==null?void 0:l.map(c=>new Ut(c)))!=null?d:[]}}function We(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 Ne(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(v=>{var B;(B=this.displayBoList)==null||B.push(new Ue(v))})),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,We.call(this,e)}}class cd{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 dd{constructor(e){var u,n,a,i,r,l,d,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=(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=(v=e==null?void 0:e.openType)!=null?v:"modal",this.priorityProcess=(B=e==null?void 0:e.priorityProcess)!=null?B:!0}}class He{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 Ue(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 He(a)))!=null?n:[]}}class hd 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 He(i)))!=null?n:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class fd 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 Ed extends Wt{constructor(e){super(e),We.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 md{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 Bd{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 Te{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 Te{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"}}function Cd(t){var e;return(e=t==null?void 0:t.map(u=>new Te(u)))!=null?e:[]}function Fd(t){var e;return(e=t==null?void 0:t.map(u=>new Ht(u)))!=null?e:[]}class ve{}class yd 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 gd{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 Ad 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 Dd{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 bd{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 Sd 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 wd{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||{}),Tt=(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))(Tt||{}),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 $d{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 Rd{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:[],We.call(this,e)}}class Id{constructor(e){var u,n;this.key=(u=e.key)!=null?u:j(8),this.caption=(n=e.caption)!=null?n:""}}class zt{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 Ld{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 Kt{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 Jt(d)))!=null?l:[]:[],this.script=e==null?void 0:e.script}}class Jt{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 Md{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 Kt(r)))!=null?i:[]:[]}}class me{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 zt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:u}}O.Rules=me,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 _d(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 Be(t,e){return Be=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},Be(t,e)}function Vd(){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 Ce(t,e,u){return Vd()?Ce=Reflect.construct:Ce=function(a,i,r){var l=[null];l.push.apply(l,i);var d=Function.bind.apply(a,l),c=new d;return r&&Be(c,r.prototype),c},Ce.apply(null,arguments)}function xd(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||!xd(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 Ce(n,arguments,Xe(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Be(a,n)},Ge(t)}var Pd=/%[sdj%]/g,Xt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Xt=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(Pd,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 qd(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||qd(e)&&typeof t=="string"&&!t)}function Od(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 Gt(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 kd(t){var e=[];return Object.keys(t).forEach(function(u){e.push.apply(e,t[u])}),e}var Qt=function(t){_d(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 jd(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 Qt(y,Qe(y))):B()},F=kd(t);Gt(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=[],v=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 Qt(c,Qe(c))):B()};r.length||(n(c),B()),r.forEach(function(F){var f=t[F];i.indexOf(F)!==-1?Gt(f,u,b):Od(f,u,b)})});return v.catch(function(B){return B}),v}function Zt(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 Yt(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 pt(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 Ud(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 Nd(t,e,u,n,a){if(t.required&&e===void 0){pt(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 Wd(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,v=null,B=typeof e=="number",A=typeof e=="string",b=Array.isArray(e);if(B?v="number":A?v="string":b&&(v="array"),!v)return!1;b&&(c=e.length),A&&(c=e.replace(d,"_").length),i?c!==t.len&&n.push(L(a.messages[v].len,t.fullField,t.len)):r&&!l&&c<t.min?n.push(L(a.messages[v].min,t.fullField,t.min)):l&&!r&&c>t.max?n.push(L(a.messages[v].max,t.fullField,t.max)):r&&l&&(c<t.min||c>t.max)&&n.push(L(a.messages[v].range,t.fullField,t.min,t.max))}var K="enum";function Hd(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 Td(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 m={required:pt,whitespace:Ud,type:Nd,range:Wd,enum:Hd,pattern:Td};function zd(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();m.required(t,e,n,i,a,"string"),R(e,"string")||(m.type(t,e,n,i,a),m.range(t,e,n,i,a),m.pattern(t,e,n,i,a),t.whitespace===!0&&m.whitespace(t,e,n,i,a))}u(i)}function Kd(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();m.required(t,e,n,i,a),e!==void 0&&m.type(t,e,n,i,a)}u(i)}function Jd(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();m.required(t,e,n,i,a),e!==void 0&&(m.type(t,e,n,i,a),m.range(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();m.required(t,e,n,i,a),e!==void 0&&m.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(R(e)&&!t.required)return u();m.required(t,e,n,i,a),R(e)||m.type(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();m.required(t,e,n,i,a),e!==void 0&&(m.type(t,e,n,i,a),m.range(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();m.required(t,e,n,i,a),e!==void 0&&(m.type(t,e,n,i,a),m.range(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(e==null&&!t.required)return u();m.required(t,e,n,i,a,"array"),e!=null&&(m.type(t,e,n,i,a),m.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();m.required(t,e,n,i,a),e!==void 0&&m.type(t,e,n,i,a)}u(i)}var e3="enum";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();m.required(t,e,n,i,a),e!==void 0&&m[e3](t,e,n,i,a)}u(i)}function u3(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();m.required(t,e,n,i,a),R(e,"string")||m.pattern(t,e,n,i,a)}u(i)}function n3(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(m.required(t,e,n,i,a),!R(e,"date")){var l;e instanceof Date?l=e:l=new Date(e),m.type(t,l,n,i,a),l&&m.range(t,l.getTime(),n,i,a)}}u(i)}function a3(t,e,u,n,a){var i=[],r=Array.isArray(e)?"array":typeof e;m.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();m.required(t,e,n,r,a,i),R(e,i)||m.type(t,e,n,r,a)}u(r)}function i3(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();m.required(t,e,n,i,a)}u(i)}var ne={string:zd,method:Kd,number:Jd,boolean:Xd,regexp:Gd,integer:Qd,float:Zd,array:Yd,object:pd,enum:t3,pattern:u3,date:n3,url:Ye,hex:Ye,email:Ye,required:a3,any:i3};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=Yt(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()),Yt(c,r.messages),r.messages=c}else r.messages=this.messages();var v,B,A={},b=r.keys||Object.keys(this.rules);b.forEach(function(f){v=a.rules[f],B=i[f],v.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 jd(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(Zt(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(Zt(s)):r.error&&(g=[r.error(s,L(r.messages.required,s.field))]),y(g);var x={};if(s.defaultField)for(var lu in f.value)f.value.hasOwnProperty(lu)&&(x[lu]=s.defaultField);x=_(_({},x),f.rule.fields);for(var J in x)if(x.hasOwnProperty(J)){var y3=Array.isArray(x[J])?x[J]:[x[J]];x[J]=y3.map(C.bind(null,J))}var ou=new N(x);ou.messages(r.messages),f.rule.options&&(f.rule.options.messages=r.messages,f.rule.options.error=r.error),ou.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=Xt,N.messages=et,N.validators=ne;const r3={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 eu(t,e={}){const u=new N(t);return u.messages(Object.assign(r3,e)),u}const tu=new G5;class I{constructor(e){var A,b,F,f;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=nu,this.removeSetting=uu,this._callControlHooks("preInstance",e);const{controlName:u,controlIcon:n,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:l,name:d,setting:c,slots:v,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(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 tu.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),V5(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=eu(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:v,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),v!==void 0&&(F.maxLength=v),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=uu,I.updateSettingItem=nu;function uu(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 nu(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,v;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=(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: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=U5(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 l3(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 au(t){return(t==null?void 0:t.dataCode)!==void 0&&(t==null?void 0:t.fieldCode)!==void 0}class ut extends me{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(au(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 iu 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,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=(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=(v=e==null?void 0:e.requiredMessage)!=null?v:"",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=iu;class o3 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 ru extends I{constructor(e){super(e),this.controlType="form",this.props=new ae(e==null?void 0:e.props)}}ru.controlEventKeys=["on_change","on_focus","on_blur"];class s3 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 c3=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=c3;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 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,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})})}}Fe.controlFieldType=Z.LIST;class d3 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 me{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 ye 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 ke(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}}ye.Rules=it;class h3 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 f3 extends I{constructor(e){super(e),this.controlType="column",this.props=new ye(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 E3 extends k{constructor(e){super(e),this.controlType="column",this.props=new ye(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 v3 extends W{constructor(e){super(e),this.controlType="search",this.props=new rt(e==null?void 0:e.props)}}class m3 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 B3 extends W{constructor(e){super(e),this.controlType="wrap",this.props=new lt(e==null?void 0:e.props)}}class C3 extends nt{constructor(e){super(e),this.controlType="wrap",this.props=new lt(e==null?void 0:e.props)}}function F3(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=bd,o.AmountDataBind=yd,o.AmountValue=gd,o.AutoWidth=ke,o.BaseControlProperty=ae,o.BaseControlPropertyRules=ut,o.BaseControlPropertyRuntimeRules=iu,o.BaseStyle=zt,o.COMMON_SETTING_TYPE=Tt,o.CalcDataBind=Sd,o.CalcValue=wd,o.ColumnControlProperty=ye,o.ColumnControlPropertyRules=it,o.ColumnOptionAndDataSourcePropertyRules=h3,o.CustomAttributeItem=He,o.CustomPermissionItem=Id,o.DataBind=M,o.DataSourceBind=Ee,o.DataSourceDataSetValue=Ut,o.DataSourceOrderItem=Ne,o.DataSourceParamItem=sd,o.DataStorageDoc=nd,o.DesignerColumnControl=f3,o.DesignerControl=I,o.DesignerFormControl=ru,o.DesignerLayoutControl=W,o.DesignerListControl=Fe,o.DesignerSearchControl=v3,o.DesignerWrapControl=B3,o.DisplayBoListItem=Ue,o.FieldBindItem=qt,o.FieldFilterCondition=te,o.FieldFilterConditions=z,o.FillBackBind=vd,o.FillPayloadBind=Ed,o.FormBind=he,o.FormSelectBind=ad,o.ImageOptionSetting=Ht,o.JoinRelation=ld,o.Language=md,o.LayoutControlProperty=ie,o.LeftVariable=kt,o.LinkOperationOption=dd,o.ListBind=id,o.ListControlProperty=at,o.MetaAutoWidth=ud,o.MetaRowHeight=td,o.MetaWidth=de,o.MultistageFillingItem=jt,o.ObjectDataBind=ve,o.OperationItem=$d,o.OptObject=Ld,o.OptionAndDataSourcePropertyRules=o3,o.OptionDisplayConfigItem=od,o.OptionSetting=Te,o.OrganizationDataSourceBind=hd,o.PAGE_STATUS=Ke,o.Property=O,o.PropertyRules=me,o.PropertyRuntimeRules=Je,o.RangeDataBind=Ad,o.RangeDateValue=Dd,o.RegisterControls=ee,o.RegularRules=Bd,o.RightVariable=fe,o.RowHeight=je,o.RowStyle=Md,o.RowStyleRule=Kt,o.RowStyleSettings=Jt,o.RuntimeColumnControl=E3,o.RuntimeControl=k,o.RuntimeFormControl=s3,o.RuntimeLayoutControl=nt,o.RuntimeListControl=d3,o.RuntimeSearchControl=m3,o.RuntimeWrapControl=C3,o.SearchControlProperty=rt,o.SelectedContentConfig=cd,o.SubListItem=Ot,o.SubListPageConfig=rd,o.SuperDataSourceBind=Nt,o.TreeDataSourceBind=fd,o.ViewOperationItem=Rd,o.WrapControlProperty=lt,o.controlHooksEmitter=tu,o.createValidator=eu,o.defineArrayParent=Lt,o.defineControlArrayToProperty=U,o.defineParent=qe,o.initImageOptions=Fd,o.initLinkOperationRules=F3,o.initOptionAndDataSourceRules=tt,o.initOptions=Cd,o.initSuperDataSourceRules=l3,o.isDataBind=au,o.setPropertyDontEnum=ce,Object.defineProperty(o,"__esModule",{value:!0})});
1
+ var E3=Object.defineProperty,m3=Object.defineProperties;var C3=Object.getOwnPropertyDescriptors;var uu=Object.getOwnPropertySymbols,B3=Object.getPrototypeOf,y3=Object.prototype.hasOwnProperty,F3=Object.prototype.propertyIsEnumerable,g3=Reflect.get;var nu=(s,o,w)=>o in s?E3(s,o,{enumerable:!0,configurable:!0,writable:!0,value:w}):s[o]=w,W=(s,o)=>{for(var w in o||(o={}))y3.call(o,w)&&nu(s,w,o[w]);if(uu)for(var w of uu(o))F3.call(o,w)&&nu(s,w,o[w]);return s},ne=(s,o)=>m3(s,C3(o));var st=(s,o,w)=>g3(B3(s),w,o);var ae=(s,o,w)=>new Promise((ye,ie)=>{var Fe=M=>{try{U(w.next(M))}catch(Q){ie(Q)}},ge=M=>{try{U(w.throw(M))}catch(Q){ie(Q)}},U=M=>M.done?ye(M.value):Promise.resolve(M.value).then(Fe,ge);U((w=w.apply(s,o)).next())});(function(s,o){typeof exports=="object"&&typeof module!="undefined"?o(exports):typeof define=="function"&&define.amd?define(["exports"],o):(s=typeof globalThis!="undefined"?globalThis:s||self,o(s.modelDrivenCore={}))})(this,function(s){"use strict";const o=(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,h)=>{h===0?a=i[l]:a&&(a=a[l])});let r="";return a&&(r=a),e&&Object.keys(e).forEach(l=>{const h=e[l];r=r.replace(new RegExp(`\\{\\s*${l}\\s*\\}`,"g"),h)}),r||(u?r=u:r=t),r};var w="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",ye="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",ie="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",ge="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",U="{caption}\u5FC5\u586B",M="\u8BF7\u8F93\u5165\u6807\u9898",Q="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",au="\u8BF7\u8F93\u5165\u884C\u6807\u9898",iu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",ru="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",lu="\u8BF7\u7ED1\u5B9A\u8868\u5355",su="\u8BF7\u7ED1\u5B9A\u5217\u8868",ou="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",cu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",du="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",hu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",fu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",vu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Eu="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",mu="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Cu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Bu="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",yu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Fu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",gu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Du="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Au="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",bu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",wu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Su="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",$u="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Ru="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Lu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Pu="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ou="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Iu="\u8BF7\u7ED1\u5B9A\u670D\u52A1",_u="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Mu="\u8BF7\u9009\u62E9\u7701",Tu="\u8BF7\u9009\u62E9\u5E02",qu="\u8BF7\u9009\u62E9\u533A",xu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Vu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Nu="\u8BF7\u8F93\u5165\u5217\u5BBD",ku="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",ju="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Wu="\u8BF7\u9009\u62E9\u63A7\u4EF6",Hu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",zu="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Ku="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ju="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Uu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Qu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Xu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Gu="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Yu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",pu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",en="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",tn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",un="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",nn="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",an="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",rn="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ln="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",sn="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",on="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",cn="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",dn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",hn="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",fn="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",vn="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",En="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",mn="\u6279\u91CF\u5220\u9664",Cn="\u6279\u91CF\u6253\u5370",Bn="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",yn="\u6309\u94AE",Fn="\u521B\u5EFA\u5355\u636E",gn="\u4EEA\u8868\u76D8",Dn="\u5206\u5272\u7EBF",An="\u5BFC\u51FA",bn="\u8868\u5355\u64CD\u4F5C",wn="\u5BFC\u5165",Sn="\u53D1\u7968\u8BC6\u522B",$n="\u94FE\u63A5",Rn="\u5217\u8868\u9009\u62E9",Ln="\u5217\u8868\u89C6\u56FE",Pn="\u64CD\u4F5C\u6309\u94AE",On="\u5206\u9875",In="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",_n="\u8BF4\u660E\u6587\u5B57",Mn="\u6587\u5B57\u8BC6\u522B",Tn="\u6807\u9898\u7EC4\u4EF6",qn="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",xn="\u6570\u7EC4",Vn="\u81EA\u52A8\u7F16\u53F7",Nn="\u81EA\u5B9A\u4E49",kn="\u6570\u503C",jn="\u90E8\u95E8",Wn="\u4EBA\u5458",Hn="\u9644\u4EF6",zn="\u56FE\u7247",Kn="\u5730\u5740",Jn="\u64CD\u4F5C",Un="\u5E8F\u53F7",Qn="\u4EBA\u5458",Zn="\u957F\u6587\u672C",Xn="\u65E5\u671F\u533A\u95F4",Gn="\u65E5\u671F",Yn="\u77ED\u6587\u672C",pn="\u6362\u884C\u5BB9\u5668Wrap",ea="\u8868\u683C",ta="\u660E\u7EC6\u5B50\u8868",ua="\u5730\u5740",na="\u91D1\u989D",aa="\u8BA1\u7B97\u516C\u5F0F",ia="\u591A\u9009",ra="\u7535\u5B50\u7B7E\u7AE0",la="\u5355\u884C\u6587\u672C",sa="\u6570\u5B57",oa="\u4E1A\u52A1\u7EC4\u7EC7",ca="\u5355\u9009",da="\u5BCC\u6587\u672C",ha="\u8BC4\u5206",fa="\u6570\u5B57\u533A\u95F4",va="\u4E0B\u62C9\u5355\u9009",Ea="\u4E0B\u62C9\u591A\u9009",ma="\u5173\u8054\u5355\u9009",Ca="\u591A\u884C\u6587\u672C",Ba="\u6811",ya="Vue\u5BB9\u5668",Fa="Vue\u9875\u9762",ga="\u5728\u7EBF\u6587\u6863",Da="\u6309\u94AE\u64CD\u4F5C\u680F",Aa="\u9AD8\u7EA7\u5BB9\u5668",ba="\u5206\u7EC4",wa="\u6805\u683C\u5217",Sa="\u6570\u636E\u5BB9\u5668",$a="\u753B\u5E03",Ra="\u6362\u884C\u5BB9\u5668",La="\u6805\u683C\u7B49\u5206\u884C",Pa="\u5217\u8868\u5BB9\u5668",Oa="\u81EA\u7531\u9875\u9762",Ia="\u5B9A\u4F4D\u5B50\u5BB9\u5668",_a="\u5B9A\u4F4D\u5BB9\u5668",Ma="\u6805\u683C\u5E03\u5C40",Ta="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",qa="\u660E\u7EC6\u5B50\u8868\u884C",xa="\u6807\u7B7E\u9875",Va="\u6807\u7B7E\u5355\u5143",Na="\u5DE5\u5177\u680F",ka="\u6279\u91CF\u63D0\u4EA4",ja="\u5BFC\u51FA\u8BB0\u5F55",Wa="\u5217\u8868\u89C6\u56FE",Ha="\u7ED3\u675F\u65F6\u95F4",za="\u5F00\u59CB\u65F6\u95F4",Ka="\u5355\u4F4D",Ja="\u7ED3\u679C",Ua="\u5E01\u79CD",Qa="\u7ED3\u675F\u65E5\u671F",Za="\u5F00\u59CB\u65E5\u671F",Xa="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Ga="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",Ya="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",pa="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",ei="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",ti="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",ui="\u8BF7\u9009\u62E9",ni="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ai="\u8BF7\u9009\u62E9\u90E8\u95E8",ii="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",ri="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",li="\u8BF7\u9009\u62E9\u5730\u5740",si="\u5F39\u7A97\u786E\u8BA4\u65F6",oi="\u6807\u7B7E\u9875\u5207\u6362\u65F6",ci="\u884C\u9009\u4E2D\u65F6",di="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",hi="\u884C\u5220\u9664\u524D",fi="\u884C\u70B9\u51FB\u65F6",vi="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",Ei="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",mi="\u91CD\u547D\u540D\u65F6",Ci="\u4FDD\u5B58\u6587\u4EF6\u65F6",Bi="\u6253\u5F00\u6587\u4EF6\u65F6",yi="\u83B7\u53D6\u7126\u70B9\u65F6",Fi="\u5931\u53BB\u7126\u70B9\u65F6",gi="\u7528\u6237\u8F93\u5165\u65F6",Di="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",Ai="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",bi="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",wi="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",Si="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",$i="\u641C\u7D22\u65F6",Ri="\u503C\u53D1\u751F\u53D8\u5316\u65F6",Li="\u6267\u884C\u5B8C\u6210\u65F6",Pi="\u70B9\u51FB\u65F6",Oi="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",Ii="\u8BF7\u8F93\u5165\u65E5\u671F",_i="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Mi="\u8BF7\u8F93\u5165",Ti="\u9ED8\u8BA4\u6A21\u7248",qi="\u5DE6\u53F3\u5E03\u5C40",xi="\u4E0A\u4E0B\u5E03\u5C40",Vi="\u53EA\u8BFB",Ni="\u5FC5\u586B",ki="\u63D0\u793A\u6587\u5B57",ji="\u9690\u85CF\u6807\u9898",Wi="\u6807\u9898\u5FC5\u586B",Hi="\u7EC4\u7EC7\u5F62\u6001",zi="\u4E1A\u52A1\u7C7B\u578B",Ki="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Ji="\u9690\u85CF",Ui="\u6D41\u7A0B\u72B6\u6001",Qi="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Zi="\u5220\u9664",Xi="\u7F16\u8F91",Gi="\u67E5\u770B",Yi="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",pi="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",er="\u5145\u6EE1\u6574\u884C",tr="\u6700\u5C0F\u503C",ur="\u6700\u5927\u503C",nr="\u65B0\u5EFA\u6587\u6863",ar="\u91CD\u7F6E",ir="\u67E5\u8BE2",rr="\u660E\u7EC6",lr="\u6253\u5370",sr="\u4FDD\u5B58\u8349\u7A3F",or="\u4FDD\u5B58",cr="\u53D6\u6D88",dr="\u4E0A\u4F20\u56FE\u7247",hr="\u53D1\u8D77\u7B7E\u7F72",fr="\u4E0A\u4F20\u9644\u4EF6",vr="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",Er="\u5F15\u7528\u5217\u8868",mr="\u9009\u9879\u4E00",Cr="\u9009\u9879\u4E8C",Br="\u9009\u9879\u4E09",yr={isNotNumber:w,isNotString:ye,isNotObject:ie,isNotArray:Fe,isNotBoolean:ge,runtimeRequired:U,pleaseEnterCaption:M,pleaseEnterCaptionTip:Q,pleaseEnterRowCaption:au,pleaseEnterPlaceholder:iu,pleaseEnterFieldCode:ru,pleaseEnterForm:lu,pleaseEnterList:su,pleaseEnterProcess:ou,pleaseEnterLabel:cu,pleaseEnterValue:du,bizKeyNotBindFiled:hu,pleaseSelectOneField:fu,pleaseEnterNumberRange:vu,pleaseEnterAValueGreaterThanMin:Eu,pleaseEnterAValueLessThanMax:mu,numberRangeSetError:Cu,stringRangeError:Bu,attachmentMaxSize:yu,pleaseEnterTotalScoreSetting:Fu,theTotalScoreMustNotBeLessThan1:gu,scoreDefaultValueRange:Du,attachmentLimitError:Au,PleaseReselectTheOptionalQuantity:bu,TheMaximumLengthIsGreaterThanTheMinimumLength:wu,TheMinimumLengthIsGreaterThanTheMaximumLength:Su,PleaseSelectTheCorrectOptionSettings:$u,optionIdIsRepeat:Ru,optionIsRequired:Lu,pleaseEnterDataCode:Pu,pleaseEnterValueFieldCode:Ou,pleaseEnterSvcCode:Iu,pleaseBindAtLeastOneDisplayValue:_u,pleaseSelectProvince:Mu,pleaseSelectCity:Tu,pleaseSelectDistrict:qu,limitRowsCannotBeLessThan0:xu,TheNumberOfRowsCannotBeLessThanMinRows:Vu,pleaseEnterColumnWidth:Nu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ku,pleaseCompleteAllRulesAndConditions:ju,pleaseSelectControl:Wu,pleaseSelectAtLeastOneColumn:Hu,pleaseSelectFillBackMode:zu,pleaseSelectDashboard:Ku,rootNodeIsRequired:Ju,theViewNameCannotBeEmpty:Uu,pleaseSelectOcrType:Qu,pleaseSelectAtLeastOneFieldToFillIn:Zu,pleaseChooseAtLeastOne:Xu,pleaseEnterButtonContent:Gu,pleaseEnterDataCodeInDataSetting:Yu,pleaseEnterValueFieldCodeInDataSetting:pu,pleaseEnterSvcCodeInDataSetting:en,pleaseBindAtLeastOneDisplayValueInDataSetting:tn,rootNodeIsRequiredInDataSetting:un,pleaseEnterMaxHeight:nn,pleaseEnterWatermark:an,pleaseEnterFileName:rn,pleaseUploadAtLeastOnePrintTemplate:ln,pleaseAssignBusiness:sn,pleaseAssignExternal:on,pleaseEnterAliasCode:cn,pleaseSelectDataCode:dn,pleaseSelectSvcCode:hn,pleaseSelectJoinFieldCode:fn,pleaseSelectMainFieldCode:vn,pleaseSelectSortFieldCode:En,batchDeleteButton:mn,batchPrintListButton:Cn,batchPrintRecordList:Bn,button:yn,createFormListButton:Fn,dashboard:gn,divider:Dn,exportListButton:An,formSelectButton:bn,importRecordListButton:wn,invoiceCheckButton:Sn,link:$n,listSelectButton:Rn,ListViewSelect:Ln,operationButton:Pn,pagination:On,submissionRecordListButton:In,text:_n,textOcrButton:Mn,title:Tn,approvalStatusColumn:qn,array:xn,autoNumber:Vn,custom:Nn,decimal:kn,department:jn,employee:Wn,file:Hn,image:zn,location:Kn,operation:Jn,order:Un,people:Qn,long:Zn,timescope:Xn,timestamp:Gn,varchar:Yn,gridLayoutWrap:pn,gridTable:ea,subTable:ta,address:ua,amount:na,calc:aa,checkBox:ia,electronicSignature:ra,input:la,number:sa,organizationSelection:oa,radio:ca,richText:da,score:ha,searchNumberRange:fa,select:va,selectMultiple:Ea,selectRelation:ma,textarea:Ca,tree:Ba,vueFormItem:ya,vuePage:Fa,WPS:ga,actionBar:Da,advancedContainer:Aa,cardGroup:ba,col:wa,dataView:Sa,grid:$a,gridLayoutContainer:Ra,gridRow:La,listView:Pa,page:Oa,position:Ia,positioningContainer:_a,row:Ma,subtableColumn:Ta,subtableRow:qa,tab:xa,tabPane:Va,toolbox:Na,batchSubmissionListButton:ka,exportRecordListButton:ja,listViewSelect:Wa,endTime:Ha,startTime:za,unit:Ka,result:Ja,currency:Ua,endDate:Qa,startDate:Za,pleaseSelectCompanyName:Xa,pleaseSelectPhoneOrEmail:Ga,pleaseSelectSignType:Ya,pleaseSelectSigner:pa,pleaseSelectOnlyOne:ei,pleaseSelectSignFile:ti,pleaseSelect:ui,pleaseSelectOrg:ni,pleaseSelectDept:ai,pleaseSelectEndDate:ii,pleaseSelectStartDate:ri,pleaseChooseAddress:li,modalConfirm:si,tabChange:oi,rowSelected:ci,listDataImport:di,rowDelete:hi,rowClick:fi,cellRender:vi,onClickBtn:Ei,rename:mi,onSaveFile:Ci,onOpenFile:Bi,onFocus:yi,onBlur:Fi,onInput:gi,listDataAdd:Di,listDataDelete:Ai,listDataBack:bi,listDataCreate:wi,listDataChange:Si,search:$i,valueChange:Ri,finished:Li,click:Pi,pleaseEnterNameorEmail:Oi,pleaseEnterDate:Ii,pleaseEnterAutonumber:_i,pleaseEnter:Mi,defaultTemplate:Ti,left:qi,top:xi,default:"\u666E\u901A",readonly:Vi,required:Ni,textTip:ki,hideCaption:ji,titleRequired:Wi,organizationalForm:Hi,businessType:zi,deleteConfirm:Ki,hide:Ji,processStatus:Ui,approvedDocuments:Qi,delete:Zi,edit:Xi,view:Gi,loadCtrlErrorTip:Yi,loadCtrlError:pi,fullLine:er,min:tr,max:ur,createWPS:nr,reset:ar,query:ir,detailed:rr,print:lr,draft:sr,save:or,cancel:cr,uploadImg:dr,signature:hr,uploadFile:fr,linkContent:vr,referenceList:Er,optionOne:mr,optionTwo:Cr,optionThird:Br},Fr="Please enter a number",gr="Please enter a string",Dr="Please enter an object",Ar="Please enter an array",br="Please enter a boolean",wr="{caption} Required",Sr="Please enter the title",$r="Please enter the bubble prompt",Rr="Please enter the row title",Lr="Please enter the prompt text",Pr="Please bind data items",Or="Please bind the form",Ir="Please bind the list",_r="Please bind the process",Mr="Please enter the displayed value",Tr="Please enter the stored value",qr="The document number is not bound to the data item",xr="Please select at least one display field",Vr="Please enter a value greater than or equal to {min} and less than or equal to {max}",Nr="Please enter a value greater than or equal to {min}",kr="Please enter a value less than or equal to {max}",jr="The value range is set incorrectly",Wr="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Hr="The attachment size must be between 0MB and 1000MB",zr="Please fill in the total score setting",Kr="The total score cannot be less than 1",Jr="The default value must be between {min} and {max}",Ur="The number of attachment uploads exceeds the limit",Qr="Please re-select the optional quantity",Zr="The maximum length of the control must be greater than the minimum length",Xr="The minimum length of the control must be less than the maximum length",Gr="Please select the correct option setting",Yr="Option ID cannot be repeated",pr="Please enter at least one option",el="Please bind the data source",tl="Please bind the stored value",ul="Please bind the service",nl="At least one display value must be bound",al="Please select a province",il="Please select a city",rl="Please select a district",ll="The minimum number of lines to fill in cannot be less than 0",sl="The number of rows cannot be less than {min} rows",ol="Please enter the column width",cl="Please set the logical relationship of all rule conditions",dl="Please complete all rules and conditions",hl="please select control",fl="Please select the dashboard",vl="View name cannot be empty",El="Please select recognition type",ml="Please select at least one field to fill in",Cl="Please select at least one",Bl="Please enter the button title",yl="Please bind the business model in the data settings",Fl="Please bind storage values in data settings",gl="Please bind the service in the data settings",Dl="Please bind at least one display value in the data settings",Al="Please select the root node in the data settings",bl="Please enter the maximum height",wl="The input content cannot be empty",Sl="Watermark cannot be empty",$l="File name cannot be empty",Rl="Please upload at least one printing template!\uFF01",Ll="Please select a specific business department",Pl="Please select a specified external organization",Ol="Please enter a sub table alias",Il="Please select the associated table to set the business model",_l="Please select the association table to set the binding service",Ml="Select associated sub table fields",Tl="Please select the associated main table field",ql="Please select the sort field",xl="\u6279\u91CF\u5220\u9664",Vl="\u6279\u91CF\u6253\u5370",Nl="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",kl="\u6309\u94AE",jl="\u521B\u5EFA\u5355\u636E",Wl="\u4EEA\u8868\u76D8",Hl="\u5206\u5272\u7EBF",zl="\u5BFC\u51FA",Kl="\u8868\u5355\u64CD\u4F5C",Jl="\u5BFC\u5165",Ul="\u53D1\u7968\u8BC6\u522B",Ql="\u94FE\u63A5",Zl="\u5217\u8868\u9009\u62E9",Xl="\u5217\u8868\u89C6\u56FE",Gl="\u64CD\u4F5C\u6309\u94AE",Yl="\u5206\u9875",pl="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",es="\u8BF4\u660E\u6587\u5B57",ts="\u6587\u5B57\u8BC6\u522B",us="\u6807\u9898\u7EC4\u4EF6",ns="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",as="\u6570\u7EC4",is="\u81EA\u52A8\u7F16\u53F7",rs="\u81EA\u5B9A\u4E49",ls="\u6570\u503C",ss="\u90E8\u95E8",os="\u4EBA\u5458",cs="\u9644\u4EF6",ds="\u56FE\u7247",hs="\u5730\u5740",fs="\u64CD\u4F5C",vs="\u5E8F\u53F7",Es="\u4EBA\u5458",ms="\u957F\u6587\u672C",Cs="\u65E5\u671F\u533A\u95F4",Bs="\u65E5\u671F",ys="\u77ED\u6587\u672C",Fs="\u6362\u884C\u5BB9\u5668Wrap",gs="\u8868\u683C",Ds="\u660E\u7EC6\u5B50\u8868",As="\u5730\u5740",bs="\u91D1\u989D",ws="\u8BA1\u7B97\u516C\u5F0F",Ss="\u591A\u9009",$s="\u7535\u5B50\u7B7E\u7AE0",Rs="\u5355\u884C\u6587\u672C",Ls="\u6570\u5B57",Ps="\u4E1A\u52A1\u7EC4\u7EC7",Os="\u5355\u9009",Is="\u5BCC\u6587\u672C",_s="\u8BC4\u5206",Ms="\u6570\u5B57\u533A\u95F4",Ts="\u4E0B\u62C9\u5355\u9009",qs="\u4E0B\u62C9\u591A\u9009",xs="\u5173\u8054\u5355\u9009",Vs="\u591A\u884C\u6587\u672C",Ns="\u6811",ks="Vue\u5BB9\u5668",js="Vue\u9875\u9762",Ws="\u5728\u7EBF\u6587\u6863",Hs="\u6309\u94AE\u64CD\u4F5C\u680F",zs="\u9AD8\u7EA7\u5BB9\u5668",Ks="\u5206\u7EC4",Js="\u6805\u683C\u5217",Us="\u6570\u636E\u5BB9\u5668",Qs="\u753B\u5E03",Zs="\u6362\u884C\u5BB9\u5668",Xs="\u6805\u683C\u7B49\u5206\u884C",Gs="\u5217\u8868\u5BB9\u5668",Ys="\u81EA\u7531\u9875\u9762",ps="\u5B9A\u4F4D\u5B50\u5BB9\u5668",eo="\u5B9A\u4F4D\u5BB9\u5668",to="\u6805\u683C\u5E03\u5C40",uo="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",no="\u660E\u7EC6\u5B50\u8868\u884C",ao="\u6807\u7B7E\u9875",io="\u6807\u7B7E\u5355\u5143",ro="\u5DE5\u5177\u680F",lo="\u6279\u91CF\u63D0\u4EA4",so="\u5BFC\u51FA\u8BB0\u5F55",oo="\u5217\u8868\u89C6\u56FE",co="\u5F15\u7528\u5217\u8868",ho="\u9009\u9879\u4E00",fo="\u9009\u9879\u4E8C",vo="\u9009\u9879\u4E09",Eo={isNotNumber:Fr,isNotString:gr,isNotObject:Dr,isNotArray:Ar,isNotBoolean:br,runtimeRequired:wr,pleaseEnterCaption:Sr,pleaseEnterCaptionTip:$r,pleaseEnterRowCaption:Rr,pleaseEnterPlaceholder:Lr,pleaseEnterFieldCode:Pr,pleaseEnterForm:Or,pleaseEnterList:Ir,pleaseEnterProcess:_r,pleaseEnterLabel:Mr,pleaseEnterValue:Tr,bizKeyNotBindFiled:qr,pleaseSelectOneField:xr,pleaseEnterNumberRange:Vr,pleaseEnterAValueGreaterThanMin:Nr,pleaseEnterAValueLessThanMax:kr,numberRangeSetError:jr,stringRangeError:Wr,attachmentMaxSize:Hr,pleaseEnterTotalScoreSetting:zr,theTotalScoreMustNotBeLessThan1:Kr,scoreDefaultValueRange:Jr,attachmentLimitError:Ur,PleaseReselectTheOptionalQuantity:Qr,TheMaximumLengthIsGreaterThanTheMinimumLength:Zr,TheMinimumLengthIsGreaterThanTheMaximumLength:Xr,PleaseSelectTheCorrectOptionSettings:Gr,optionIdIsRepeat:Yr,optionIsRequired:pr,pleaseEnterDataCode:el,pleaseEnterValueFieldCode:tl,pleaseEnterSvcCode:ul,pleaseBindAtLeastOneDisplayValue:nl,pleaseSelectProvince:al,pleaseSelectCity:il,pleaseSelectDistrict:rl,limitRowsCannotBeLessThan0:ll,TheNumberOfRowsCannotBeLessThanMinRows:sl,pleaseEnterColumnWidth:ol,pleaseSetTheLogicalRelationshipOfAllRuleConditions:cl,pleaseCompleteAllRulesAndConditions:dl,pleaseSelectControl:hl,pleaseSelectDashboard:fl,theViewNameCannotBeEmpty:vl,pleaseSelectOcrType:El,pleaseSelectAtLeastOneFieldToFillIn:ml,pleaseChooseAtLeastOne:Cl,pleaseEnterButtonContent:Bl,pleaseEnterDataCodeInDataSetting:yl,pleaseEnterValueFieldCodeInDataSetting:Fl,pleaseEnterSvcCodeInDataSetting:gl,pleaseBindAtLeastOneDisplayValueInDataSetting:Dl,rootNodeIsRequiredInDataSetting:Al,pleaseEnterMaxHeight:bl,pleaseEnter:wl,pleaseEnterWatermark:Sl,pleaseEnterFileName:$l,pleaseUploadAtLeastOnePrintTemplate:Rl,pleaseAssignBusiness:Ll,pleaseAssignExternal:Pl,pleaseEnterAliasCode:Ol,pleaseSelectDataCode:Il,pleaseSelectSvcCode:_l,pleaseSelectJoinFieldCode:Ml,pleaseSelectMainFieldCode:Tl,pleaseSelectSortFieldCode:ql,batchDeleteButton:xl,batchPrintListButton:Vl,batchPrintRecordList:Nl,button:kl,createFormListButton:jl,dashboard:Wl,divider:Hl,exportListButton:zl,formSelectButton:Kl,importRecordListButton:Jl,invoiceCheckButton:Ul,link:Ql,listSelectButton:Zl,ListViewSelect:Xl,operationButton:Gl,pagination:Yl,submissionRecordListButton:pl,text:es,textOcrButton:ts,title:us,approvalStatusColumn:ns,array:as,autoNumber:is,custom:rs,decimal:ls,department:ss,employee:os,file:cs,image:ds,location:hs,operation:fs,order:vs,people:Es,long:ms,timescope:Cs,timestamp:Bs,varchar:ys,gridLayoutWrap:Fs,gridTable:gs,subTable:Ds,address:As,amount:bs,calc:ws,checkBox:Ss,electronicSignature:$s,input:Rs,number:Ls,organizationSelection:Ps,radio:Os,richText:Is,score:_s,searchNumberRange:Ms,select:Ts,selectMultiple:qs,selectRelation:xs,textarea:Vs,tree:Ns,vueFormItem:ks,vuePage:js,WPS:Ws,actionBar:Hs,advancedContainer:zs,cardGroup:Ks,col:Js,dataView:Us,grid:Qs,gridLayoutContainer:Zs,gridRow:Xs,listView:Gs,page:Ys,position:ps,positioningContainer:eo,row:to,subtableColumn:uo,subtableRow:no,tab:ao,tabPane:io,toolbox:ro,batchSubmissionListButton:lo,exportRecordListButton:so,listViewSelect:oo,referenceList:co,optionOne:ho,optionTwo:fo,optionThird:vo},mo="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Co="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bo="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yo="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fo="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",go="{caption}\u5FC5\u9808",Do="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ao="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",bo="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wo="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",So="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$o="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ro="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Lo="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Po="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oo="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Io="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",_o="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Mo="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",To="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",qo="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xo="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Vo="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",No="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ko="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",jo="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wo="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ho="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",zo="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ko="\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",Jo="\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",Uo="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qo="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Zo="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Xo="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Go="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Yo="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",po="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ec="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",tc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",uc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",nc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ac="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ic="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",rc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",lc="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",sc="please select control",oc="\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",dc="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",hc="\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",fc="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",vc="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ec="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",mc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Cc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Bc="\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",yc="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fc="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",gc="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Dc="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Ac="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",bc="\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",wc="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Sc="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",$c="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Rc="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",Lc="\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",Pc="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",Oc="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ic="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",_c="\u6279\u91CF\u5220\u9664",Mc="\u6279\u91CF\u6253\u5370",Tc="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",qc="\u6309\u94AE",xc="\u521B\u5EFA\u5355\u636E",Vc="\u4EEA\u8868\u76D8",Nc="\u5206\u5272\u7EBF",kc="\u5BFC\u51FA",jc="\u8868\u5355\u64CD\u4F5C",Wc="\u5BFC\u5165",Hc="\u53D1\u7968\u8BC6\u522B",zc="\u94FE\u63A5",Kc="\u5217\u8868\u9009\u62E9",Jc="\u5217\u8868\u89C6\u56FE",Uc="\u64CD\u4F5C\u6309\u94AE",Qc="\u5206\u9875",Zc="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Xc="\u8BF4\u660E\u6587\u5B57",Gc="\u6587\u5B57\u8BC6\u522B",Yc="\u6807\u9898\u7EC4\u4EF6",pc="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",e0="\u6570\u7EC4",t0="\u81EA\u52A8\u7F16\u53F7",u0="\u81EA\u5B9A\u4E49",n0="\u6570\u503C",a0="\u90E8\u95E8",i0="\u4EBA\u5458",r0="\u9644\u4EF6",l0="\u56FE\u7247",s0="\u5730\u5740",o0="\u64CD\u4F5C",c0="\u5E8F\u53F7",d0="\u4EBA\u5458",h0="\u957F\u6587\u672C",f0="\u65E5\u671F\u533A\u95F4",v0="\u65E5\u671F",E0="\u77ED\u6587\u672C",m0="\u6362\u884C\u5BB9\u5668Wrap",C0="\u8868\u683C",B0="\u660E\u7EC6\u5B50\u8868",y0="\u5730\u5740",F0="\u91D1\u989D",g0="\u8BA1\u7B97\u516C\u5F0F",D0="\u591A\u9009",A0="\u7535\u5B50\u7B7E\u7AE0",b0="\u5355\u884C\u6587\u672C",w0="\u6570\u5B57",S0="\u4E1A\u52A1\u7EC4\u7EC7",$0="\u5355\u9009",R0="\u5BCC\u6587\u672C",L0="\u8BC4\u5206",P0="\u6570\u5B57\u533A\u95F4",O0="\u4E0B\u62C9\u5355\u9009",I0="\u4E0B\u62C9\u591A\u9009",_0="\u5173\u8054\u5355\u9009",M0="\u591A\u884C\u6587\u672C",T0="\u6811",q0="Vue\u5BB9\u5668",x0="Vue\u9875\u9762",V0="\u5728\u7EBF\u6587\u6863",N0="\u6309\u94AE\u64CD\u4F5C\u680F",k0="\u9AD8\u7EA7\u5BB9\u5668",j0="\u5206\u7EC4",W0="\u6805\u683C\u5217",H0="\u6570\u636E\u5BB9\u5668",z0="\u753B\u5E03",K0="\u6362\u884C\u5BB9\u5668",J0="\u6805\u683C\u7B49\u5206\u884C",U0="\u5217\u8868\u5BB9\u5668",Q0="\u81EA\u7531\u9875\u9762",Z0="\u5B9A\u4F4D\u5B50\u5BB9\u5668",X0="\u5B9A\u4F4D\u5BB9\u5668",G0="\u6805\u683C\u5E03\u5C40",Y0="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",p0="\u660E\u7EC6\u5B50\u8868\u884C",e5="\u6807\u7B7E\u9875",t5="\u6807\u7B7E\u5355\u5143",u5="\u5DE5\u5177\u680F",n5="\u6279\u91CF\u63D0\u4EA4",a5="\u5BFC\u51FA\u8BB0\u5F55",i5="\u5217\u8868\u89C6\u56FE",r5="\u5F15\u7528\u5217\u8868",l5="\u9009\u9879\u4E00",s5="\u9009\u9879\u4E8C",o5="\u9009\u9879\u4E09",c5={isNotNumber:mo,isNotString:Co,isNotObject:Bo,isNotArray:yo,isNotBoolean:Fo,runtimeRequired:go,pleaseEnterCaption:Do,pleaseEnterCaptionTip:Ao,pleaseEnterRowCaption:bo,pleaseEnterPlaceholder:wo,pleaseEnterFieldCode:So,pleaseEnterForm:$o,pleaseEnterList:Ro,pleaseEnterProcess:Lo,pleaseEnterLabel:Po,pleaseEnterValue:Oo,bizKeyNotBindFiled:Io,pleaseSelectOneField:_o,pleaseEnterNumberRange:Mo,pleaseEnterAValueGreaterThanMin:To,pleaseEnterAValueLessThanMax:qo,numberRangeSetError:xo,stringRangeError:Vo,attachmentMaxSize:No,pleaseEnterTotalScoreSetting:ko,theTotalScoreMustNotBeLessThan1:jo,scoreDefaultValueRange:Wo,attachmentLimitError:Ho,PleaseReselectTheOptionalQuantity:zo,TheMaximumLengthIsGreaterThanTheMinimumLength:Ko,TheMinimumLengthIsGreaterThanTheMaximumLength:Jo,PleaseSelectTheCorrectOptionSettings:Uo,optionIdIsRepeat:Qo,optionIsRequired:Zo,pleaseEnterDataCode:Xo,pleaseEnterValueFieldCode:Go,pleaseEnterSvcCode:Yo,pleaseBindAtLeastOneDisplayValue:po,pleaseSelectProvince:ec,pleaseSelectCity:tc,pleaseSelectDistrict:uc,limitRowsCannotBeLessThan0:nc,TheNumberOfRowsCannotBeLessThanMinRows:ac,pleaseEnterColumnWidth:ic,pleaseSetTheLogicalRelationshipOfAllRuleConditions:rc,pleaseCompleteAllRulesAndConditions:lc,pleaseSelectControl:sc,pleaseSelectDashboard:oc,theViewNameCannotBeEmpty:cc,pleaseSelectOcrType:dc,pleaseSelectAtLeastOneFieldToFillIn:hc,pleaseChooseAtLeastOne:fc,pleaseEnterButtonContent:vc,pleaseEnterDataCodeInDataSetting:Ec,pleaseEnterValueFieldCodeInDataSetting:mc,pleaseEnterSvcCodeInDataSetting:Cc,pleaseBindAtLeastOneDisplayValueInDataSetting:Bc,rootNodeIsRequiredInDataSetting:yc,pleaseEnterMaxHeight:Fc,pleaseEnter:gc,pleaseEnterWatermark:Dc,pleaseEnterFileName:Ac,pleaseUploadAtLeastOnePrintTemplate:bc,pleaseAssignBusiness:wc,pleaseAssignExternal:Sc,pleaseEnterAliasCode:$c,pleaseSelectDataCode:Rc,pleaseSelectSvcCode:Lc,pleaseSelectJoinFieldCode:Pc,pleaseSelectMainFieldCode:Oc,pleaseSelectSortFieldCode:Ic,batchDeleteButton:_c,batchPrintListButton:Mc,batchPrintRecordList:Tc,button:qc,createFormListButton:xc,dashboard:Vc,divider:Nc,exportListButton:kc,formSelectButton:jc,importRecordListButton:Wc,invoiceCheckButton:Hc,link:zc,listSelectButton:Kc,ListViewSelect:Jc,operationButton:Uc,pagination:Qc,submissionRecordListButton:Zc,text:Xc,textOcrButton:Gc,title:Yc,approvalStatusColumn:pc,array:e0,autoNumber:t0,custom:u0,decimal:n0,department:a0,employee:i0,file:r0,image:l0,location:s0,operation:o0,order:c0,people:d0,long:h0,timescope:f0,timestamp:v0,varchar:E0,gridLayoutWrap:m0,gridTable:C0,subTable:B0,address:y0,amount:F0,calc:g0,checkBox:D0,electronicSignature:A0,input:b0,number:w0,organizationSelection:S0,radio:$0,richText:R0,score:L0,searchNumberRange:P0,select:O0,selectMultiple:I0,selectRelation:_0,textarea:M0,tree:T0,vueFormItem:q0,vuePage:x0,WPS:V0,actionBar:N0,advancedContainer:k0,cardGroup:j0,col:W0,dataView:H0,grid:z0,gridLayoutContainer:K0,gridRow:J0,listView:U0,page:Q0,position:Z0,positioningContainer:X0,row:G0,subtableColumn:Y0,subtableRow:p0,tab:e5,tabPane:t5,toolbox:u5,batchSubmissionListButton:n5,exportRecordListButton:a5,listViewSelect:i5,referenceList:r5,optionOne:l5,optionTwo:s5,optionThird:o5},De={zhCN:yr,enUS:Eo,jaJP:c5},Ae,d5=(Ae=window.localStorage.getItem("locale"))!==null&&Ae!==void 0?Ae:"zh-CN",re=function(t){return t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search",t}({}),be=function(t){return 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",t}({}),ot="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",h5=ot+"0123456789";function V(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",u=0;u<t;u++){var n=u===0?ot:h5,a=Math.random()*n.length;e+=n[parseInt(String(a),10)]}return e}function we(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 f5(t){if(Array.isArray(t))return we(t)}function v5(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function ct(t,e,u){return e=Z(e),B5(t,$e()?Reflect.construct(e,u||[],Z(t).constructor):e.apply(t,u))}function dt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function le(t,e,u){return $e()?le=Reflect.construct:le=function(a,i,r){var l=[null];l.push.apply(l,i);var h=Function.bind.apply(a,l),d=new h;return r&&X(d,r.prototype),d},le.apply(null,arguments)}function Z(t){return Z=Object.setPrototypeOf?Object.getPrototypeOf:function(u){return u.__proto__||Object.getPrototypeOf(u)},Z(t)}function ht(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&&X(t,e)}function E5(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function m5(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function C5(){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 B5(t,e){return e&&(y5(e)==="object"||typeof e=="function")?e:v5(t)}function X(t,e){return X=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},X(t,e)}function ft(t){return f5(t)||m5(t)||F5(t)||C5()}function y5(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function F5(t,e){if(!!t){if(typeof t=="string")return we(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 we(t,e)}}function Se(t){var e=typeof Map=="function"?new Map:void 0;return Se=function(n){if(n===null||!E5(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 le(n,arguments,Z(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),X(a,n)},Se(t)}function $e(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return($e=function(){return!!t})()}var Re=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=Re).warn.apply(n,["\u{1F9D0} Driven Warning:"+e[0]].concat(ft(a)))}function vt(){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=Re).log.apply(n,["\u{1F680} Driven Log:"+e[0]].concat(ft(a)))}function g5(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Pe=function(t){ht(e,t);function e(u){dt(this,e);var n;return n=ct(this,e,[u]),n.name="\u{1F4A5} Driven Error",n.message=u?g5(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",n}return e}(Se(Error)),D5=function(t){ht(e,t);function e(u){dt(this,e);var n;return n=ct(this,e,[u]),n.name="\u{1F6A8} Driven Reference Error",n}return e}(Pe);function Oe(t){throw new Pe(t)}function Et(t){throw new D5(t)}function A5(t){Re.error(new Pe(t))}function b5(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function mt(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 w5(t,e,u){return e&&mt(t.prototype,e),u&&mt(t,u),t}function S5(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var Ct=function(){function t(){b5(this,t)}return w5(t,null,[{key:"getMessage",value:function(u){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a;return o("CMD."+u,n,De==null||(a=De[d5.split("-").join("")])===null||a===void 0?void 0:a[u])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(u,n){}}]),t}();S5(Ct,"$i18n",Ct.resetI18n());function $5(t,e,u){var n=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return n.reduce(function(i,r,l,h){var d=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){Le("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===h.length-1&&!Object.is(d[r],u)&&(d[r]=u,a=!0),d[r]}},t),a}var R5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},L5={exports:{}};(function(t){(function(e){var u=function(c,f,R){if(!d(f)||C(f)||y(f)||A(f)||h(f))return f;var D,b=0,I=0;if(E(f))for(D=[],I=f.length;b<I;b++)D.push(u(c,f[b],R));else{D={};for(var F in f)Object.prototype.hasOwnProperty.call(f,F)&&(D[c(F,R)]=u(c,f[F],R))}return D},n=function(c,f){f=f||{};var R=f.separator||"_",D=f.split||/(?=[A-Z])/;return c.split(D).join(R)},a=function(c){return B(c)?c:(c=c.replace(/[\-_\s]+(.)?/g,function(f,R){return R?R.toUpperCase():""}),c.substr(0,1).toLowerCase()+c.substr(1))},i=function(c){var f=a(c);return f.substr(0,1).toUpperCase()+f.substr(1)},r=function(c,f){return n(c,f).toLowerCase()},l=Object.prototype.toString,h=function(c){return typeof c=="function"},d=function(c){return c===Object(c)},E=function(c){return l.call(c)=="[object Array]"},C=function(c){return l.call(c)=="[object Date]"},y=function(c){return l.call(c)=="[object RegExp]"},A=function(c){return l.call(c)=="[object Boolean]"},B=function(c){return c=c-0,c===c},v=function(c,f){var R=f&&"process"in f?f.process:f;return typeof R!="function"?c:function(D,b){return R(D,c,b)}},g={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(c,f){return u(v(a,f),c)},decamelizeKeys:function(c,f){return u(v(r,f),c,f)},pascalizeKeys:function(c,f){return u(v(i,f),c)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=g:e.humps=g})(R5)})(L5);var Bt={};Object.defineProperty(Bt,"__esModule",{value:!0});function Ie(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:Ie(e));{const e={};for(const u in t){const n=t[u];e[u]=typeof n!="object"||n===null?n:Ie(n)}return e}}var P5=Bt.default=Ie;function O5(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t}function T(t){if(t!==void 0)return(typeof t=="undefined"?"undefined":O5(t))==="object"?P5(t):t}function I5(t){return Object.prototype.toString.call(t)==="[object Object]"}function _5(t){return Array.isArray(t)}function M5(t){return t.reduce(function(e,u){return e.includes(u)||e.push(u),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 T5(t){if(Array.isArray(t))return _e(t)}function yt(t,e,u,n,a,i,r){try{var l=t[i](r),h=l.value}catch(d){u(d);return}l.done?e(h):Promise.resolve(h).then(n,a)}function q5(t){return function(){var e=this,u=arguments;return new Promise(function(n,a){var i=t.apply(e,u);function r(h){yt(i,n,a,r,l,"next",h)}function l(h){yt(i,n,a,r,l,"throw",h)}r(void 0)})}}function x5(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ft(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 V5(t,e,u){return e&&Ft(t.prototype,e),u&&Ft(t,u),t}function gt(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}function N5(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function k5(){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 Me(t){return T5(t)||N5(t)||j5(t)||k5()}function j5(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 W5(t,e){var u,n,a,i={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},r=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return r.next=l(0),r.throw=l(1),r.return=l(2),typeof Symbol=="function"&&(r[Symbol.iterator]=function(){return this}),r;function l(d){return function(E){return h([d,E])}}function h(d){if(u)throw new TypeError("Generator is already executing.");for(;r&&(r=0,d[0]&&(i=0)),i;)try{if(u=1,n&&(a=d[0]&2?n.return:d[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,d[1])).done)return a;switch(n=0,a&&(d=[d[0]&2,a.value]),d[0]){case 0:case 1:a=d;break;case 4:return i.label++,{value:d[1],done:!1};case 5:i.label++,n=d[1],d=[0];continue;case 7:d=i.ops.pop(),i.trys.pop();continue;default:if(a=i.trys,!(a=a.length>0&&a[a.length-1])&&(d[0]===6||d[0]===2)){i=0;continue}if(d[0]===3&&(!a||d[1]>a[0]&&d[1]<a[3])){i.label=d[1];break}if(d[0]===6&&i.label<a[1]){i.label=a[1],a=d;break}if(a&&i.label<a[2]){i.label=a[2],i.ops.push(d);break}a[2]&&i.ops.pop(),i.trys.pop();continue}d=e.call(t,i)}catch(E){d=[6,E],n=0}finally{u=a=0}if(d[0]&5)throw d[1];return{value:d[0]?d[1]:void 0,done:!0}}}var H5=function(){function t(){x5(this,t),gt(this,"_events",new Map),gt(this,"debug",!1)}return V5(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];return q5(function(){var r,l,h,d,E,C,y,A,B,v,g,c;return W5(this,function(f){switch(f.label){case 0:if(r=this._events.get(u),l=[],!r)return[3,10];h=r.slice(),d=!0,E=!1,C=void 0,f.label=1;case 1:f.trys.push([1,8,9,10]),y=h[Symbol.iterator](),f.label=2;case 2:if(d=(A=y.next()).done)return[3,7];if(B=A.value,!r.includes(B))return[3,6];f.label=3;case 3:return f.trys.push([3,5,,6]),this.debug&&vt.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(Me(a))),[4,B.apply(null,Me(a))];case 4:return v=f.sent(),this.debug&&vt.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(u," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Me(a),[v])),l.push(v),v===!1?[3,7]:[3,6];case 5:return g=f.sent(),A5(String(g)+":"+String(g.stack)),[3,6];case 6:return d=!0,[3,2];case 7:return[3,10];case 8:return c=f.sent(),E=!0,C=c,[3,10];case 9:try{!d&&y.return!=null&&y.return()}finally{if(E)throw C}return[7];case 10:return[2,l]}})}).call(this)}},{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 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 K5(t,e,u){return e&&Dt(t.prototype,e),u&&Dt(t,u),t}function J5(t,e,u){return e in t?Object.defineProperty(t,e,{value:u,enumerable:!0,configurable:!0,writable:!0}):t[e]=u,t}var U5=[{key:"on_click",name:o("CMD.click",null,"\u70B9\u51FB\u65F6"),code:"click"},{key:"on_click_finish",name:o("CMD.finished",null,"\u6267\u884C\u5B8C\u6210\u65F6"),code:"click-finish"},{key:"on_change",name:o("CMD.valueChange",null,"\u503C\u53D1\u751F\u53D8\u5316\u65F6"),code:"change"},{key:"on_search",name:o("CMD.search",null,"\u641C\u7D22\u65F6"),code:"search"},{key:"on_list_change",name:o("CMD.listDataChange",null,"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6"),code:"list-change"},{key:"on_list_search",name:o("CMD.listDataCreate",null,"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6"),code:"list-search"},{key:"on_list_mounted",name:o("CMD.listDataBack",null,"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6"),code:"list-mounted"},{key:"on_list_delete",name:o("CMD.listDataDelete",null,"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6"),code:"list-delete"},{key:"on_list_before_insert",name:o("CMD.listDataAdd",null,"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D"),code:"list-before-insert"},{key:"on_input",name:o("CMD.onInput",null,"\u7528\u6237\u8F93\u5165\u65F6"),code:"input"},{key:"on_blur",name:o("CMD.onBlur",null,"\u5931\u53BB\u7126\u70B9\u65F6"),code:"blur"},{key:"on_focus",name:o("CMD.onFocus",null,"\u83B7\u53D6\u7126\u70B9\u65F6"),code:"focus"},{key:"on_wps_open",name:o("CMD.onOpenFile",null,"\u6253\u5F00\u6587\u4EF6\u65F6"),code:"wps-open"},{key:"on_wps_save",name:o("CMD.onSaveFile",null,"\u4FDD\u5B58\u6587\u4EF6\u65F6"),code:"wps-save"},{key:"on_wps_rename",name:o("CMD.rename",null,"\u91CD\u547D\u540D\u65F6"),code:"wps-rename"},{key:"on_list_actions",name:o("CMD.onClickBtn",null,"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6"),code:"list-actions"},{key:"on_list_render_operation",name:o("CMD.cellRender",null,"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6"),code:"list-render-operation"},{key:"on_list_rowclick",name:o("CMD.rowClick",null,"\u884C\u70B9\u51FB\u65F6"),code:"list-rowclick"},{key:"on_list_before_rowdelete",name:o("CMD.rowDelete",null,"\u884C\u5220\u9664\u524D"),code:"list-before-rowdelete"},{key:"on_list_before_import",name:o("CMD.listDataImport",null,"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D"),code:"list-before-import"},{key:"on_list_rows_checked",name:o("CMD.rowSelected",null,"\u884C\u9009\u4E2D\u65F6"),code:"list-rows-checked"},{key:"on_change_tab",name:o("CMD.tabChange",null,"\u6807\u7B7E\u9875\u5207\u6362\u65F6"),code:"change-tab"},{key:"on_modal_ok",name:o("CMD.modalConfirm",null,"\u5F39\u7A97\u786E\u8BA4\u65F6"),code:"modal-ok"},{key:"on_option_selected",name:o("CMD.optionSelected",null,"DOM\u70B9\u51FBoption\u4E8B\u4EF6"),code:"option_selected"}],Q5=function(){function t(){z5(this,t)}return K5(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}();J5(Q5,"events",U5);function se(t,e){var u;(u=Object.getOwnPropertyDescriptors(t)[e])!=null&&u.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function Te(t,e,u){u!=="Runtime"&&(t.parent=e,se(t,"parent"))}function At(t,e,u){t.forEach(n=>{Te(n,e,u)})}const bt=Symbol("targetKey");function wt(t){var e;return(e=t[bt])!=null?e:t}function St(t,e,u){return At(t,e,u),new Proxy(t,{get(n,a,...i){return a===bt?n:Reflect.get(n,a,...i)},set(n,a,i,...r){if(_5(t)&&a==="length"&&i===t.length)return!0;const l=Reflect.set(n,a,i,...r);return I5(i)&&Te(i,e,u),l}})}function N(t,e,u,n,a){const i=n!=null?n:t;let r=St(wt(u!=null?u:[]),i,a);Object.defineProperty(t,e,{get(){return r},set(l){r=St(wt(l),i,a)},enumerable:!0})}const $t=[],qe=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=qe.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__)&&Oe(`${t} is can't register as a Control`);const i=this.staticControls.findIndex(r=>r.Designer.controlType===u.controlType);return i>-1&&(Le(`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__||Oe(`${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===re.LAYOUT}isFormControl(t){return t.controlType===re.FORM}isListControl(t){return t.controlType===re.LIST}isColumnControl(t){return t.controlType===re.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 Oe(`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}}),se(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(E=>E==t),h=a[i]||[];let d;return h.length!==r.length?d=h[0]:d=h[l],d}}),se(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]),qe.staticControlsRuntimeRules.set(e.Runtime.controlType,e.Property.RuntimeRules),e.Property.mode=t})}};let G=qe;G.staticControlsRuntimeRules=new Map,G.staticControls=$t,G.staticRegisteredTypes=new Set($t.map(t=>t.Designer.controlType)),G.staticRegisteredConfigs=new Map;class P{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 xe{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 Ve{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 Z5{constructor(e){this.pc=new Ve(e==null?void 0:e.pc),this.mobile=new Ve(e==null?void 0:e.mobile)}}class oe extends xe{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 X5{constructor(e){this.pc=new oe(e==null?void 0:e.pc),this.mobile=e!=null&&e.mobile?new oe(e==null?void 0:e.mobile):new oe({width:130,minWidth:180})}}class G5{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 ce{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 Y5 extends ce{constructor(e){var u;super(e),this.primaryControlId=(u=e==null?void 0:e.primaryControlId)!=null?u:""}}class Rt{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 p5{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 Rt(r)))!=null?i:[]}}class Lt{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:be.VARCHAR}}class Pt extends ce{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 ed{constructor(e){var u,n,a,i;this.type="sublist-page",this.formBind=new ce(e==null?void 0:e.formBind),this.displayFields=(n=(u=e==null?void 0:e.displayFields)==null?void 0:u.map(r=>new Lt(r)))!=null?n:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Pt(r)))!=null?i:[]}}class Ot{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 de{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 H{constructor(e){var u,n,a,i;this.type="conditions",this.id=(u=e==null?void 0:e.id)!=null?u:V(),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,h;if(r.children!==void 0){const d=new H(r);(l=this.children)==null||l.push(d)}else{const d=new Y(r);(h=this.children)==null||h.push(d)}}))}}class Y{constructor(e){var u,n,a,i,r;this.type="condition",this.id=(u=e==null?void 0:e.id)!=null?u:V(),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 Ot(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new de(e==null?void 0:e.rightVariableBo)}}class td{constructor(e){var u,n;this.aliasCode=(u=e==null?void 0:e.aliasCode)!=null?u:"",this.datasourceBind=new he(e==null?void 0:e.datasourceBind),this.relationFields=(n=e==null?void 0:e.relationFields)!=null?n:[]}}class It{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 ud{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 ke{constructor(e){var u,n;this.columnName=(u=e.columnName)!=null?u:"",this.desc=(n=e.desc)!=null?n:!1}}class _t{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:be.ANY}}class nd{constructor(e){var u,n,a,i,r,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=(r=(i=e.orders)==null?void 0:i.map(d=>new ke(d)))!=null?r:[],this.dataSet=(h=(l=e.dataSet)==null?void 0:l.map(d=>new _t(d)))!=null?h:[]}}function je(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 H(l):new Y(l)))!=null?u:[],this.viewFilters=(a=(n=t==null?void 0:t.viewFilters)==null?void 0:n.map(l=>l.children!==void 0?new H(l):new Y(l)))!=null?a:[],this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(l=>new ke(l)))!=null?r:[]}class he{constructor(e){var u,n,a,i,r,l,h,d;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(E=>{var C;(C=this.displayBoList)==null||C.push(new Ne(E))})),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=(h=e==null?void 0:e.svcCode)!=null?h:"",this.assignDepartment=new de(e==null?void 0:e.assignDepartment),this.openAssignDepartment=(d=e==null?void 0:e.openAssignDepartment)!=null?d:!1,je.call(this,e)}}class ad{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 id{constructor(e){var u,n,a,i,r,l,h,d,E,C;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=(h=e==null?void 0:e.icon)!=null?h:"iconliulan1",this.needConfirm=(d=e==null?void 0:e.needConfirm)!=null?d:!1,this.openType=(E=e==null?void 0:e.openType)!=null?E:"modal",this.priorityProcess=(C=e==null?void 0:e.priorityProcess)!=null?C:!0}}class We{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 Mt extends he{constructor(e){var u,n;super(e),this.attributes=(n=(u=e==null?void 0:e.attributes)==null?void 0:u.map(a=>new We(a)))!=null?n:[]}}class rd extends he{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 We(i)))!=null?n:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class ld extends Mt{constructor(e){var u;super(e),this.rootNode=new de(e==null?void 0:e.rootNode),this.filterCode=(u=e==null?void 0:e.filterCode)!=null?u:""}}class Tt{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 It(r)))!=null?i:[]}}class sd extends Tt{constructor(e){super(e),je.call(this,e)}}class od extends Tt{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 cd{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 dd{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 He{constructor(e){var u,n,a;this.id=(u=e==null?void 0:e.id)!=null?u:V(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 qt extends He{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"}}function hd(t){var e;return(e=t==null?void 0:t.map(u=>new He(u)))!=null?e:[]}function fd(t){var e;return(e=t==null?void 0:t.map(u=>new qt(u)))!=null?e:[]}class fe{}class vd extends fe{constructor(e){super(),this.amount=new P(e==null?void 0:e.amount),this.currency=new P(e==null?void 0:e.currency)}}class Ed{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 md extends fe{constructor(e){super(),this.min=new P(e==null?void 0:e.min),this.max=new P(e==null?void 0:e.max)}}class Cd{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 Bd{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 yd extends fe{constructor(e){super(),this.result=new P(e==null?void 0:e.result),this.unit=new P(e==null?void 0:e.unit)}}class Fd{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||{}),xt=(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))(xt||{}),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 gd{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 Dd{constructor(e){var u,n,a,i;this.id=(u=e==null?void 0:e.id)!=null?u:V(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 Rt(r)))!=null?i:[],je.call(this,e)}}class Ad{constructor(e){var u,n;this.key=(u=e.key)!=null?u:V(8),this.caption=(n=e.caption)!=null?n:""}}class Vt{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 bd{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 Nt{constructor(e){var u,n,a,i,r,l;this.id=(u=e==null?void 0:e.id)!=null?u:V(),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(h=>h.children!==void 0?new H(h):new Y(h)))!=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(h=>new kt(h)))!=null?l:[]:[],this.script=e==null?void 0:e.script}}class kt{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 wd{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 Nt(r)))!=null?i:[]:[]}}class ve{constructor(e){this.isHide={type:"boolean"}}}class Je extends Array{constructor(e){super()}}class q{constructor(e,u=""){var n,a;this.isHide=(n=e==null?void 0:e.isHide)!=null?n:!1,this.style=new Vt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:u}}q.Rules=ve,q.RuntimeRules=Je;function O(){return O=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},O.apply(this,arguments)}function Sd(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function Ue(t){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(u){return u.__proto__||Object.getPrototypeOf(u)},Ue(t)}function Ee(t,e){return Ee=Object.setPrototypeOf||function(n,a){return n.__proto__=a,n},Ee(t,e)}function $d(){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 me(t,e,u){return $d()?me=Reflect.construct:me=function(a,i,r){var l=[null];l.push.apply(l,i);var h=Function.bind.apply(a,l),d=new h;return r&&Ee(d,r.prototype),d},me.apply(null,arguments)}function Rd(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Qe(t){var e=typeof Map=="function"?new Map:void 0;return Qe=function(n){if(n===null||!Rd(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 me(n,arguments,Ue(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ee(a,n)},Qe(t)}var Ld=/%[sdj%]/g,jt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(jt=function(e,u){typeof console!="undefined"&&console.warn&&u.every(function(n){return typeof n=="string"})&&console.warn(e,u)});function Ze(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(Ld,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(h){return"[Circular]"}break;default:return l}});return r}return a}function Pd(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function S(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||Pd(e)&&typeof t=="string"&&!t)}function Od(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 Wt(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 Id(t){var e=[];return Object.keys(t).forEach(function(u){e.push.apply(e,t[u])}),e}var Ht=function(t){Sd(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}(Qe(Error));function _d(t,e,u,n){if(e.first){var a=new Promise(function(C,y){var A=function(g){return n(g),g.length?y(new Ht(g,Ze(g))):C()},B=Id(t);Wt(B,u,A)});return a.catch(function(C){return C}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),l=r.length,h=0,d=[],E=new Promise(function(C,y){var A=function(v){if(d.push.apply(d,v),h++,h===l)return n(d),d.length?y(new Ht(d,Ze(d))):C()};r.length||(n(d),C()),r.forEach(function(B){var v=t[B];i.indexOf(B)!==-1?Wt(v,u,A):Od(v,u,A)})});return E.catch(function(C){return C}),E}function zt(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 Kt(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]=O(O({},t[u]),n):t[u]=n}}return t}function Jt(t,e,u,n,a,i){t.required&&(!u.hasOwnProperty(t.field)||S(e,i||t.type))&&n.push(L(a.messages.required,t.fullField))}function Md(t,e,u,n,a){(/^\s+$/.test(e)||e==="")&&n.push(L(a.messages.whitespace,t.fullField))}var Xe={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},p={integer:function(e){return p.number(e)&&parseInt(e,10)===e},float:function(e){return p.number(e)&&!p.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"&&!p.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(Xe.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(Xe.url)},hex:function(e){return typeof e=="string"&&!!e.match(Xe.hex)}};function Td(t,e,u,n,a){if(t.required&&e===void 0){Jt(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?p[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 qd(t,e,u,n,a){var i=typeof t.len=="number",r=typeof t.min=="number",l=typeof t.max=="number",h=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,d=e,E=null,C=typeof e=="number",y=typeof e=="string",A=Array.isArray(e);if(C?E="number":y?E="string":A&&(E="array"),!E)return!1;A&&(d=e.length),y&&(d=e.replace(h,"_").length),i?d!==t.len&&n.push(L(a.messages[E].len,t.fullField,t.len)):r&&!l&&d<t.min?n.push(L(a.messages[E].min,t.fullField,t.min)):l&&!r&&d>t.max?n.push(L(a.messages[E].max,t.fullField,t.max)):r&&l&&(d<t.min||d>t.max)&&n.push(L(a.messages[E].range,t.fullField,t.min,t.max))}var z="enum";function xd(t,e,u,n,a){t[z]=Array.isArray(t[z])?t[z]:[],t[z].indexOf(e)===-1&&n.push(L(a.messages[z],t.fullField,t[z].join(", ")))}function Vd(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 m={required:Jt,whitespace:Md,type:Td,range:qd,enum:xd,pattern:Vd};function Nd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e,"string")&&!t.required)return u();m.required(t,e,n,i,a,"string"),S(e,"string")||(m.type(t,e,n,i,a),m.range(t,e,n,i,a),m.pattern(t,e,n,i,a),t.whitespace===!0&&m.whitespace(t,e,n,i,a))}u(i)}function kd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&m.type(t,e,n,i,a)}u(i)}function jd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&(m.type(t,e,n,i,a),m.range(t,e,n,i,a))}u(i)}function Wd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&m.type(t,e,n,i,a)}u(i)}function Hd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a),S(e)||m.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(S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&(m.type(t,e,n,i,a),m.range(t,e,n,i,a))}u(i)}function Kd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&(m.type(t,e,n,i,a),m.range(t,e,n,i,a))}u(i)}function Jd(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();m.required(t,e,n,i,a,"array"),e!=null&&(m.type(t,e,n,i,a),m.range(t,e,n,i,a))}u(i)}function Ud(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&m.type(t,e,n,i,a)}u(i)}var Qd="enum";function Zd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a),e!==void 0&&m[Qd](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(S(e,"string")&&!t.required)return u();m.required(t,e,n,i,a),S(e,"string")||m.pattern(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(S(e,"date")&&!t.required)return u();if(m.required(t,e,n,i,a),!S(e,"date")){var l;e instanceof Date?l=e:l=new Date(e),m.type(t,l,n,i,a),l&&m.range(t,l.getTime(),n,i,a)}}u(i)}function Yd(t,e,u,n,a){var i=[],r=Array.isArray(e)?"array":typeof e;m.required(t,e,n,i,a,r),u(i)}function Ge(t,e,u,n,a){var i=t.type,r=[],l=t.required||!t.required&&n.hasOwnProperty(t.field);if(l){if(S(e,i)&&!t.required)return u();m.required(t,e,n,r,a,i),S(e,i)||m.type(t,e,n,r,a)}u(r)}function pd(t,e,u,n,a){var i=[],r=t.required||!t.required&&n.hasOwnProperty(t.field);if(r){if(S(e)&&!t.required)return u();m.required(t,e,n,i,a)}u(i)}var ee={string:Nd,method:kd,number:jd,boolean:Wd,regexp:Hd,integer:zd,float:Kd,array:Jd,object:Ud,enum:Zd,pattern:Xd,date:Gd,url:Ge,hex:Ge,email:Ge,required:Yd,any:pd};function Ye(){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 pe=Ye();function k(t){this.rules=null,this._messages=pe,this.define(t)}k.prototype={messages:function(e){return e&&(this._messages=Kt(Ye(),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 h(v){var g,c=[],f={};function R(D){if(Array.isArray(D)){var b;c=(b=c).concat.apply(b,D)}else c.push(D)}for(g=0;g<v.length;g++)R(v[g]);c.length?f=Ze(c):(c=null,f=null),l(c,f)}if(r.messages){var d=this.messages();d===pe&&(d=Ye()),Kt(d,r.messages),r.messages=d}else r.messages=this.messages();var E,C,y={},A=r.keys||Object.keys(this.rules);A.forEach(function(v){E=a.rules[v],C=i[v],E.forEach(function(g){var c=g;typeof c.transform=="function"&&(i===e&&(i=O({},i)),C=i[v]=c.transform(C)),typeof c=="function"?c={validator:c}:c=O({},c),c.validator=a.getValidationMethod(c),c.field=v,c.fullField=c.fullField||v,c.type=a.getType(c),c.validator&&(y[v]=y[v]||[],y[v].push({rule:c,value:C,source:i,field:v}))})});var B={};return _d(y,r,function(v,g){var c=v.rule,f=(c.type==="object"||c.type==="array")&&(typeof c.fields=="object"||typeof c.defaultField=="object");f=f&&(c.required||!c.required&&v.value),c.field=v.field;function R(I,F){return O(O({},F),{},{fullField:c.fullField+"."+I})}function D(I){I===void 0&&(I=[]);var F=I;if(Array.isArray(F)||(F=[F]),!r.suppressWarning&&F.length&&k.warning("async-validator:",F),F.length&&c.message!==void 0&&(F=[].concat(c.message)),F=F.map(zt(c)),r.first&&F.length)return B[c.field]=1,g(F);if(!f)g(F);else{if(c.required&&!v.value)return c.message!==void 0?F=[].concat(c.message).map(zt(c)):r.error&&(F=[r.error(c,L(r.messages.required,c.field))]),g(F);var _={};if(c.defaultField)for(var eu in v.value)v.value.hasOwnProperty(eu)&&(_[eu]=c.defaultField);_=O(O({},_),v.rule.fields);for(var K in _)if(_.hasOwnProperty(K)){var v3=Array.isArray(_[K])?_[K]:[_[K]];_[K]=v3.map(R.bind(null,K))}var tu=new k(_);tu.messages(r.messages),v.rule.options&&(v.rule.options.messages=r.messages,v.rule.options.error=r.error),tu.validate(v.value,v.rule.options||r,function(lt){var J=[];F&&F.length&&J.push.apply(J,F),lt&&lt.length&&J.push.apply(J,lt),g(J.length?J:null)})}}var b;c.asyncValidator?b=c.asyncValidator(c,v.value,D,v.source,r):c.validator&&(b=c.validator(c,v.value,D,v.source,r),b===!0?D():b===!1?D(c.message||c.field+" fails"):b instanceof Array?D(b):b instanceof Error&&D(b.message)),b&&b.then&&b.then(function(){return D()},function(I){return D(I)})},function(v){h(v)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ee.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"?ee.required:ee[this.getType(e)]||!1}},k.register=function(e,u){if(typeof u!="function")throw new Error("Cannot register a validator by type, validator is not a function");ee[e]=u},k.warning=jt,k.messages=pe,k.validators=ee;const e3={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 Ut(t,e={}){const u=new k(t);return u.messages(Object.assign(e3,e)),u}const Qt=new H5;class ${constructor(e){var y,A,B,v;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Xt,this.removeSetting=Zt,this._callControlHooks("preInstance",e);const{controlName:u,controlIcon:n,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:l,name:h,setting:d,slots:E,slotPosition:C}=new.target;u&&n&&a||Et(`The ${h} controlName,controlIcon,controlType is not define`),this.id=(y=e==null?void 0:e.id)!=null?y:V(10),this.name=u,this.icon=n,this.type=(A=e==null?void 0:e.type)!=null?A:a,this.props=new q(e==null?void 0:e.props,new.target.controlName),this.controlType=(B=e==null?void 0:e.controlType)!=null?B:"base",this.setting=T(d),this.fieldType=(v=e==null?void 0:e.fieldType)!=null?v:i,this.eventKeys=T(r),this.customEvents=T(l),this.slots=T(E),this.slotPosition=T(C),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 Qt.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),$5(this.props,e,u),this.postUpdate(e,u)}preValidate(){return ae(this,null,function*(){const e=W({},this.rules),u=yield this._callControlHooks("preValidate",e),n=u[u.length-1];return n===!1?void 0:n})}validate(e,u){return ae(this,null,function*(){const n=yield this.preValidate(),a=n!==void 0?n:W({},this.rules);Array.isArray(u)&&u.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=Ut(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:h,required:d,maxLength:E,options:C,encrypted:y,encryptedMode:A}=this.props;if(!u&&!i&&!r)return;const B={parentId:e,fieldType:u,controlId:n,caption:h,type:a,props:{}};switch(i&&(B.dataBind=i),l){case"datasource":case void 0:r&&(B.datasourceBind=r);break;case"custom":B.props.options=C;break}return d!==void 0&&(B.required=d),E!==void 0&&(B.maxLength=E),y!==void 0&&(B.encrypted=y),A!==void 0&&(B.encryptedMode=A),B}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:T(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)}}$.mode="Designer",$.controlName=o("CMD.85531751967135654"),$.controlIcon="icon",$.controlType="control",$.controlEventKeys=[],$.controlCustomEvents=[],$.setting=[],$.__is_control__=!0,$.removeSettingItem=Zt,$.updateSettingItem=Xt;function Zt(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(h=>h.key===(n?u.key:u));a!==-1&&(n?this.setting[a].showItems=(r=this.setting[a].showItems)==null?void 0:r.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 Xt(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 x{constructor(e){var r,l,h,d,E;this.customEvents=[],this.parent=null;const{controlType:u,controlFieldType:n,name:a,controlCustomEvents:i}=new.target;u||Et(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:V(10),this.type=(l=e==null?void 0:e.type)!=null?l:u,this.props=new q(e==null?void 0:e.props),this.customEvents=i,this.controlType=(h=e==null?void 0:e.controlType)!=null?h:"base",this.fieldType=(d=e==null?void 0:e.fieldType)!=null?d:n,this.pageStatus=(E=e==null?void 0:e.pageStatus)!=null?E:Ke.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const u=new e(this.props);return Array.from(u)}return[]}}x.mode="Runtime",x.controlType="control",x.__is_control__=!0,x.controlCustomEvents=[];function et(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:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:o("CMD.pleaseEnterLabel",null,"\u8BF7\u8F93\u5165\u663E\u793A\u503C")},value:{type:"string",required:!0,message:o("CMD.pleaseEnterValue",null,"\u8BF7\u8F93\u5165\u5B58\u50A8\u503C")}}}},{type:"array",validator(e,u,n){u.length===0&&n(o("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=M5(a);a.length!==i.length?n(o("CMD.optionIdIsRepeat",null,"\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D")):n()},message:o("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:o("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:o("CMD.pleaseEnterDataCode",null,"\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B")},valueFieldCode:{type:"string",required:!0,message:o("CMD.pleaseEnterValueFieldCode",null,"\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C")},svcCode:{type:"string",required:!0,message:o("CMD.pleaseEnterSvcCode",null,"\u8BF7\u7ED1\u5B9A\u670D\u52A1")},displayBoList:[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",validator(e,u,n){u.length===0&&n(o("CMD.pleaseBindAtLeastOneDisplayValue",null,"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")),n()},message:o("CMD.pleaseBindAtLeastOneDisplayValue",null,"\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C")}],orders:[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},desc:{type:"boolean",message:o("CMD.isNotBoolean",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14")}}}}]}}])}function t3(t,e,u=!1){this.datasourceBind=[{type:"object",message:o("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:o(u?"CMD.pleaseEnterDataCodeInDataSetting":"CMD.pleaseEnterDataCode",null,o(u?"CMD.42a81751967107601":"CMD.e9071751967116434"))},valueFieldCode:{type:"string",required:!0,message:o(u?"CMD.pleaseEnterValueFieldCodeInDataSetting":"CMD.pleaseEnterValueFieldCode",null,o(u?"CMD.7a991751967110145":"CMD.1a6d1751967120386"))},svcCode:{type:"string",required:!0,message:o(u?"CMD.pleaseEnterSvcCodeInDataSetting":"CMD.pleaseEnterSvcCode",null,o(u?"CMD.f3391751967112226":"CMD.23d61751967123740"))},attributes:[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:o("CMD.isNotString",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32")},key:{type:"string",required:!0,message:o("CMD.isNotString",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32")},value:[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",validator(n,a,i){a.length===0&&i(o(u?"CMD.pleaseBindAtLeastOneDisplayValueInDataSetting":"CMD.pleaseBindAtLeastOneDisplayValue",null,o(u?"CMD.93731751967100312":"CMD.726a1751967114349"))),i()},message:o(u?"CMD.pleaseBindAtLeastOneDisplayValueInDataSetting":"CMD.pleaseBindAtLeastOneDisplayValue",null,o(u?"CMD.93731751967100312":"CMD.726a1751967114349"))}]}}}],orders:[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},desc:{type:"boolean",message:o("CMD.isNotBoolean",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14")}}}}]}}]}function Gt(t){return(t==null?void 0:t.dataCode)!==void 0&&(t==null?void 0:t.fieldCode)!==void 0}class tt extends ve{constructor(e){super(e),this.dataBind={},this.caption={type:"string",required:!0,message:o("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:o("CMD.pleaseEnterCaptionTip",null,"\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED")};const u={fieldCode:{type:"string",required:!0,message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")},dataCode:{type:"string",required:!0,message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}};if(Gt(e.dataBind))this.dataBind={type:"object",required:!0,fields:T(u),message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};else{let n={type:"object",required:!0,fields:{},message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")};Object.keys(e.dataBind).forEach(a=>{n.fields[a]={type:"object",required:!0,fields:T(u),message:o("CMD.pleaseEnterFieldCode",null,"\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879")}}),this.dataBind=n}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class Yt 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:o("CMD.runtimeRequired",{caption:e.caption},"{caption}\u5FC5\u586B")})}}class te extends q{constructor(e){var u,n,a,i,r,l,h,d,E,C;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=(h=e==null?void 0:e.placeholder)!=null?h:"",this.required=(d=e==null?void 0:e.required)!=null?d:!1,this.requiredMessage=(E=e==null?void 0:e.requiredMessage)!=null?E:"",this.dataBind=new P(e==null?void 0:e.dataBind),this.defaultValue=(C=e==null?void 0:e.defaultValue)!=null?C:""}}te.Rules=tt,te.RuntimeRules=Yt;class u3 extends tt{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource"],message:o("CMD.PleaseSelectTheCorrectOptionSettings",null,"\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E")},this.options=[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")}],this.datasourceBind=[{type:"object",message:o("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")}],et.call(this,e)}}class pt extends ${constructor(e){super(e),this.controlType="form",this.props=new te(e==null?void 0:e.props)}}pt.controlEventKeys=["on_change","on_focus","on_blur"];class n3 extends x{constructor(e){super(e),this.controlType="form",this.props=new te(e==null?void 0:e.props)}}class ue extends q{constructor(e){super(e)}}const a3=1e4;class j extends ${constructor(e){super(e),this.controlType="layout";const{excludes:u,childrenMaxLength:n}=new.target;this.props=new ue(e==null?void 0:e.props),N(this,"children",e==null?void 0:e.children,void 0,"Designer"),this.excludes=T(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 ae(this,null,function*(){return yield st(j.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(h=>!!h);return[...a,...l]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),u=this.children.map(n=>n.toSchema());return ne(W({},e),{children:u})}}j.excludes=!1,j.childrenMaxLength=a3;class ut extends x{constructor(e){super(e),this.controlType="layout",this.props=new ue(e==null?void 0:e.props),N(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class nt extends q{constructor(e,u,n){var a,i,r,l;super(u),N(this,"headers",u==null?void 0:u.headers,e,n),N(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 Ce extends ${constructor(e){super(e),this.controlType="list",this.props=new nt(this,e==null?void 0:e.props,"Designer")}validate(e,u){return ae(this,null,function*(){return yield st(Ce.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(h=>!!h);return[...a,...l]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),u=this.props.headers.map(n=>n.toSchema());return ne(W({},e),{props:ne(W({},this.props),{headers:u})})}}Ce.controlFieldType=be.LIST;class i3 extends x{constructor(e){super(e),this.controlType="list",this.props=new nt(this,e==null?void 0:e.props,"Runtime"),N(this,"children",e==null?void 0:e.children,void 0,"Runtime")}get length(){return this.children.length}}class at extends ve{constructor(e){super(e),this.caption={type:"string",required:!0,message:o("CMD.pleaseEnterCaption",null,"\u8BF7\u8F93\u5165\u6807\u9898")},this.width={type:"number",required:!1,message:o("CMD.pleaseEnterColumnWidth",null,"\u8BF7\u8F93\u5165\u5217\u5BBD")},this.width.required=e.widthType==="px"}}class Be extends q{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 xe(e==null?void 0:e.autoWidth),this.dataBind=new P(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}}Be.Rules=at;class r3 extends at{constructor(e){super(e),this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:o("CMD.PleaseSelectTheCorrectOptionSettings",null,"\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E")},this.options=[{type:"array",message:o("CMD.isNotArray",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4")}],this.datasourceBind=[{type:"object",message:o("CMD.isNotObject",null,"\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61")}],et.call(this,e)}}class l3 extends ${constructor(e){super(e),this.controlType="column",this.props=new Be(e==null?void 0:e.props),N(this,"children",e==null?void 0:e.children,void 0,"Designer")}toSchema(){const e=super.toSchema();return ne(W({},e),{children:this.children?this.children.map(u=>u.toSchema()):[]})}}class s3 extends x{constructor(e){super(e),this.controlType="column",this.props=new Be(e==null?void 0:e.props),N(this,"children",e==null?void 0:e.children,void 0,"Runtime")}}class it extends ue{constructor(e){super(e),this.dataBind=new P(e==null?void 0:e.dataBind)}}class o3 extends j{constructor(e){super(e),this.controlType="search",this.props=new it(e==null?void 0:e.props)}}class c3 extends ut{constructor(e){super(e),this.controlType="search",this.props=new it(e==null?void 0:e.props)}}class rt extends ue{constructor(e){super(e)}}class d3 extends j{constructor(e){super(e),this.controlType="wrap",this.props=new rt(e==null?void 0:e.props)}}class h3 extends ut{constructor(e){super(e),this.controlType="wrap",this.props=new rt(e==null?void 0:e.props)}}function f3(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:o("CMD.pleaseEnterForm",null,"\u8BF7\u7ED1\u5B9A\u8868\u5355")}}}])}s.AMOUNT_TYPE=ze,s.AddressValue=Bd,s.AmountDataBind=vd,s.AmountValue=Ed,s.AutoWidth=xe,s.BaseControlProperty=te,s.BaseControlPropertyRules=tt,s.BaseControlPropertyRuntimeRules=Yt,s.BaseStyle=Vt,s.COMMON_SETTING_TYPE=xt,s.CalcDataBind=yd,s.CalcValue=Fd,s.ColumnControlProperty=Be,s.ColumnControlPropertyRules=at,s.ColumnOptionAndDataSourcePropertyRules=r3,s.CustomAttributeItem=We,s.CustomPermissionItem=Ad,s.DataBind=P,s.DataSourceBind=he,s.DataSourceDataSetValue=_t,s.DataSourceOrderItem=ke,s.DataSourceParamItem=nd,s.DataStorageDoc=G5,s.DesignerColumnControl=l3,s.DesignerControl=$,s.DesignerFormControl=pt,s.DesignerLayoutControl=j,s.DesignerListControl=Ce,s.DesignerSearchControl=o3,s.DesignerWrapControl=d3,s.DisplayBoListItem=Ne,s.FieldBindItem=Lt,s.FieldFilterCondition=Y,s.FieldFilterConditions=H,s.FillBackBind=od,s.FillPayloadBind=sd,s.FormBind=ce,s.FormSelectBind=Y5,s.ImageOptionSetting=qt,s.JoinRelation=td,s.Language=cd,s.LayoutControlProperty=ue,s.LeftVariable=Ot,s.LinkOperationOption=id,s.ListBind=p5,s.ListControlProperty=nt,s.MetaAutoWidth=X5,s.MetaRowHeight=Z5,s.MetaWidth=oe,s.MultistageFillingItem=It,s.ObjectDataBind=fe,s.OperationItem=gd,s.OptObject=bd,s.OptionAndDataSourcePropertyRules=u3,s.OptionDisplayConfigItem=ud,s.OptionSetting=He,s.OrganizationDataSourceBind=rd,s.PAGE_STATUS=Ke,s.Property=q,s.PropertyRules=ve,s.PropertyRuntimeRules=Je,s.RangeDataBind=md,s.RangeDateValue=Cd,s.RegisterControls=G,s.RegularRules=dd,s.RightVariable=de,s.RowHeight=Ve,s.RowStyle=wd,s.RowStyleRule=Nt,s.RowStyleSettings=kt,s.RuntimeColumnControl=s3,s.RuntimeControl=x,s.RuntimeFormControl=n3,s.RuntimeLayoutControl=ut,s.RuntimeListControl=i3,s.RuntimeSearchControl=c3,s.RuntimeWrapControl=h3,s.SearchControlProperty=it,s.SelectedContentConfig=ad,s.SubListItem=Pt,s.SubListPageConfig=ed,s.SuperDataSourceBind=Mt,s.TreeDataSourceBind=ld,s.ViewOperationItem=Dd,s.WrapControlProperty=rt,s.controlHooksEmitter=Qt,s.createValidator=Ut,s.defineArrayParent=At,s.defineControlArrayToProperty=N,s.defineParent=Te,s.initImageOptions=fd,s.initLinkOperationRules=f3,s.initOptionAndDataSourceRules=et,s.initOptions=hd,s.initSuperDataSourceRules=t3,s.isDataBind=Gt,s.setPropertyDontEnum=se,Object.defineProperty(s,"__esModule",{value:!0})});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-core",
3
- "version": "2.23.0",
3
+ "version": "2.23.3",
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": "2.23.0",
29
+ "@byteluck-fe/model-driven-shared": "2.23.3",
30
30
  "async-validator": "3.5.1",
31
31
  "tslib": "^2.1.0"
32
32
  },
33
- "gitHead": "f4a6ce7bc3787d58dce10abfc627166273b3e741"
33
+ "gitHead": "94579d34831f52943105e54410490a9f6a505378"
34
34
  }