@byteluck-fe/model-driven-core 3.0.0-beta.5 → 3.0.0-beta.7

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