@byteluck-fe/model-driven-settings 2.23.0-beta.17 → 2.23.0-beta.18

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.
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,39 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var CheckboxProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(CheckboxProps, BaseProps);
89
+ var _super = _create_super(CheckboxProps);
77
90
  function CheckboxProps(props) {
78
91
  _class_call_check(this, CheckboxProps);
79
92
  var _this;
80
- _this = _call_super(this, CheckboxProps, [
81
- props
82
- ]), _define_property(_this, "options", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "options", void 0);
83
95
  var _props_options;
84
96
  _this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
85
97
  return _this;
@@ -12,10 +12,6 @@ function _assert_this_initialized(self) {
12
12
  }
13
13
  return self;
14
14
  }
15
- function _call_super(_this, derived, args) {
16
- derived = _get_prototype_of(derived);
17
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
18
- }
19
15
  function _class_call_check(instance, Constructor) {
20
16
  if (!(instance instanceof Constructor)) {
21
17
  throw new TypeError("Cannot call a class as a function");
@@ -96,24 +92,39 @@ function _unsupported_iterable_to_array(o, minLen) {
96
92
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
97
93
  }
98
94
  function _is_native_reflect_construct() {
95
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
96
+ if (Reflect.construct.sham) return false;
97
+ if (typeof Proxy === "function") return true;
99
98
  try {
100
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
101
- } catch (_) {}
102
- return (_is_native_reflect_construct = function() {
103
- return !!result;
104
- })();
99
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
100
+ return true;
101
+ } catch (e) {
102
+ return false;
103
+ }
104
+ }
105
+ function _create_super(Derived) {
106
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
107
+ return function _createSuperInternal() {
108
+ var Super = _get_prototype_of(Derived), result;
109
+ if (hasNativeReflectConstruct) {
110
+ var NewTarget = _get_prototype_of(this).constructor;
111
+ result = Reflect.construct(Super, arguments, NewTarget);
112
+ } else {
113
+ result = Super.apply(this, arguments);
114
+ }
115
+ return _possible_constructor_return(this, result);
116
+ };
105
117
  }
106
118
  import { isPlainObject } from '@byteluck-fe/model-driven-shared';
107
119
  import { BaseProps } from './base';
108
120
  export var CustomProps = /*#__PURE__*/ function(BaseProps) {
109
121
  "use strict";
110
122
  _inherits(CustomProps, BaseProps);
123
+ var _super = _create_super(CustomProps);
111
124
  function CustomProps(props) {
112
125
  _class_call_check(this, CustomProps);
113
126
  var _this;
114
- _this = _call_super(this, CustomProps, [
115
- props
116
- ]);
127
+ _this = _super.call(this, props);
117
128
  if (isPlainObject(props)) {
118
129
  Object.entries(props).forEach(function(param) {
119
130
  var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,41 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var InputNumberProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(InputNumberProps, BaseProps);
89
+ var _super = _create_super(InputNumberProps);
77
90
  function InputNumberProps(props) {
78
91
  _class_call_check(this, InputNumberProps);
79
92
  var _this;
80
- _this = _call_super(this, InputNumberProps, [
81
- props
82
- ]), _define_property(_this, "max", void 0), _define_property(_this, "min", void 0), _define_property(_this, "placeholder", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "max", void 0);
95
+ _define_property(_assert_this_initialized(_this), "min", void 0);
96
+ _define_property(_assert_this_initialized(_this), "placeholder", void 0);
83
97
  var _props_max;
84
98
  _this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : '';
85
99
  var _props_min;
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,42 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var InputProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(InputProps, BaseProps);
89
+ var _super = _create_super(InputProps);
77
90
  function InputProps(props) {
78
91
  _class_call_check(this, InputProps);
79
92
  var _this;
80
- _this = _call_super(this, InputProps, [
81
- props
82
- ]), _define_property(_this, "maxLength", void 0), _define_property(_this, "minLength", void 0), _define_property(_this, "placeholder", void 0), _define_property(_this, "i18n", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "maxLength", void 0);
95
+ _define_property(_assert_this_initialized(_this), "minLength", void 0);
96
+ _define_property(_assert_this_initialized(_this), "placeholder", void 0);
97
+ _define_property(_assert_this_initialized(_this), "i18n", void 0);
83
98
  var _props_maxLength;
84
99
  _this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : '';
85
100
  var _props_minLength;
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,40 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var RadioProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(RadioProps, BaseProps);
89
+ var _super = _create_super(RadioProps);
77
90
  function RadioProps(props) {
78
91
  _class_call_check(this, RadioProps);
79
92
  var _this;
80
- _this = _call_super(this, RadioProps, [
81
- props
82
- ]), _define_property(_this, "options", void 0), _define_property(_this, "showType", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "options", void 0);
95
+ _define_property(_assert_this_initialized(_this), "showType", void 0);
83
96
  var _props_options;
84
97
  _this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
85
98
  var _props_showType;
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,40 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var SelectProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(SelectProps, BaseProps);
89
+ var _super = _create_super(SelectProps);
77
90
  function SelectProps(props) {
78
91
  _class_call_check(this, SelectProps);
79
92
  var _this;
80
- _this = _call_super(this, SelectProps, [
81
- props
82
- ]), _define_property(_this, "placeholder", void 0), _define_property(_this, "options", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "placeholder", void 0);
95
+ _define_property(_assert_this_initialized(_this), "options", void 0);
83
96
  var _props_placeholder;
84
97
  _this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : '';
85
98
  var _props_options;
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,41 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var SwitchProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(SwitchProps, BaseProps);
89
+ var _super = _create_super(SwitchProps);
77
90
  function SwitchProps(props) {
78
91
  _class_call_check(this, SwitchProps);
79
92
  var _this;
80
- _this = _call_super(this, SwitchProps, [
81
- props
82
- ]), _define_property(_this, "showType", void 0), _define_property(_this, "tips", void 0), _define_property(_this, "disabled", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "showType", void 0);
95
+ _define_property(_assert_this_initialized(_this), "tips", void 0);
96
+ _define_property(_assert_this_initialized(_this), "disabled", void 0);
83
97
  var _props_showType;
84
98
  _this.showType = (_props_showType = props === null || props === void 0 ? void 0 : props.showType) !== null && _props_showType !== void 0 ? _props_showType : 'switch';
85
99
  var _props_tips;
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
- function _call_super(_this, derived, args) {
8
- derived = _get_prototype_of(derived);
9
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
- }
11
7
  function _class_call_check(instance, Constructor) {
12
8
  if (!(instance instanceof Constructor)) {
13
9
  throw new TypeError("Cannot call a class as a function");
@@ -63,23 +59,44 @@ function _type_of(obj) {
63
59
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
60
  }
65
61
  function _is_native_reflect_construct() {
62
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
+ if (Reflect.construct.sham) return false;
64
+ if (typeof Proxy === "function") return true;
66
65
  try {
67
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
- } catch (_) {}
69
- return (_is_native_reflect_construct = function() {
70
- return !!result;
71
- })();
66
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
+ return true;
68
+ } catch (e) {
69
+ return false;
70
+ }
71
+ }
72
+ function _create_super(Derived) {
73
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
74
+ return function _createSuperInternal() {
75
+ var Super = _get_prototype_of(Derived), result;
76
+ if (hasNativeReflectConstruct) {
77
+ var NewTarget = _get_prototype_of(this).constructor;
78
+ result = Reflect.construct(Super, arguments, NewTarget);
79
+ } else {
80
+ result = Super.apply(this, arguments);
81
+ }
82
+ return _possible_constructor_return(this, result);
83
+ };
72
84
  }
73
85
  import { BaseProps } from './base';
74
86
  export var TextareaProps = /*#__PURE__*/ function(BaseProps) {
75
87
  "use strict";
76
88
  _inherits(TextareaProps, BaseProps);
89
+ var _super = _create_super(TextareaProps);
77
90
  function TextareaProps(props) {
78
91
  _class_call_check(this, TextareaProps);
79
92
  var _this;
80
- _this = _call_super(this, TextareaProps, [
81
- props
82
- ]), _define_property(_this, "maxLength", void 0), _define_property(_this, "minLength", void 0), _define_property(_this, "placeholder", void 0), _define_property(_this, "i18n", void 0), _define_property(_this, "maxRows", void 0), _define_property(_this, "minRows", void 0);
93
+ _this = _super.call(this, props);
94
+ _define_property(_assert_this_initialized(_this), "maxLength", void 0);
95
+ _define_property(_assert_this_initialized(_this), "minLength", void 0);
96
+ _define_property(_assert_this_initialized(_this), "placeholder", void 0);
97
+ _define_property(_assert_this_initialized(_this), "i18n", void 0);
98
+ _define_property(_assert_this_initialized(_this), "maxRows", void 0);
99
+ _define_property(_assert_this_initialized(_this), "minRows", void 0);
83
100
  var _props_maxLength;
84
101
  _this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : '';
85
102
  var _props_minLength;
package/dist/index.umd.js CHANGED
@@ -1,2 +1,2 @@
1
- var Y5=Object.defineProperty,us=Object.defineProperties;var es=Object.getOwnPropertyDescriptors;var O=Object.getOwnPropertySymbols;var ts=Object.prototype.hasOwnProperty,as=Object.prototype.propertyIsEnumerable;var Z=(s,v,c)=>v in s?Y5(s,v,{enumerable:!0,configurable:!0,writable:!0,value:c}):s[v]=c,b=(s,v)=>{for(var c in v||(v={}))ts.call(v,c)&&Z(s,c,v[c]);if(O)for(var c of O(v))as.call(v,c)&&Z(s,c,v[c]);return s},f=(s,v)=>us(s,es(v));(function(s,v){typeof exports=="object"&&typeof module!="undefined"?v(exports):typeof define=="function"&&define.amd?define(["exports"],v):(s=typeof globalThis!="undefined"?globalThis:s||self,v(s.modelDrivenSettings={}))})(this,function(s){"use strict";function v(u){return u}class c{constructor(e){var t,a,n;this.visible=(t=e==null?void 0:e.visible)!=null?t:!0,this.expression=(a=e==null?void 0:e.expression)!=null?a:!1,this.updateParent=(n=e==null?void 0:e.updateParent)!=null?n:!1}get isAtomicComponent(){return!0}}var Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",uu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",eu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",tu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",au="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",nu="{caption}\u5FC5\u586B",ru="\u8BF7\u8F93\u5165\u6807\u9898",iu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ou="\u8BF7\u8F93\u5165\u884C\u6807\u9898",lu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",su="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",cu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Eu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Bu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",vu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Fu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Cu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",pu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",du="\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",Au="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",hu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Du="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",bu="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",fu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",gu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",$u="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Su="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",yu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",wu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Iu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Mu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Lu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",xu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ru="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ku="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",_u="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Uu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vu="\u8BF7\u9009\u62E9\u7701",Nu="\u8BF7\u9009\u62E9\u5E02",Tu="\u8BF7\u9009\u62E9\u533A",Pu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Gu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Wu="\u8BF7\u8F93\u5165\u5217\u5BBD",zu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",qu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Hu="\u8BF7\u9009\u62E9\u63A7\u4EF6",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ku="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Xu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ju="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ou="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ue="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ee="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",te="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ae="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ne="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",re="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ie="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",oe="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",le="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",se="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ce="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ee="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Be="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ve="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Fe="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Ce="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",pe="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",de="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",me="\u6279\u91CF\u5220\u9664",Ae="\u6279\u91CF\u6253\u5370",he="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",De="\u6309\u94AE",be="\u521B\u5EFA\u5355\u636E",fe="\u4EEA\u8868\u76D8",ge="\u5206\u5272\u7EBF",$e="\u5BFC\u51FA",Se="\u8868\u5355\u64CD\u4F5C",ye="\u5BFC\u5165",we="\u53D1\u7968\u8BC6\u522B",Ie="\u94FE\u63A5",Me="\u5217\u8868\u9009\u62E9",Le="\u5217\u8868\u89C6\u56FE",xe="\u64CD\u4F5C\u6309\u94AE",Re="\u5206\u9875",ke="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",_e="\u8BF4\u660E\u6587\u5B57",Ue="\u6587\u5B57\u8BC6\u522B",Ve="\u6807\u9898\u7EC4\u4EF6",Ne="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Te="\u6570\u7EC4",Pe="\u81EA\u52A8\u7F16\u53F7",Ge="\u81EA\u5B9A\u4E49",We="\u6570\u503C",ze="\u90E8\u95E8",qe="\u4EBA\u5458",He="\u9644\u4EF6",je="\u56FE\u7247",Ke="\u5730\u5740",Xe="\u64CD\u4F5C",Je="\u5E8F\u53F7",Qe="\u4EBA\u5458",Oe="\u957F\u6587\u672C",Ze="\u65E5\u671F\u533A\u95F4",Ye="\u65E5\u671F",ut="\u77ED\u6587\u672C",et="\u6362\u884C\u5BB9\u5668Wrap",tt="\u8868\u683C",at="\u660E\u7EC6\u5B50\u8868",nt="\u5730\u5740",rt="\u91D1\u989D",it="\u8BA1\u7B97\u516C\u5F0F",ot="\u591A\u9009",lt="\u7535\u5B50\u7B7E\u7AE0",st="\u5355\u884C\u6587\u672C",ct="\u6570\u5B57",Et="\u4E1A\u52A1\u7EC4\u7EC7",Bt="\u5355\u9009",vt="\u5BCC\u6587\u672C",Ft="\u8BC4\u5206",Ct="\u6570\u5B57\u533A\u95F4",pt="\u4E0B\u62C9\u5355\u9009",dt="\u4E0B\u62C9\u591A\u9009",mt="\u5173\u8054\u5355\u9009",At="\u591A\u884C\u6587\u672C",ht="\u6811",Dt="Vue\u5BB9\u5668",bt="Vue\u9875\u9762",ft="\u5728\u7EBF\u6587\u6863",gt="\u6309\u94AE\u64CD\u4F5C\u680F",$t="\u9AD8\u7EA7\u5BB9\u5668",St="\u5206\u7EC4",yt="\u6805\u683C\u5217",wt="\u6570\u636E\u5BB9\u5668",It="\u753B\u5E03",Mt="\u6362\u884C\u5BB9\u5668",Lt="\u6805\u683C\u7B49\u5206\u884C",xt="\u5217\u8868\u5BB9\u5668",Rt="\u81EA\u7531\u9875\u9762",kt="\u5B9A\u4F4D\u5B50\u5BB9\u5668",_t="\u5B9A\u4F4D\u5BB9\u5668",Ut="\u6805\u683C\u5E03\u5C40",Vt="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Nt="\u660E\u7EC6\u5B50\u8868\u884C",Tt="\u6807\u7B7E\u9875",Pt="\u6807\u7B7E\u5355\u5143",Gt="\u5DE5\u5177\u680F",Wt="\u6279\u91CF\u63D0\u4EA4",zt="\u5BFC\u51FA\u8BB0\u5F55",qt="\u5217\u8868\u89C6\u56FE",Ht="\u7ED3\u675F\u65F6\u95F4",jt="\u5F00\u59CB\u65F6\u95F4",Kt="\u5355\u4F4D",Xt="\u7ED3\u679C",Jt="\u5E01\u79CD",Qt="\u7ED3\u675F\u65E5\u671F",Ot="\u5F00\u59CB\u65E5\u671F",Zt="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Yt="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",ua="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ea="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",ta="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",aa="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",na="\u8BF7\u9009\u62E9",ra="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ia="\u8BF7\u9009\u62E9\u90E8\u95E8",oa="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",la="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",sa="\u8BF7\u9009\u62E9\u5730\u5740",ca="\u5F39\u7A97\u786E\u8BA4\u65F6",Ea="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Ba="\u884C\u9009\u4E2D\u65F6",va="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Fa="\u884C\u5220\u9664\u524D",Ca="\u884C\u70B9\u51FB\u65F6",pa="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",da="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",ma="\u91CD\u547D\u540D\u65F6",Aa="\u4FDD\u5B58\u6587\u4EF6\u65F6",ha="\u6253\u5F00\u6587\u4EF6\u65F6",Da="\u83B7\u53D6\u7126\u70B9\u65F6",ba="\u5931\u53BB\u7126\u70B9\u65F6",fa="\u7528\u6237\u8F93\u5165\u65F6",ga="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",$a="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Sa="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",ya="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",wa="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Ia="\u641C\u7D22\u65F6",Ma="\u503C\u53D1\u751F\u53D8\u5316\u65F6",La="\u6267\u884C\u5B8C\u6210\u65F6",xa="\u70B9\u51FB\u65F6",Ra="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",ka="\u8BF7\u8F93\u5165\u65E5\u671F",_a="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ua="\u8BF7\u8F93\u5165",Va="\u9ED8\u8BA4\u6A21\u7248",Na="\u5DE6\u53F3\u5E03\u5C40",Ta="\u4E0A\u4E0B\u5E03\u5C40",Pa="\u53EA\u8BFB",Ga="\u5FC5\u586B",Wa="\u63D0\u793A\u6587\u5B57",za="\u9690\u85CF\u6807\u9898",qa="\u6807\u9898\u5FC5\u586B",Ha="\u7EC4\u7EC7\u5F62\u6001",ja="\u4E1A\u52A1\u7C7B\u578B",Ka="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Xa="\u9690\u85CF",Ja="\u6D41\u7A0B\u72B6\u6001",Qa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Oa="\u5220\u9664",Za="\u7F16\u8F91",Ya="\u67E5\u770B",un="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",en="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",tn="\u5145\u6EE1\u6574\u884C",an="\u6700\u5C0F\u503C",nn="\u6700\u5927\u503C",rn="\u65B0\u5EFA\u6587\u6863",on="\u91CD\u7F6E",ln="\u67E5\u8BE2",sn="\u660E\u7EC6",cn="\u6253\u5370",En="\u4FDD\u5B58\u8349\u7A3F",Bn="\u4FDD\u5B58",vn="\u53D6\u6D88",Fn="\u4E0A\u4F20\u56FE\u7247",Cn="\u53D1\u8D77\u7B7E\u7F72",pn="\u4E0A\u4F20\u9644\u4EF6",dn="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",mn="\u5F15\u7528\u5217\u8868",An="\u9009\u9879\u4E00",hn="\u9009\u9879\u4E8C",Dn="\u9009\u9879\u4E09",bn={isNotNumber:Y,isNotString:uu,isNotObject:eu,isNotArray:tu,isNotBoolean:au,runtimeRequired:nu,pleaseEnterCaption:ru,pleaseEnterCaptionTip:iu,pleaseEnterRowCaption:ou,pleaseEnterPlaceholder:lu,pleaseEnterFieldCode:su,pleaseEnterForm:cu,pleaseEnterList:Eu,pleaseEnterProcess:Bu,pleaseEnterLabel:vu,pleaseEnterValue:Fu,bizKeyNotBindFiled:Cu,pleaseSelectOneField:pu,pleaseEnterNumberRange:du,pleaseEnterAValueGreaterThanMin:mu,pleaseEnterAValueLessThanMax:Au,numberRangeSetError:hu,stringRangeError:Du,attachmentMaxSize:bu,pleaseEnterTotalScoreSetting:fu,theTotalScoreMustNotBeLessThan1:gu,scoreDefaultValueRange:$u,attachmentLimitError:Su,PleaseReselectTheOptionalQuantity:yu,TheMaximumLengthIsGreaterThanTheMinimumLength:wu,TheMinimumLengthIsGreaterThanTheMaximumLength:Iu,PleaseSelectTheCorrectOptionSettings:Mu,optionIdIsRepeat:Lu,optionIsRequired:xu,pleaseEnterDataCode:Ru,pleaseEnterValueFieldCode:ku,pleaseEnterSvcCode:_u,pleaseBindAtLeastOneDisplayValue:Uu,pleaseSelectProvince:Vu,pleaseSelectCity:Nu,pleaseSelectDistrict:Tu,limitRowsCannotBeLessThan0:Pu,TheNumberOfRowsCannotBeLessThanMinRows:Gu,pleaseEnterColumnWidth:Wu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:zu,pleaseCompleteAllRulesAndConditions:qu,pleaseSelectControl:Hu,pleaseSelectAtLeastOneColumn:ju,pleaseSelectFillBackMode:Ku,pleaseSelectDashboard:Xu,rootNodeIsRequired:Ju,theViewNameCannotBeEmpty:Qu,pleaseSelectOcrType:Ou,pleaseSelectAtLeastOneFieldToFillIn:Zu,pleaseChooseAtLeastOne:Yu,pleaseEnterButtonContent:ue,pleaseEnterDataCodeInDataSetting:ee,pleaseEnterValueFieldCodeInDataSetting:te,pleaseEnterSvcCodeInDataSetting:ae,pleaseBindAtLeastOneDisplayValueInDataSetting:ne,rootNodeIsRequiredInDataSetting:re,pleaseEnterMaxHeight:ie,pleaseEnterWatermark:oe,pleaseEnterFileName:le,pleaseUploadAtLeastOnePrintTemplate:se,pleaseAssignBusiness:ce,pleaseAssignExternal:Ee,pleaseEnterAliasCode:Be,pleaseSelectDataCode:ve,pleaseSelectSvcCode:Fe,pleaseSelectJoinFieldCode:Ce,pleaseSelectMainFieldCode:pe,pleaseSelectSortFieldCode:de,batchDeleteButton:me,batchPrintListButton:Ae,batchPrintRecordList:he,button:De,createFormListButton:be,dashboard:fe,divider:ge,exportListButton:$e,formSelectButton:Se,importRecordListButton:ye,invoiceCheckButton:we,link:Ie,listSelectButton:Me,ListViewSelect:Le,operationButton:xe,pagination:Re,submissionRecordListButton:ke,text:_e,textOcrButton:Ue,title:Ve,approvalStatusColumn:Ne,array:Te,autoNumber:Pe,custom:Ge,decimal:We,department:ze,employee:qe,file:He,image:je,location:Ke,operation:Xe,order:Je,people:Qe,long:Oe,timescope:Ze,timestamp:Ye,varchar:ut,gridLayoutWrap:et,gridTable:tt,subTable:at,address:nt,amount:rt,calc:it,checkBox:ot,electronicSignature:lt,input:st,number:ct,organizationSelection:Et,radio:Bt,richText:vt,score:Ft,searchNumberRange:Ct,select:pt,selectMultiple:dt,selectRelation:mt,textarea:At,tree:ht,vueFormItem:Dt,vuePage:bt,WPS:ft,actionBar:gt,advancedContainer:$t,cardGroup:St,col:yt,dataView:wt,grid:It,gridLayoutContainer:Mt,gridRow:Lt,listView:xt,page:Rt,position:kt,positioningContainer:_t,row:Ut,subtableColumn:Vt,subtableRow:Nt,tab:Tt,tabPane:Pt,toolbox:Gt,batchSubmissionListButton:Wt,exportRecordListButton:zt,listViewSelect:qt,endTime:Ht,startTime:jt,unit:Kt,result:Xt,currency:Jt,endDate:Qt,startDate:Ot,pleaseSelectCompanyName:Zt,pleaseSelectPhoneOrEmail:Yt,pleaseSelectSignType:ua,pleaseSelectSigner:ea,pleaseSelectOnlyOne:ta,pleaseSelectSignFile:aa,pleaseSelect:na,pleaseSelectOrg:ra,pleaseSelectDept:ia,pleaseSelectEndDate:oa,pleaseSelectStartDate:la,pleaseChooseAddress:sa,modalConfirm:ca,tabChange:Ea,rowSelected:Ba,listDataImport:va,rowDelete:Fa,rowClick:Ca,cellRender:pa,onClickBtn:da,rename:ma,onSaveFile:Aa,onOpenFile:ha,onFocus:Da,onBlur:ba,onInput:fa,listDataAdd:ga,listDataDelete:$a,listDataBack:Sa,listDataCreate:ya,listDataChange:wa,search:Ia,valueChange:Ma,finished:La,click:xa,pleaseEnterNameorEmail:Ra,pleaseEnterDate:ka,pleaseEnterAutonumber:_a,pleaseEnter:Ua,defaultTemplate:Va,left:Na,top:Ta,default:"\u666E\u901A",readonly:Pa,required:Ga,textTip:Wa,hideCaption:za,titleRequired:qa,organizationalForm:Ha,businessType:ja,deleteConfirm:Ka,hide:Xa,processStatus:Ja,approvedDocuments:Qa,delete:Oa,edit:Za,view:Ya,loadCtrlErrorTip:un,loadCtrlError:en,fullLine:tn,min:an,max:nn,createWPS:rn,reset:on,query:ln,detailed:sn,print:cn,draft:En,save:Bn,cancel:vn,uploadImg:Fn,signature:Cn,uploadFile:pn,linkContent:dn,referenceList:mn,optionOne:An,optionTwo:hn,optionThird:Dn},fn="Please enter a number",gn="Please enter a string",$n="Please enter an object",Sn="Please enter an array",yn="Please enter a boolean",wn="{caption} Required",In="Please enter the title",Mn="Please enter the bubble prompt",Ln="Please enter the row title",xn="Please enter the prompt text",Rn="Please bind data items",kn="Please bind the form",_n="Please bind the list",Un="Please bind the process",Vn="Please enter the displayed value",Nn="Please enter the stored value",Tn="The document number is not bound to the data item",Pn="Please select at least one display field",Gn="Please enter a value greater than or equal to {min} and less than or equal to {max}",Wn="Please enter a value greater than or equal to {min}",zn="Please enter a value less than or equal to {max}",qn="The value range is set incorrectly",Hn="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",jn="The attachment size must be between 0MB and 1000MB",Kn="Please fill in the total score setting",Xn="The total score cannot be less than 1",Jn="The default value must be between {min} and {max}",Qn="The number of attachment uploads exceeds the limit",On="Please re-select the optional quantity",Zn="The maximum length of the control must be greater than the minimum length",Yn="The minimum length of the control must be less than the maximum length",ur="Please select the correct option setting",er="Option ID cannot be repeated",tr="Please enter at least one option",ar="Please bind the data source",nr="Please bind the stored value",rr="Please bind the service",ir="At least one display value must be bound",or="Please select a province",lr="Please select a city",sr="Please select a district",cr="The minimum number of lines to fill in cannot be less than 0",Er="The number of rows cannot be less than {min} rows",Br="Please enter the column width",vr="Please set the logical relationship of all rule conditions",Fr="Please complete all rules and conditions",Cr="please select control",pr="Please select the dashboard",dr="View name cannot be empty",mr="Please select recognition type",Ar="Please select at least one field to fill in",hr="Please select at least one",Dr="Please enter the button title",br="Please bind the business model in the data settings",fr="Please bind storage values in data settings",gr="Please bind the service in the data settings",$r="Please bind at least one display value in the data settings",Sr="Please select the root node in the data settings",yr="Please enter the maximum height",wr="The input content cannot be empty",Ir="Watermark cannot be empty",Mr="File name cannot be empty",Lr="Please upload at least one printing template!\uFF01",xr="Please select a specific business department",Rr="Please select a specified external organization",kr="Please enter a sub table alias",_r="Please select the associated table to set the business model",Ur="Please select the association table to set the binding service",Vr="Select associated sub table fields",Nr="Please select the associated main table field",Tr="Please select the sort field",Pr="\u6279\u91CF\u5220\u9664",Gr="\u6279\u91CF\u6253\u5370",Wr="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",zr="\u6309\u94AE",qr="\u521B\u5EFA\u5355\u636E",Hr="\u4EEA\u8868\u76D8",jr="\u5206\u5272\u7EBF",Kr="\u5BFC\u51FA",Xr="\u8868\u5355\u64CD\u4F5C",Jr="\u5BFC\u5165",Qr="\u53D1\u7968\u8BC6\u522B",Or="\u94FE\u63A5",Zr="\u5217\u8868\u9009\u62E9",Yr="\u5217\u8868\u89C6\u56FE",u0="\u64CD\u4F5C\u6309\u94AE",e0="\u5206\u9875",t0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",a0="\u8BF4\u660E\u6587\u5B57",n0="\u6587\u5B57\u8BC6\u522B",r0="\u6807\u9898\u7EC4\u4EF6",i0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",o0="\u6570\u7EC4",l0="\u81EA\u52A8\u7F16\u53F7",s0="\u81EA\u5B9A\u4E49",c0="\u6570\u503C",E0="\u90E8\u95E8",B0="\u4EBA\u5458",v0="\u9644\u4EF6",F0="\u56FE\u7247",C0="\u5730\u5740",p0="\u64CD\u4F5C",d0="\u5E8F\u53F7",m0="\u4EBA\u5458",A0="\u957F\u6587\u672C",h0="\u65E5\u671F\u533A\u95F4",D0="\u65E5\u671F",b0="\u77ED\u6587\u672C",f0="\u6362\u884C\u5BB9\u5668Wrap",g0="\u8868\u683C",$0="\u660E\u7EC6\u5B50\u8868",S0="\u5730\u5740",y0="\u91D1\u989D",w0="\u8BA1\u7B97\u516C\u5F0F",I0="\u591A\u9009",M0="\u7535\u5B50\u7B7E\u7AE0",L0="\u5355\u884C\u6587\u672C",x0="\u6570\u5B57",R0="\u4E1A\u52A1\u7EC4\u7EC7",k0="\u5355\u9009",_0="\u5BCC\u6587\u672C",U0="\u8BC4\u5206",V0="\u6570\u5B57\u533A\u95F4",N0="\u4E0B\u62C9\u5355\u9009",T0="\u4E0B\u62C9\u591A\u9009",P0="\u5173\u8054\u5355\u9009",G0="\u591A\u884C\u6587\u672C",W0="\u6811",z0="Vue\u5BB9\u5668",q0="Vue\u9875\u9762",H0="\u5728\u7EBF\u6587\u6863",j0="\u6309\u94AE\u64CD\u4F5C\u680F",K0="\u9AD8\u7EA7\u5BB9\u5668",X0="\u5206\u7EC4",J0="\u6805\u683C\u5217",Q0="\u6570\u636E\u5BB9\u5668",O0="\u753B\u5E03",Z0="\u6362\u884C\u5BB9\u5668",Y0="\u6805\u683C\u7B49\u5206\u884C",ui="\u5217\u8868\u5BB9\u5668",ei="\u81EA\u7531\u9875\u9762",ti="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ai="\u5B9A\u4F4D\u5BB9\u5668",ni="\u6805\u683C\u5E03\u5C40",ri="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ii="\u660E\u7EC6\u5B50\u8868\u884C",oi="\u6807\u7B7E\u9875",li="\u6807\u7B7E\u5355\u5143",si="\u5DE5\u5177\u680F",ci="\u6279\u91CF\u63D0\u4EA4",Ei="\u5BFC\u51FA\u8BB0\u5F55",Bi="\u5217\u8868\u89C6\u56FE",vi="\u5F15\u7528\u5217\u8868",Fi="\u9009\u9879\u4E00",Ci="\u9009\u9879\u4E8C",pi="\u9009\u9879\u4E09",di={isNotNumber:fn,isNotString:gn,isNotObject:$n,isNotArray:Sn,isNotBoolean:yn,runtimeRequired:wn,pleaseEnterCaption:In,pleaseEnterCaptionTip:Mn,pleaseEnterRowCaption:Ln,pleaseEnterPlaceholder:xn,pleaseEnterFieldCode:Rn,pleaseEnterForm:kn,pleaseEnterList:_n,pleaseEnterProcess:Un,pleaseEnterLabel:Vn,pleaseEnterValue:Nn,bizKeyNotBindFiled:Tn,pleaseSelectOneField:Pn,pleaseEnterNumberRange:Gn,pleaseEnterAValueGreaterThanMin:Wn,pleaseEnterAValueLessThanMax:zn,numberRangeSetError:qn,stringRangeError:Hn,attachmentMaxSize:jn,pleaseEnterTotalScoreSetting:Kn,theTotalScoreMustNotBeLessThan1:Xn,scoreDefaultValueRange:Jn,attachmentLimitError:Qn,PleaseReselectTheOptionalQuantity:On,TheMaximumLengthIsGreaterThanTheMinimumLength:Zn,TheMinimumLengthIsGreaterThanTheMaximumLength:Yn,PleaseSelectTheCorrectOptionSettings:ur,optionIdIsRepeat:er,optionIsRequired:tr,pleaseEnterDataCode:ar,pleaseEnterValueFieldCode:nr,pleaseEnterSvcCode:rr,pleaseBindAtLeastOneDisplayValue:ir,pleaseSelectProvince:or,pleaseSelectCity:lr,pleaseSelectDistrict:sr,limitRowsCannotBeLessThan0:cr,TheNumberOfRowsCannotBeLessThanMinRows:Er,pleaseEnterColumnWidth:Br,pleaseSetTheLogicalRelationshipOfAllRuleConditions:vr,pleaseCompleteAllRulesAndConditions:Fr,pleaseSelectControl:Cr,pleaseSelectDashboard:pr,theViewNameCannotBeEmpty:dr,pleaseSelectOcrType:mr,pleaseSelectAtLeastOneFieldToFillIn:Ar,pleaseChooseAtLeastOne:hr,pleaseEnterButtonContent:Dr,pleaseEnterDataCodeInDataSetting:br,pleaseEnterValueFieldCodeInDataSetting:fr,pleaseEnterSvcCodeInDataSetting:gr,pleaseBindAtLeastOneDisplayValueInDataSetting:$r,rootNodeIsRequiredInDataSetting:Sr,pleaseEnterMaxHeight:yr,pleaseEnter:wr,pleaseEnterWatermark:Ir,pleaseEnterFileName:Mr,pleaseUploadAtLeastOnePrintTemplate:Lr,pleaseAssignBusiness:xr,pleaseAssignExternal:Rr,pleaseEnterAliasCode:kr,pleaseSelectDataCode:_r,pleaseSelectSvcCode:Ur,pleaseSelectJoinFieldCode:Vr,pleaseSelectMainFieldCode:Nr,pleaseSelectSortFieldCode:Tr,batchDeleteButton:Pr,batchPrintListButton:Gr,batchPrintRecordList:Wr,button:zr,createFormListButton:qr,dashboard:Hr,divider:jr,exportListButton:Kr,formSelectButton:Xr,importRecordListButton:Jr,invoiceCheckButton:Qr,link:Or,listSelectButton:Zr,ListViewSelect:Yr,operationButton:u0,pagination:e0,submissionRecordListButton:t0,text:a0,textOcrButton:n0,title:r0,approvalStatusColumn:i0,array:o0,autoNumber:l0,custom:s0,decimal:c0,department:E0,employee:B0,file:v0,image:F0,location:C0,operation:p0,order:d0,people:m0,long:A0,timescope:h0,timestamp:D0,varchar:b0,gridLayoutWrap:f0,gridTable:g0,subTable:$0,address:S0,amount:y0,calc:w0,checkBox:I0,electronicSignature:M0,input:L0,number:x0,organizationSelection:R0,radio:k0,richText:_0,score:U0,searchNumberRange:V0,select:N0,selectMultiple:T0,selectRelation:P0,textarea:G0,tree:W0,vueFormItem:z0,vuePage:q0,WPS:H0,actionBar:j0,advancedContainer:K0,cardGroup:X0,col:J0,dataView:Q0,grid:O0,gridLayoutContainer:Z0,gridRow:Y0,listView:ui,page:ei,position:ti,positioningContainer:ai,row:ni,subtableColumn:ri,subtableRow:ii,tab:oi,tabPane:li,toolbox:si,batchSubmissionListButton:ci,exportRecordListButton:Ei,listViewSelect:Bi,referenceList:vi,optionOne:Fi,optionTwo:Ci,optionThird:pi},mi="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ai="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hi="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Di="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bi="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",fi="{caption}\u5FC5\u9808",gi="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$i="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Si="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",yi="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wi="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ii="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Mi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Li="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xi="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ri="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ki="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",_i="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ui="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Vi="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ni="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ti="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Pi="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Gi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",zi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",qi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Hi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",ji="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ki="\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",Xi="\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",Ji="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qi="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Oi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Zi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Yi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",uo="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",eo="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",to="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ao="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",no="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ro="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",io="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",oo="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lo="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",so="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",co="please select control",Eo="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bo="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",vo="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fo="\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",Co="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",po="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ao="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ho="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Do="\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",bo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",fo="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",go="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",$o="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",So="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",yo="\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",wo="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Io="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Mo="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lo="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",xo="\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",Ro="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",ko="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",_o="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Uo="\u6279\u91CF\u5220\u9664",Vo="\u6279\u91CF\u6253\u5370",No="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",To="\u6309\u94AE",Po="\u521B\u5EFA\u5355\u636E",Go="\u4EEA\u8868\u76D8",Wo="\u5206\u5272\u7EBF",zo="\u5BFC\u51FA",qo="\u8868\u5355\u64CD\u4F5C",Ho="\u5BFC\u5165",jo="\u53D1\u7968\u8BC6\u522B",Ko="\u94FE\u63A5",Xo="\u5217\u8868\u9009\u62E9",Jo="\u5217\u8868\u89C6\u56FE",Qo="\u64CD\u4F5C\u6309\u94AE",Oo="\u5206\u9875",Zo="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Yo="\u8BF4\u660E\u6587\u5B57",ul="\u6587\u5B57\u8BC6\u522B",el="\u6807\u9898\u7EC4\u4EF6",tl="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",al="\u6570\u7EC4",nl="\u81EA\u52A8\u7F16\u53F7",rl="\u81EA\u5B9A\u4E49",il="\u6570\u503C",ol="\u90E8\u95E8",ll="\u4EBA\u5458",sl="\u9644\u4EF6",cl="\u56FE\u7247",El="\u5730\u5740",Bl="\u64CD\u4F5C",vl="\u5E8F\u53F7",Fl="\u4EBA\u5458",Cl="\u957F\u6587\u672C",pl="\u65E5\u671F\u533A\u95F4",dl="\u65E5\u671F",ml="\u77ED\u6587\u672C",Al="\u6362\u884C\u5BB9\u5668Wrap",hl="\u8868\u683C",Dl="\u660E\u7EC6\u5B50\u8868",bl="\u5730\u5740",fl="\u91D1\u989D",gl="\u8BA1\u7B97\u516C\u5F0F",$l="\u591A\u9009",Sl="\u7535\u5B50\u7B7E\u7AE0",yl="\u5355\u884C\u6587\u672C",wl="\u6570\u5B57",Il="\u4E1A\u52A1\u7EC4\u7EC7",Ml="\u5355\u9009",Ll="\u5BCC\u6587\u672C",xl="\u8BC4\u5206",Rl="\u6570\u5B57\u533A\u95F4",kl="\u4E0B\u62C9\u5355\u9009",_l="\u4E0B\u62C9\u591A\u9009",Ul="\u5173\u8054\u5355\u9009",Vl="\u591A\u884C\u6587\u672C",Nl="\u6811",Tl="Vue\u5BB9\u5668",Pl="Vue\u9875\u9762",Gl="\u5728\u7EBF\u6587\u6863",Wl="\u6309\u94AE\u64CD\u4F5C\u680F",zl="\u9AD8\u7EA7\u5BB9\u5668",ql="\u5206\u7EC4",Hl="\u6805\u683C\u5217",jl="\u6570\u636E\u5BB9\u5668",Kl="\u753B\u5E03",Xl="\u6362\u884C\u5BB9\u5668",Jl="\u6805\u683C\u7B49\u5206\u884C",Ql="\u5217\u8868\u5BB9\u5668",Ol="\u81EA\u7531\u9875\u9762",Zl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Yl="\u5B9A\u4F4D\u5BB9\u5668",u5="\u6805\u683C\u5E03\u5C40",e5="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",t5="\u660E\u7EC6\u5B50\u8868\u884C",a5="\u6807\u7B7E\u9875",n5="\u6807\u7B7E\u5355\u5143",r5="\u5DE5\u5177\u680F",i5="\u6279\u91CF\u63D0\u4EA4",o5="\u5BFC\u51FA\u8BB0\u5F55",l5="\u5217\u8868\u89C6\u56FE",s5="\u5F15\u7528\u5217\u8868",c5="\u9009\u9879\u4E00",E5="\u9009\u9879\u4E8C",B5="\u9009\u9879\u4E09",v5={isNotNumber:mi,isNotString:Ai,isNotObject:hi,isNotArray:Di,isNotBoolean:bi,runtimeRequired:fi,pleaseEnterCaption:gi,pleaseEnterCaptionTip:$i,pleaseEnterRowCaption:Si,pleaseEnterPlaceholder:yi,pleaseEnterFieldCode:wi,pleaseEnterForm:Ii,pleaseEnterList:Mi,pleaseEnterProcess:Li,pleaseEnterLabel:xi,pleaseEnterValue:Ri,bizKeyNotBindFiled:ki,pleaseSelectOneField:_i,pleaseEnterNumberRange:Ui,pleaseEnterAValueGreaterThanMin:Vi,pleaseEnterAValueLessThanMax:Ni,numberRangeSetError:Ti,stringRangeError:Pi,attachmentMaxSize:Gi,pleaseEnterTotalScoreSetting:Wi,theTotalScoreMustNotBeLessThan1:zi,scoreDefaultValueRange:qi,attachmentLimitError:Hi,PleaseReselectTheOptionalQuantity:ji,TheMaximumLengthIsGreaterThanTheMinimumLength:Ki,TheMinimumLengthIsGreaterThanTheMaximumLength:Xi,PleaseSelectTheCorrectOptionSettings:Ji,optionIdIsRepeat:Qi,optionIsRequired:Oi,pleaseEnterDataCode:Zi,pleaseEnterValueFieldCode:Yi,pleaseEnterSvcCode:uo,pleaseBindAtLeastOneDisplayValue:eo,pleaseSelectProvince:to,pleaseSelectCity:ao,pleaseSelectDistrict:no,limitRowsCannotBeLessThan0:ro,TheNumberOfRowsCannotBeLessThanMinRows:io,pleaseEnterColumnWidth:oo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:lo,pleaseCompleteAllRulesAndConditions:so,pleaseSelectControl:co,pleaseSelectDashboard:Eo,theViewNameCannotBeEmpty:Bo,pleaseSelectOcrType:vo,pleaseSelectAtLeastOneFieldToFillIn:Fo,pleaseChooseAtLeastOne:Co,pleaseEnterButtonContent:po,pleaseEnterDataCodeInDataSetting:mo,pleaseEnterValueFieldCodeInDataSetting:Ao,pleaseEnterSvcCodeInDataSetting:ho,pleaseBindAtLeastOneDisplayValueInDataSetting:Do,rootNodeIsRequiredInDataSetting:bo,pleaseEnterMaxHeight:fo,pleaseEnter:go,pleaseEnterWatermark:$o,pleaseEnterFileName:So,pleaseUploadAtLeastOnePrintTemplate:yo,pleaseAssignBusiness:wo,pleaseAssignExternal:Io,pleaseEnterAliasCode:Mo,pleaseSelectDataCode:Lo,pleaseSelectSvcCode:xo,pleaseSelectJoinFieldCode:Ro,pleaseSelectMainFieldCode:ko,pleaseSelectSortFieldCode:_o,batchDeleteButton:Uo,batchPrintListButton:Vo,batchPrintRecordList:No,button:To,createFormListButton:Po,dashboard:Go,divider:Wo,exportListButton:zo,formSelectButton:qo,importRecordListButton:Ho,invoiceCheckButton:jo,link:Ko,listSelectButton:Xo,ListViewSelect:Jo,operationButton:Qo,pagination:Oo,submissionRecordListButton:Zo,text:Yo,textOcrButton:ul,title:el,approvalStatusColumn:tl,array:al,autoNumber:nl,custom:rl,decimal:il,department:ol,employee:ll,file:sl,image:cl,location:El,operation:Bl,order:vl,people:Fl,long:Cl,timescope:pl,timestamp:dl,varchar:ml,gridLayoutWrap:Al,gridTable:hl,subTable:Dl,address:bl,amount:fl,calc:gl,checkBox:$l,electronicSignature:Sl,input:yl,number:wl,organizationSelection:Il,radio:Ml,richText:Ll,score:xl,searchNumberRange:Rl,select:kl,selectMultiple:_l,selectRelation:Ul,textarea:Vl,tree:Nl,vueFormItem:Tl,vuePage:Pl,WPS:Gl,actionBar:Wl,advancedContainer:zl,cardGroup:ql,col:Hl,dataView:jl,grid:Kl,gridLayoutContainer:Xl,gridRow:Jl,listView:Ql,page:Ol,position:Zl,positioningContainer:Yl,row:u5,subtableColumn:e5,subtableRow:t5,tab:a5,tabPane:n5,toolbox:r5,batchSubmissionListButton:i5,exportRecordListButton:o5,listViewSelect:l5,referenceList:s5,optionOne:c5,optionTwo:E5,optionThird:B5},g={zhCN:bn,enUS:di,jaJP:v5},L;(function(u){u.Number="Number",u.Operator="Operator",u.VariableInMainTable="VariableInMainTable",u.VariableInCurrentSubTable="VariableInCurrentSubTable",u.VariableInOtherSubTable="VariableInOtherSubTable",u.UndefinedVariable="UndefinedVariable"})(L||(L={}));var x;(function(u){u.SUM="SUM",u.AVG="AVG",u.MAX="MAX",u.MIN="MIN"})(x||(x={}));var $,F5=($=window.localStorage.getItem("locale"))!==null&&$!==void 0?$:"zh-CN",C5=function(){},R;(function(u){u.BASE="base",u.FORM="form",u.LAYOUT="layout",u.WRAP="wrap",u.COLUMN="column",u.LIST="list",u.SEARCH="search"})(R||(R={}));var k;(function(u){u[u.FORM=0]="FORM",u[u.LIST=1]="LIST",u[u.REPORT=2]="REPORT",u[u.DASHBOARD=3]="DASHBOARD",u[u.VUE=4]="VUE",u[u.FREE_PAGE=5]="FREE_PAGE"})(k||(k={}));var _;(function(u){u.TITLE="title",u.LINK="link",u.BUTTON="button",u.DIVIDER="divider",u.TEXT="text",u.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",u.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",u.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",u.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",u.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",u.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",u.EXPORT_LIST_BUTTON="list-page-btn-export-list",u.LIST_SELECT_BUTTON="list-select-button",u.ORGANIZATION_SELECTION="organization-selection",u.FORM_SELECT_BUTTON="form-select-button",u.LIST_VIEW_SELECT="list-view-select",u.TEXT_OCR_BUTTON="text-ocr-button",u.INVOICE_CHECK_BUTTON="invoice-check-button",u.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",u.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",u.VARCHAR_COLUMN="varchar-column",u.TEXT_COLUMN="text-column",u.DECIMAL_COLUMN="decimal-column",u.TIMESCOPE_COLUMN="timescope-column",u.TIMESTAMP_COLUMN="timestamp-column",u.ARRAY_COLUMN="array-column",u.DEPARTMENT_COLUMN="department-column",u.AUTO_NUMBER_COLUMN="auto-number-column",u.FILE_COLUMN="file-column",u.IMAGE_COLUMN="image-column",u.PEOPLE_COLUMN="people-column",u.LOCATION_COLUMN="location-column",u.CUSTOM_COLUMN="custom-column",u.ORDER_COLUMN="order-column",u.OPERATION_COLUMN="operation-column",u.OPERATION_BUTTON="operation-button",u.EMPLOYEE_COLUMN="employee-column",u.Approval_Status_Column="approval-status-column",u.ADDRESS="address",u.AMOUNT="amount",u.ATTACHMENT="attachment",u.AUTO_NUMBER="auto-number",u.CALC="calc",u.CHECKBOX="checkbox",u.DATE_PICKER="date-picker",u.DATE_RANGE="date-range",u.DEPARTMENT="department",u.EMPLOYEE="employee",u.IMAGE="image",u.INPUT="input",u.NUMBER="number",u.RADIO="radio",u.RICH_TEXT="rich-text",u.SCORE="score",u.SEARCH_DATE_RANGE="search-date-range",u.SEARCH_NUMBER_RANGE="search-number-range",u.SEARCH_INPUT="search-input",u.SELECT="select",u.SELECT_MULTIPLE="select-multiple",u.SELECT_RELATION="select-relation",u.VUE_FORM_ITEM="vue-form-item",u.TEXTAREA="textarea",u.EMAIL="email",u.FOOTER="footer",u.HEADER="header",u.ID_CARD="id-card",u.MOBILE="mobile",u.PHONE="phone",u.RADIO_IMAGE="radio-image",u.ELECTRONIC_SIGNATURE="electronic-signature",u.WPS="wps",u.CARD_GROUP="card-group",u.COL="col",u.GRID="grid",u.GRID_ROW="grid-row",u.GRID_TABLE_COLUMN="grid-table-column",u.GRID_LAYOUT_CONTAINER="grid-layout-container",u.ROW="row",u.TWO_COLUMNS="two-columns",u.SUBTABLE_COLUMN="subtable-column",u.SUBTABLE_ROW="subtable-row",u.TAB="tab",u.TAB_PANE="tab-pane",u.TOOLBOX="toolbox",u.DATA_VIEW="data-view",u.LIST_VIEW="list-view",u.ACTION_BAR="action-bar",u.SUBTABLE="subtable",u.GRID_TABLE="grid-table",u.SIMPLE_SEARCH="simple-search",u.PAGINATION="pagination",u.CHECKBOX_IMAGE="checkbox-image",u.DASHBOARD="dashboard",u.TREE="tree",u.EMPLOYEE2="employee2",u.DEPARTMENT2="department2",u.GRID_LAYOUT_WRAP="grid-layout-wrap",u.VUE_PAGE="vue-page",u.REFERENCE_LIST="reference-list"})(_||(_={}));var U;(function(u){u.SAVE="save",u.DRAFT="draft",u.UNSUBMIT="unsubmit",u.AUDIT="audit",u.UNAUDIT="unaudit",u.CANCEL="cancel",u.FORM_SUBMIT="form_submit"})(U||(U={}));var V;(function(u){u.VARCHAR="varchar",u.TEXT="text",u.ARRAY="array",u.ADDRESS="location",u.DECIMAL="decimal",u.DECIMAL_RANGE="decimal_range",u.TIMESTAMP="timestamp",u.EMPLOYEES="people",u.DEPARTMENTS="department",u.MONEY="money",u.TIMESCOPE="timescope",u.FILE="file",u.IMAGE="image",u.AUTO_NUMBER="auto_number",u.CALC="calc",u.LIST="list",u.JSON="json",u.ANY="ANY"})(V||(V={}));var N;(function(u){u.YEAR="year",u.MONTH="month",u.DATE="date",u.DATEHOUR="datehour",u.DATEMIN="datemin",u.DATETIME="datetime"})(N||(N={}));function p5(u){if(u===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u}function d5(u,e,t){return e=d(e),D5(u,y()?Reflect.construct(e,t||[],d(u).constructor):e.apply(u,t))}function m5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function h(u,e,t){return y()?h=Reflect.construct:h=function(n,E,l){var B=[null];B.push.apply(B,E);var p=Function.bind.apply(n,B),D=new p;return l&&m(D,l.prototype),D},h.apply(null,arguments)}function d(u){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},d(u)}function A5(u,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");u.prototype=Object.create(e&&e.prototype,{constructor:{value:u,writable:!0,configurable:!0}}),e&&m(u,e)}function h5(u){return Function.toString.call(u).indexOf("[native code]")!==-1}function D5(u,e){return e&&(b5(e)==="object"||typeof e=="function")?e:p5(u)}function m(u,e){return m=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},m(u,e)}function b5(u){return u&&typeof Symbol!="undefined"&&u.constructor===Symbol?"symbol":typeof u}function S(u){var e=typeof Map=="function"?new Map:void 0;return S=function(a){if(a===null||!h5(a))return a;if(typeof a!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(a))return e.get(a);e.set(a,n)}function n(){return h(a,arguments,d(this).constructor)}return n.prototype=Object.create(a.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),m(n,a)},S(u)}function y(){try{var u=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(y=function(){return!!u})()}function f5(u){return u+" \u{1F41B}\u{1F41B}\u{1F41B}"}var g5=function(u){A5(e,u);function e(t){m5(this,e);var a;return a=d5(this,e,[t]),a.name="\u{1F4A5} Driven Error",a.message=t?f5(t):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return e}(S(Error));function $5(u){throw new g5(u)}const o=(u,e,t)=>{if(!u)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const a=u.split(".");let n;const E=(window.baitedaWorkers||{}).languageMessages||{};a.forEach((B,p)=>{p===0?n=E[B]:n&&(n=n[B])});let l="";return n&&(l=n),e&&Object.keys(e).forEach(B=>{const p=e[B];l=l.replace(new RegExp(`\\{\\s*${B}\\s*\\}`,"g"),p)}),l||(t?l=t:l=u),l};function S5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function T(u,e){for(var t=0;t<e.length;t++){var a=e[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(u,a.key,a)}}function y5(u,e,t){return e&&T(u.prototype,e),t&&T(u,t),u}function w5(u,e,t){return e in u?Object.defineProperty(u,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):u[e]=t,u}var P=function(){function u(){S5(this,u)}return y5(u,null,[{key:"getMessage",value:function(t){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n;return o("CMD."+t,a,g==null||(n=g[F5.split("-").join("")])===null||n===void 0?void 0:n[t])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(t,a){}}]),u}();w5(P,"$i18n",P.resetI18n());var I5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},M5={exports:{}};(function(u){(function(e){var t=function(r,i,F){if(!D(i)||J5(i)||Q5(i)||O5(i)||p(i))return i;var C,A=0,Q=0;if(X5(i))for(C=[],Q=i.length;A<Q;A++)C.push(t(r,i[A],F));else{C={};for(var M in i)Object.prototype.hasOwnProperty.call(i,M)&&(C[r(M,F)]=t(r,i[M],F))}return C},a=function(r,i){i=i||{};var F=i.separator||"_",C=i.split||/(?=[A-Z])/;return r.split(C).join(F)},n=function(r){return Z5(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(i,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},E=function(r){var i=n(r);return i.substr(0,1).toUpperCase()+i.substr(1)},l=function(r,i){return a(r,i).toLowerCase()},B=Object.prototype.toString,p=function(r){return typeof r=="function"},D=function(r){return r===Object(r)},X5=function(r){return B.call(r)=="[object Array]"},J5=function(r){return B.call(r)=="[object Date]"},Q5=function(r){return B.call(r)=="[object RegExp]"},O5=function(r){return B.call(r)=="[object Boolean]"},Z5=function(r){return r=r-0,r===r},I=function(r,i){var F=i&&"process"in i?i.process:i;return typeof F!="function"?r:function(C,A){return F(C,r,A)}},J={camelize:n,decamelize:l,pascalize:E,depascalize:l,camelizeKeys:function(r,i){return t(I(n,i),r)},decamelizeKeys:function(r,i){return t(I(l,i),r,i)},pascalizeKeys:function(r,i){return t(I(E,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};u.exports?u.exports=J:e.humps=J})(I5)})(M5);var G={};Object.defineProperty(G,"__esModule",{value:!0});function w(u){if(typeof u!="object"||u===null)return u;if(Array.isArray(u))return u.map(e=>typeof e!="object"||e===null?e:w(e));{const e={};for(const t in u){const a=u[t];e[t]=typeof a!="object"||a===null?a:w(a)}return e}}G.default=w;function W(u){return Object.prototype.toString.call(u)==="[object Object]"}function L5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function z(u,e){for(var t=0;t<e.length;t++){var a=e[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(u,a.key,a)}}function x5(u,e,t){return e&&z(u.prototype,e),t&&z(u,t),u}function R5(u,e,t){return e in u?Object.defineProperty(u,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):u[e]=t,u}var k5=[{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"}],_5=function(){function u(){L5(this,u)}return x5(u,null,[{key:"getEventsFromKeys",value:function(t){var a=typeof t=="string"?[t]:t;return u.events.filter(function(n){return a.includes(n.key)})}},{key:"getEventsFromControl",value:function(t){var a=[],n=t.eventKeys;a=a.concat(u.events.filter(function(l){return n.includes(l.key)}));var E=t.customEvents.map(function(l){var B=l.key;return l.namespace!==void 0&&l.namespace!==null&&l.namespace!==""&&(B=l.namespace+":"+l.key),{key:B,code:l.key,name:l.name}});return a=a.concat(E),a}}]),u}();R5(_5,"events",k5);class q{constructor(e){var t,a,n;this.type=e.type,this.label=e.label,this.key=e.key,this.component=e.component,this.effect=(t=e.effect)!=null?t:{},this.scopeEffect=(a=e.scopeEffect)!=null?a:C5,this.defaultValue=e.defaultValue,this.validator=e.validator,this.props=(n=e.props)!=null?n:new c,this.effectKeys=Object.keys(this.effect)}filterEffects(e){return e===""?Object.values(this.effect):this.effectKeys.filter(t=>new RegExp(`^${t}(\\.\\w+)*$`).test(e)).map(t=>this.effect[t])}callEffectFn(e,t){try{const a=e.apply(null,t);W(a)&&Object.assign(this.props,a)}catch(a){$5(`effect error
2
- ${a}`)}}callEffect(e,...t){this.filterEffects(e).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...e){this.callEffectFn(this.scopeEffect,e)}}class H{constructor(e){var t,a;this.type="group",this.title=(t=e.title)!=null?t:"",this.required=(a=e.required)!=null?a:!1,this.items=e.items,this.tips=e.tips,this.visible=e.items.some(n=>{var E;return(E=n.props)==null?void 0:E.visible})}}function j(u){return"type"in u&&u.type==="tab"}class K{constructor(e){this.type="tab",this.title=e.title,this.items=e.items}}class U5 extends c{constructor(e){super(e),W(e)&&Object.entries(e).forEach(([t,a])=>{this[t]=a})}}class V5 extends c{constructor(e){var t,a,n,E;super(e),this.maxLength=(t=e==null?void 0:e.maxLength)!=null?t:"",this.minLength=(a=e==null?void 0:e.minLength)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:"",this.i18n=(E=e==null?void 0:e.i18n)!=null?E:!1}}class N5 extends c{constructor(e){var t,a,n;super(e),this.max=(t=e==null?void 0:e.max)!=null?t:"",this.min=(a=e==null?void 0:e.min)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:""}}class T5 extends c{constructor(e){var t,a,n;super(e),this.showType=(t=e==null?void 0:e.showType)!=null?t:"switch",this.tips=(a=e==null?void 0:e.tips)!=null?a:"",this.disabled=(n=e==null?void 0:e.disabled)!=null?n:!1}}class P5 extends c{constructor(e){var t;super(e),this.options=(t=e==null?void 0:e.options)!=null?t:[]}}class G5 extends c{constructor(e){var t,a;super(e),this.placeholder=(t=e==null?void 0:e.placeholder)!=null?t:"",this.options=(a=e==null?void 0:e.options)!=null?a:[]}}class W5 extends c{constructor(e){var t,a;super(e),this.options=(t=e==null?void 0:e.options)!=null?t:[],this.showType=(a=e==null?void 0:e.showType)!=null?a:"outline"}}class z5 extends c{constructor(e){var t,a,n,E,l,B;super(e),this.maxLength=(t=e==null?void 0:e.maxLength)!=null?t:"",this.minLength=(a=e==null?void 0:e.minLength)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:"",this.maxRows=(E=e==null?void 0:e.maxRows)!=null?E:"",this.minRows=(l=e==null?void 0:e.minRows)!=null?l:"",this.i18n=(B=e==null?void 0:e.i18n)!=null?B:!1}}function q5(u,e){switch(u){case"input":return new V5(e);case"textarea":return new z5(e);case"input-number":return new N5(e);case"switch":return new T5(e);case"radio":return new W5(e);case"checkbox":return new P5(e);case"select":return new G5(e);default:return new U5(e)}}function H5(u){return function(e){const t=u.get(e);if(!!t)return new q(f(b({},t),{props:q5(t.component,"props"in t?t.props:void 0)}))}}function j5(u){const e=u.fields.reduce((n,E)=>(n.set(E.key,E),n),new Map);function t(n){return new H(f(b({},n),{items:n.items.map(H5(e)).filter(Boolean)}))}function a(n){return n.map(t)}return u.groups.map(n=>j(n)?new K(f(b({},n),{items:a(n.items)})):t(n))}function X(){return[{label:o("CMD.hide",null,"\u9690\u85CF"),key:"isHide",type:"boolean",component:"switch"},{key:"superSetting",component:"super-setting"},{key:"style.width",component:"styleComponent",props:{configKey:"style.widthConfig",options:["px","%","fill","hug"]},scopeEffect(u,e){const{oldParent:t,newParent:a,instance:n}=e;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(u.setInstance(n,"style.width",""),u.setInstance(n,"style.widthConfig","fill")),a)return{visible:a.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(u,e){const{oldParent:t,newParent:a,instance:n}=e;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(u.setInstance(n,"style.height",""),u.setInstance(n,"style.heightConfig","fill")),e.newParent)return{visible:e.newParent.type==="advanced-container"}}}]}function K5(u){return[...X(),{type:"DataBind",key:"dataBind",component:"data-bind",defaultValue:u==null?void 0:u.dataBind},{key:"caption",type:"string",component:"input",props:{maxLength:80,i18n:!0},defaultValue:u==null?void 0:u.caption,validator(e){if(!e)return o("CMD.titleRequired",null,"\u6807\u9898\u5FC5\u586B")}},{label:o("CMD.hideCaption",null,"\u9690\u85CF\u6807\u9898"),key:"isHideCaption",type:"boolean",component:"switch",defaultValue:u==null?void 0:u.isHideCaption,props:{showType:"checkbox"},scopeEffect(e,t){var a,n;if(((a=t.current)==null?void 0:a.type)!==((n=t.from)==null?void 0:n.type))return t.current.type==="subtable"&&e.setInstance(t.control,"isHideCaption",!0),{visible:t.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:u==null?void 0:u.labelPosition,props:{showType:"solid",options:[{label:o("CMD.top",null,"\u4E0A\u4E0B\u5E03\u5C40"),value:"top"},{label:o("CMD.left",null,"\u5DE6\u53F3\u5E03\u5C40"),value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:u==null?void 0:u.defaultState,props:{showType:"solid",options:[{label:o("CMD.default",null,"\u666E\u901A"),value:"default"},{label:o("CMD.readonly",null,"\u53EA\u8BFB"),value:"readonly"}]}},{label:o("CMD.required",null,"\u5FC5\u586B"),key:"required",type:"boolean",component:"switch",defaultValue:u==null?void 0:u.required},{label:o("CMD.textTip",null,"\u63D0\u793A\u6587\u5B57"),key:"placeholder",type:"string",component:"input",defaultValue:u==null?void 0:u.placeholder,props:{maxLength:80,i18n:!0}}]}s.Group=H,s.Setting=q,s.Tab=K,s.createBaseFields=X,s.createFormBaseFields=K5,s.defineInstance=v,s.initSettings=j5,s.isTabSchema=j,Object.defineProperty(s,"__esModule",{value:!0})});
1
+ var Y5=Object.defineProperty,us=Object.defineProperties;var es=Object.getOwnPropertyDescriptors;var O=Object.getOwnPropertySymbols;var ts=Object.prototype.hasOwnProperty,as=Object.prototype.propertyIsEnumerable;var Z=(s,v,E)=>v in s?Y5(s,v,{enumerable:!0,configurable:!0,writable:!0,value:E}):s[v]=E,f=(s,v)=>{for(var E in v||(v={}))ts.call(v,E)&&Z(s,E,v[E]);if(O)for(var E of O(v))as.call(v,E)&&Z(s,E,v[E]);return s},b=(s,v)=>us(s,es(v));(function(s,v){typeof exports=="object"&&typeof module!="undefined"?v(exports):typeof define=="function"&&define.amd?define(["exports"],v):(s=typeof globalThis!="undefined"?globalThis:s||self,v(s.modelDrivenSettings={}))})(this,function(s){"use strict";function v(u){return u}class E{constructor(e){var t,a,n;this.visible=(t=e==null?void 0:e.visible)!=null?t:!0,this.expression=(a=e==null?void 0:e.expression)!=null?a:!1,this.updateParent=(n=e==null?void 0:e.updateParent)!=null?n:!1}get isAtomicComponent(){return!0}}var Y="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",uu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",eu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",tu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",au="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",nu="{caption}\u5FC5\u586B",ru="\u8BF7\u8F93\u5165\u6807\u9898",iu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ou="\u8BF7\u8F93\u5165\u884C\u6807\u9898",lu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",su="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",cu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Eu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Bu="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",vu="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Fu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Cu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",du="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",pu="\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",Au="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",hu="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Du="\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",bu="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",gu="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",$u="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Su="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u8D85\u8FC7\u4E86\u9650\u5236",yu="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",wu="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Iu="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Mu="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Lu="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",xu="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ru="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",_u="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",ku="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Uu="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vu="\u8BF7\u9009\u62E9\u7701",Nu="\u8BF7\u9009\u62E9\u5E02",Tu="\u8BF7\u9009\u62E9\u533A",Pu="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Gu="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Wu="\u8BF7\u8F93\u5165\u5217\u5BBD",zu="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",qu="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Hu="\u8BF7\u9009\u62E9\u63A7\u4EF6",ju="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ku="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Xu="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ju="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ou="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Zu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ue="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ee="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",te="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ae="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ne="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",re="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ie="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",oe="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",le="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",se="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ce="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ee="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Be="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",ve="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Fe="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Ce="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",de="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",pe="\u8BF7\u9009\u62E9\u6392\u5E8F\u5B57\u6BB5",me="\u6279\u91CF\u5220\u9664",Ae="\u6279\u91CF\u6253\u5370",he="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",De="\u6309\u94AE",fe="\u521B\u5EFA\u5355\u636E",be="\u4EEA\u8868\u76D8",ge="\u5206\u5272\u7EBF",$e="\u5BFC\u51FA",Se="\u8868\u5355\u64CD\u4F5C",ye="\u5BFC\u5165",we="\u53D1\u7968\u8BC6\u522B",Ie="\u94FE\u63A5",Me="\u5217\u8868\u9009\u62E9",Le="\u5217\u8868\u89C6\u56FE",xe="\u64CD\u4F5C\u6309\u94AE",Re="\u5206\u9875",_e="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",ke="\u8BF4\u660E\u6587\u5B57",Ue="\u6587\u5B57\u8BC6\u522B",Ve="\u6807\u9898\u7EC4\u4EF6",Ne="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",Te="\u6570\u7EC4",Pe="\u81EA\u52A8\u7F16\u53F7",Ge="\u81EA\u5B9A\u4E49",We="\u6570\u503C",ze="\u90E8\u95E8",qe="\u4EBA\u5458",He="\u9644\u4EF6",je="\u56FE\u7247",Ke="\u5730\u5740",Xe="\u64CD\u4F5C",Je="\u5E8F\u53F7",Qe="\u4EBA\u5458",Oe="\u957F\u6587\u672C",Ze="\u65E5\u671F\u533A\u95F4",Ye="\u65E5\u671F",ut="\u77ED\u6587\u672C",et="\u6362\u884C\u5BB9\u5668Wrap",tt="\u8868\u683C",at="\u660E\u7EC6\u5B50\u8868",nt="\u5730\u5740",rt="\u91D1\u989D",it="\u8BA1\u7B97\u516C\u5F0F",ot="\u591A\u9009",lt="\u7535\u5B50\u7B7E\u7AE0",st="\u5355\u884C\u6587\u672C",ct="\u6570\u5B57",Et="\u4E1A\u52A1\u7EC4\u7EC7",Bt="\u5355\u9009",vt="\u5BCC\u6587\u672C",Ft="\u8BC4\u5206",Ct="\u6570\u5B57\u533A\u95F4",dt="\u4E0B\u62C9\u5355\u9009",pt="\u4E0B\u62C9\u591A\u9009",mt="\u5173\u8054\u5355\u9009",At="\u591A\u884C\u6587\u672C",ht="\u6811",Dt="Vue\u5BB9\u5668",ft="Vue\u9875\u9762",bt="\u5728\u7EBF\u6587\u6863",gt="\u6309\u94AE\u64CD\u4F5C\u680F",$t="\u9AD8\u7EA7\u5BB9\u5668",St="\u5206\u7EC4",yt="\u6805\u683C\u5217",wt="\u6570\u636E\u5BB9\u5668",It="\u753B\u5E03",Mt="\u6362\u884C\u5BB9\u5668",Lt="\u6805\u683C\u7B49\u5206\u884C",xt="\u5217\u8868\u5BB9\u5668",Rt="\u81EA\u7531\u9875\u9762",_t="\u5B9A\u4F4D\u5B50\u5BB9\u5668",kt="\u5B9A\u4F4D\u5BB9\u5668",Ut="\u6805\u683C\u5E03\u5C40",Vt="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",Nt="\u660E\u7EC6\u5B50\u8868\u884C",Tt="\u6807\u7B7E\u9875",Pt="\u6807\u7B7E\u5355\u5143",Gt="\u5DE5\u5177\u680F",Wt="\u6279\u91CF\u63D0\u4EA4",zt="\u5BFC\u51FA\u8BB0\u5F55",qt="\u5217\u8868\u89C6\u56FE",Ht="\u7ED3\u675F\u65F6\u95F4",jt="\u5F00\u59CB\u65F6\u95F4",Kt="\u5355\u4F4D",Xt="\u7ED3\u679C",Jt="\u5E01\u79CD",Qt="\u7ED3\u675F\u65E5\u671F",Ot="\u5F00\u59CB\u65E5\u671F",Zt="\u8BF7\u9009\u62E9\u516C\u53F8\u540D\u79F0",Yt="\u8BF7\u9009\u62E9\u624B\u673A\u53F7/\u90AE\u7BB1",ua="\u8BF7\u9009\u62E9\u7B7E\u7AE0\u7C7B\u578B",ea="\u8BF7\u9009\u62E9\u7B7E\u7F72\u4EBA",ta="\u81F3\u5C11\u9700\u8981\u4E00\u4E2A\u7B7E\u7F72\u4EBA",aa="\u8BF7\u9009\u62E9\u7B7E\u7F72\u6587\u4EF6",na="\u8BF7\u9009\u62E9",ra="\u8BF7\u9009\u62E9\u7EC4\u7EC7",ia="\u8BF7\u9009\u62E9\u90E8\u95E8",oa="\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",la="\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",sa="\u8BF7\u9009\u62E9\u5730\u5740",ca="\u5F39\u7A97\u786E\u8BA4\u65F6",Ea="\u6807\u7B7E\u9875\u5207\u6362\u65F6",Ba="\u884C\u9009\u4E2D\u65F6",va="\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",Fa="\u884C\u5220\u9664\u524D",Ca="\u884C\u70B9\u51FB\u65F6",da="\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",pa="\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",ma="\u91CD\u547D\u540D\u65F6",Aa="\u4FDD\u5B58\u6587\u4EF6\u65F6",ha="\u6253\u5F00\u6587\u4EF6\u65F6",Da="\u83B7\u53D6\u7126\u70B9\u65F6",fa="\u5931\u53BB\u7126\u70B9\u65F6",ba="\u7528\u6237\u8F93\u5165\u65F6",ga="\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",$a="\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",Sa="\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",ya="\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",wa="\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",Ia="\u641C\u7D22\u65F6",Ma="\u503C\u53D1\u751F\u53D8\u5316\u65F6",La="\u6267\u884C\u5B8C\u6210\u65F6",xa="\u70B9\u51FB\u65F6",Ra="\u8BF7\u8F93\u5165\u4EBA\u5458\u59D3\u540D\u6216\u90AE\u7BB1",_a="\u8BF7\u8F93\u5165\u65E5\u671F",ka="\u8BF7\u8F93\u5165\u81EA\u52A8\u7F16\u53F7",Ua="\u8BF7\u8F93\u5165",Va="\u9ED8\u8BA4\u6A21\u7248",Na="\u5DE6\u53F3\u5E03\u5C40",Ta="\u4E0A\u4E0B\u5E03\u5C40",Pa="\u53EA\u8BFB",Ga="\u5FC5\u586B",Wa="\u63D0\u793A\u6587\u5B57",za="\u9690\u85CF\u6807\u9898",qa="\u6807\u9898\u5FC5\u586B",Ha="\u7EC4\u7EC7\u5F62\u6001",ja="\u4E1A\u52A1\u7C7B\u578B",Ka="\u786E\u5B9A\u8981\u5220\u9664\u6B64\u6761\u6570\u636E\u5417\uFF1F",Xa="\u9690\u85CF",Ja="\u6D41\u7A0B\u72B6\u6001",Qa="\u5BA1\u6279\u901A\u8FC7\u5355\u636E",Oa="\u5220\u9664",Za="\u7F16\u8F91",Ya="\u67E5\u770B",un="\u52A0\u8F7D\u81EA\u5B9A\u4E49\u63A7\u4EF6\u5F02\u5E38\uFF0C\u4F1A\u5F71\u54CD\u5230\u7684\u63A7\u4EF6\uFF1A{id}",en="\u5185\u7F6E\u7EC4\u4EF6\u52A0\u8F7D\u9519\u8BEF",tn="\u5145\u6EE1\u6574\u884C",an="\u6700\u5C0F\u503C",nn="\u6700\u5927\u503C",rn="\u65B0\u5EFA\u6587\u6863",on="\u91CD\u7F6E",ln="\u67E5\u8BE2",sn="\u660E\u7EC6",cn="\u6253\u5370",En="\u4FDD\u5B58\u8349\u7A3F",Bn="\u4FDD\u5B58",vn="\u53D6\u6D88",Fn="\u4E0A\u4F20\u56FE\u7247",Cn="\u53D1\u8D77\u7B7E\u7F72",dn="\u4E0A\u4F20\u9644\u4EF6",pn="\u6211\u662F\u4E00\u4E2A\u94FE\u63A5",mn="\u5F15\u7528\u5217\u8868",An="\u9009\u9879\u4E00",hn="\u9009\u9879\u4E8C",Dn="\u9009\u9879\u4E09",fn={isNotNumber:Y,isNotString:uu,isNotObject:eu,isNotArray:tu,isNotBoolean:au,runtimeRequired:nu,pleaseEnterCaption:ru,pleaseEnterCaptionTip:iu,pleaseEnterRowCaption:ou,pleaseEnterPlaceholder:lu,pleaseEnterFieldCode:su,pleaseEnterForm:cu,pleaseEnterList:Eu,pleaseEnterProcess:Bu,pleaseEnterLabel:vu,pleaseEnterValue:Fu,bizKeyNotBindFiled:Cu,pleaseSelectOneField:du,pleaseEnterNumberRange:pu,pleaseEnterAValueGreaterThanMin:mu,pleaseEnterAValueLessThanMax:Au,numberRangeSetError:hu,stringRangeError:Du,attachmentMaxSize:fu,pleaseEnterTotalScoreSetting:bu,theTotalScoreMustNotBeLessThan1:gu,scoreDefaultValueRange:$u,attachmentLimitError:Su,PleaseReselectTheOptionalQuantity:yu,TheMaximumLengthIsGreaterThanTheMinimumLength:wu,TheMinimumLengthIsGreaterThanTheMaximumLength:Iu,PleaseSelectTheCorrectOptionSettings:Mu,optionIdIsRepeat:Lu,optionIsRequired:xu,pleaseEnterDataCode:Ru,pleaseEnterValueFieldCode:_u,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:Uu,pleaseSelectProvince:Vu,pleaseSelectCity:Nu,pleaseSelectDistrict:Tu,limitRowsCannotBeLessThan0:Pu,TheNumberOfRowsCannotBeLessThanMinRows:Gu,pleaseEnterColumnWidth:Wu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:zu,pleaseCompleteAllRulesAndConditions:qu,pleaseSelectControl:Hu,pleaseSelectAtLeastOneColumn:ju,pleaseSelectFillBackMode:Ku,pleaseSelectDashboard:Xu,rootNodeIsRequired:Ju,theViewNameCannotBeEmpty:Qu,pleaseSelectOcrType:Ou,pleaseSelectAtLeastOneFieldToFillIn:Zu,pleaseChooseAtLeastOne:Yu,pleaseEnterButtonContent:ue,pleaseEnterDataCodeInDataSetting:ee,pleaseEnterValueFieldCodeInDataSetting:te,pleaseEnterSvcCodeInDataSetting:ae,pleaseBindAtLeastOneDisplayValueInDataSetting:ne,rootNodeIsRequiredInDataSetting:re,pleaseEnterMaxHeight:ie,pleaseEnterWatermark:oe,pleaseEnterFileName:le,pleaseUploadAtLeastOnePrintTemplate:se,pleaseAssignBusiness:ce,pleaseAssignExternal:Ee,pleaseEnterAliasCode:Be,pleaseSelectDataCode:ve,pleaseSelectSvcCode:Fe,pleaseSelectJoinFieldCode:Ce,pleaseSelectMainFieldCode:de,pleaseSelectSortFieldCode:pe,batchDeleteButton:me,batchPrintListButton:Ae,batchPrintRecordList:he,button:De,createFormListButton:fe,dashboard:be,divider:ge,exportListButton:$e,formSelectButton:Se,importRecordListButton:ye,invoiceCheckButton:we,link:Ie,listSelectButton:Me,ListViewSelect:Le,operationButton:xe,pagination:Re,submissionRecordListButton:_e,text:ke,textOcrButton:Ue,title:Ve,approvalStatusColumn:Ne,array:Te,autoNumber:Pe,custom:Ge,decimal:We,department:ze,employee:qe,file:He,image:je,location:Ke,operation:Xe,order:Je,people:Qe,long:Oe,timescope:Ze,timestamp:Ye,varchar:ut,gridLayoutWrap:et,gridTable:tt,subTable:at,address:nt,amount:rt,calc:it,checkBox:ot,electronicSignature:lt,input:st,number:ct,organizationSelection:Et,radio:Bt,richText:vt,score:Ft,searchNumberRange:Ct,select:dt,selectMultiple:pt,selectRelation:mt,textarea:At,tree:ht,vueFormItem:Dt,vuePage:ft,WPS:bt,actionBar:gt,advancedContainer:$t,cardGroup:St,col:yt,dataView:wt,grid:It,gridLayoutContainer:Mt,gridRow:Lt,listView:xt,page:Rt,position:_t,positioningContainer:kt,row:Ut,subtableColumn:Vt,subtableRow:Nt,tab:Tt,tabPane:Pt,toolbox:Gt,batchSubmissionListButton:Wt,exportRecordListButton:zt,listViewSelect:qt,endTime:Ht,startTime:jt,unit:Kt,result:Xt,currency:Jt,endDate:Qt,startDate:Ot,pleaseSelectCompanyName:Zt,pleaseSelectPhoneOrEmail:Yt,pleaseSelectSignType:ua,pleaseSelectSigner:ea,pleaseSelectOnlyOne:ta,pleaseSelectSignFile:aa,pleaseSelect:na,pleaseSelectOrg:ra,pleaseSelectDept:ia,pleaseSelectEndDate:oa,pleaseSelectStartDate:la,pleaseChooseAddress:sa,modalConfirm:ca,tabChange:Ea,rowSelected:Ba,listDataImport:va,rowDelete:Fa,rowClick:Ca,cellRender:da,onClickBtn:pa,rename:ma,onSaveFile:Aa,onOpenFile:ha,onFocus:Da,onBlur:fa,onInput:ba,listDataAdd:ga,listDataDelete:$a,listDataBack:Sa,listDataCreate:ya,listDataChange:wa,search:Ia,valueChange:Ma,finished:La,click:xa,pleaseEnterNameorEmail:Ra,pleaseEnterDate:_a,pleaseEnterAutonumber:ka,pleaseEnter:Ua,defaultTemplate:Va,left:Na,top:Ta,default:"\u666E\u901A",readonly:Pa,required:Ga,textTip:Wa,hideCaption:za,titleRequired:qa,organizationalForm:Ha,businessType:ja,deleteConfirm:Ka,hide:Xa,processStatus:Ja,approvedDocuments:Qa,delete:Oa,edit:Za,view:Ya,loadCtrlErrorTip:un,loadCtrlError:en,fullLine:tn,min:an,max:nn,createWPS:rn,reset:on,query:ln,detailed:sn,print:cn,draft:En,save:Bn,cancel:vn,uploadImg:Fn,signature:Cn,uploadFile:dn,linkContent:pn,referenceList:mn,optionOne:An,optionTwo:hn,optionThird:Dn},bn="Please enter a number",gn="Please enter a string",$n="Please enter an object",Sn="Please enter an array",yn="Please enter a boolean",wn="{caption} Required",In="Please enter the title",Mn="Please enter the bubble prompt",Ln="Please enter the row title",xn="Please enter the prompt text",Rn="Please bind data items",_n="Please bind the form",kn="Please bind the list",Un="Please bind the process",Vn="Please enter the displayed value",Nn="Please enter the stored value",Tn="The document number is not bound to the data item",Pn="Please select at least one display field",Gn="Please enter a value greater than or equal to {min} and less than or equal to {max}",Wn="Please enter a value greater than or equal to {min}",zn="Please enter a value less than or equal to {max}",qn="The value range is set incorrectly",Hn="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",jn="The attachment size must be between 0MB and 1000MB",Kn="Please fill in the total score setting",Xn="The total score cannot be less than 1",Jn="The default value must be between {min} and {max}",Qn="The number of attachment uploads exceeds the limit",On="Please re-select the optional quantity",Zn="The maximum length of the control must be greater than the minimum length",Yn="The minimum length of the control must be less than the maximum length",ur="Please select the correct option setting",er="Option ID cannot be repeated",tr="Please enter at least one option",ar="Please bind the data source",nr="Please bind the stored value",rr="Please bind the service",ir="At least one display value must be bound",or="Please select a province",lr="Please select a city",sr="Please select a district",cr="The minimum number of lines to fill in cannot be less than 0",Er="The number of rows cannot be less than {min} rows",Br="Please enter the column width",vr="Please set the logical relationship of all rule conditions",Fr="Please complete all rules and conditions",Cr="please select control",dr="Please select the dashboard",pr="View name cannot be empty",mr="Please select recognition type",Ar="Please select at least one field to fill in",hr="Please select at least one",Dr="Please enter the button title",fr="Please bind the business model in the data settings",br="Please bind storage values in data settings",gr="Please bind the service in the data settings",$r="Please bind at least one display value in the data settings",Sr="Please select the root node in the data settings",yr="Please enter the maximum height",wr="The input content cannot be empty",Ir="Watermark cannot be empty",Mr="File name cannot be empty",Lr="Please upload at least one printing template!\uFF01",xr="Please select a specific business department",Rr="Please select a specified external organization",_r="Please enter a sub table alias",kr="Please select the associated table to set the business model",Ur="Please select the association table to set the binding service",Vr="Select associated sub table fields",Nr="Please select the associated main table field",Tr="Please select the sort field",Pr="\u6279\u91CF\u5220\u9664",Gr="\u6279\u91CF\u6253\u5370",Wr="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",zr="\u6309\u94AE",qr="\u521B\u5EFA\u5355\u636E",Hr="\u4EEA\u8868\u76D8",jr="\u5206\u5272\u7EBF",Kr="\u5BFC\u51FA",Xr="\u8868\u5355\u64CD\u4F5C",Jr="\u5BFC\u5165",Qr="\u53D1\u7968\u8BC6\u522B",Or="\u94FE\u63A5",Zr="\u5217\u8868\u9009\u62E9",Yr="\u5217\u8868\u89C6\u56FE",u0="\u64CD\u4F5C\u6309\u94AE",e0="\u5206\u9875",t0="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",a0="\u8BF4\u660E\u6587\u5B57",n0="\u6587\u5B57\u8BC6\u522B",r0="\u6807\u9898\u7EC4\u4EF6",i0="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",o0="\u6570\u7EC4",l0="\u81EA\u52A8\u7F16\u53F7",s0="\u81EA\u5B9A\u4E49",c0="\u6570\u503C",E0="\u90E8\u95E8",B0="\u4EBA\u5458",v0="\u9644\u4EF6",F0="\u56FE\u7247",C0="\u5730\u5740",d0="\u64CD\u4F5C",p0="\u5E8F\u53F7",m0="\u4EBA\u5458",A0="\u957F\u6587\u672C",h0="\u65E5\u671F\u533A\u95F4",D0="\u65E5\u671F",f0="\u77ED\u6587\u672C",b0="\u6362\u884C\u5BB9\u5668Wrap",g0="\u8868\u683C",$0="\u660E\u7EC6\u5B50\u8868",S0="\u5730\u5740",y0="\u91D1\u989D",w0="\u8BA1\u7B97\u516C\u5F0F",I0="\u591A\u9009",M0="\u7535\u5B50\u7B7E\u7AE0",L0="\u5355\u884C\u6587\u672C",x0="\u6570\u5B57",R0="\u4E1A\u52A1\u7EC4\u7EC7",_0="\u5355\u9009",k0="\u5BCC\u6587\u672C",U0="\u8BC4\u5206",V0="\u6570\u5B57\u533A\u95F4",N0="\u4E0B\u62C9\u5355\u9009",T0="\u4E0B\u62C9\u591A\u9009",P0="\u5173\u8054\u5355\u9009",G0="\u591A\u884C\u6587\u672C",W0="\u6811",z0="Vue\u5BB9\u5668",q0="Vue\u9875\u9762",H0="\u5728\u7EBF\u6587\u6863",j0="\u6309\u94AE\u64CD\u4F5C\u680F",K0="\u9AD8\u7EA7\u5BB9\u5668",X0="\u5206\u7EC4",J0="\u6805\u683C\u5217",Q0="\u6570\u636E\u5BB9\u5668",O0="\u753B\u5E03",Z0="\u6362\u884C\u5BB9\u5668",Y0="\u6805\u683C\u7B49\u5206\u884C",ui="\u5217\u8868\u5BB9\u5668",ei="\u81EA\u7531\u9875\u9762",ti="\u5B9A\u4F4D\u5B50\u5BB9\u5668",ai="\u5B9A\u4F4D\u5BB9\u5668",ni="\u6805\u683C\u5E03\u5C40",ri="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",ii="\u660E\u7EC6\u5B50\u8868\u884C",oi="\u6807\u7B7E\u9875",li="\u6807\u7B7E\u5355\u5143",si="\u5DE5\u5177\u680F",ci="\u6279\u91CF\u63D0\u4EA4",Ei="\u5BFC\u51FA\u8BB0\u5F55",Bi="\u5217\u8868\u89C6\u56FE",vi="\u5F15\u7528\u5217\u8868",Fi="\u9009\u9879\u4E00",Ci="\u9009\u9879\u4E8C",di="\u9009\u9879\u4E09",pi={isNotNumber:bn,isNotString:gn,isNotObject:$n,isNotArray:Sn,isNotBoolean:yn,runtimeRequired:wn,pleaseEnterCaption:In,pleaseEnterCaptionTip:Mn,pleaseEnterRowCaption:Ln,pleaseEnterPlaceholder:xn,pleaseEnterFieldCode:Rn,pleaseEnterForm:_n,pleaseEnterList:kn,pleaseEnterProcess:Un,pleaseEnterLabel:Vn,pleaseEnterValue:Nn,bizKeyNotBindFiled:Tn,pleaseSelectOneField:Pn,pleaseEnterNumberRange:Gn,pleaseEnterAValueGreaterThanMin:Wn,pleaseEnterAValueLessThanMax:zn,numberRangeSetError:qn,stringRangeError:Hn,attachmentMaxSize:jn,pleaseEnterTotalScoreSetting:Kn,theTotalScoreMustNotBeLessThan1:Xn,scoreDefaultValueRange:Jn,attachmentLimitError:Qn,PleaseReselectTheOptionalQuantity:On,TheMaximumLengthIsGreaterThanTheMinimumLength:Zn,TheMinimumLengthIsGreaterThanTheMaximumLength:Yn,PleaseSelectTheCorrectOptionSettings:ur,optionIdIsRepeat:er,optionIsRequired:tr,pleaseEnterDataCode:ar,pleaseEnterValueFieldCode:nr,pleaseEnterSvcCode:rr,pleaseBindAtLeastOneDisplayValue:ir,pleaseSelectProvince:or,pleaseSelectCity:lr,pleaseSelectDistrict:sr,limitRowsCannotBeLessThan0:cr,TheNumberOfRowsCannotBeLessThanMinRows:Er,pleaseEnterColumnWidth:Br,pleaseSetTheLogicalRelationshipOfAllRuleConditions:vr,pleaseCompleteAllRulesAndConditions:Fr,pleaseSelectControl:Cr,pleaseSelectDashboard:dr,theViewNameCannotBeEmpty:pr,pleaseSelectOcrType:mr,pleaseSelectAtLeastOneFieldToFillIn:Ar,pleaseChooseAtLeastOne:hr,pleaseEnterButtonContent:Dr,pleaseEnterDataCodeInDataSetting:fr,pleaseEnterValueFieldCodeInDataSetting:br,pleaseEnterSvcCodeInDataSetting:gr,pleaseBindAtLeastOneDisplayValueInDataSetting:$r,rootNodeIsRequiredInDataSetting:Sr,pleaseEnterMaxHeight:yr,pleaseEnter:wr,pleaseEnterWatermark:Ir,pleaseEnterFileName:Mr,pleaseUploadAtLeastOnePrintTemplate:Lr,pleaseAssignBusiness:xr,pleaseAssignExternal:Rr,pleaseEnterAliasCode:_r,pleaseSelectDataCode:kr,pleaseSelectSvcCode:Ur,pleaseSelectJoinFieldCode:Vr,pleaseSelectMainFieldCode:Nr,pleaseSelectSortFieldCode:Tr,batchDeleteButton:Pr,batchPrintListButton:Gr,batchPrintRecordList:Wr,button:zr,createFormListButton:qr,dashboard:Hr,divider:jr,exportListButton:Kr,formSelectButton:Xr,importRecordListButton:Jr,invoiceCheckButton:Qr,link:Or,listSelectButton:Zr,ListViewSelect:Yr,operationButton:u0,pagination:e0,submissionRecordListButton:t0,text:a0,textOcrButton:n0,title:r0,approvalStatusColumn:i0,array:o0,autoNumber:l0,custom:s0,decimal:c0,department:E0,employee:B0,file:v0,image:F0,location:C0,operation:d0,order:p0,people:m0,long:A0,timescope:h0,timestamp:D0,varchar:f0,gridLayoutWrap:b0,gridTable:g0,subTable:$0,address:S0,amount:y0,calc:w0,checkBox:I0,electronicSignature:M0,input:L0,number:x0,organizationSelection:R0,radio:_0,richText:k0,score:U0,searchNumberRange:V0,select:N0,selectMultiple:T0,selectRelation:P0,textarea:G0,tree:W0,vueFormItem:z0,vuePage:q0,WPS:H0,actionBar:j0,advancedContainer:K0,cardGroup:X0,col:J0,dataView:Q0,grid:O0,gridLayoutContainer:Z0,gridRow:Y0,listView:ui,page:ei,position:ti,positioningContainer:ai,row:ni,subtableColumn:ri,subtableRow:ii,tab:oi,tabPane:li,toolbox:si,batchSubmissionListButton:ci,exportRecordListButton:Ei,listViewSelect:Bi,referenceList:vi,optionOne:Fi,optionTwo:Ci,optionThird:di},mi="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ai="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hi="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Di="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",fi="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bi="{caption}\u5FC5\u9808",gi="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$i="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Si="\u884C\u30D8\u30C3\u30C0\u30FC\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",yi="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wi="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ii="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Mi="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Li="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",xi="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ri="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_i="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",ki="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ui="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Vi="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ni="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ti="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Pi="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Gi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",zi="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",qi="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Hi="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u6570\u304C\u5236\u9650\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",ji="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ki="\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",Xi="\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",Ji="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qi="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Oi="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Zi="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Yi="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",uo="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",eo="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",to="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ao="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",no="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ro="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",io="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",oo="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",lo="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",so="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",co="please select control",Eo="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Bo="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",vo="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fo="\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",Co="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",po="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",mo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Ao="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ho="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Do="\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",fo="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",bo="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",go="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",$o="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",So="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",yo="\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",wo="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Io="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Mo="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lo="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",xo="\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",Ro="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",_o="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ko="\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Uo="\u6279\u91CF\u5220\u9664",Vo="\u6279\u91CF\u6253\u5370",No="\u6279\u91CF\u6253\u5370\u8BB0\u5F55",To="\u6309\u94AE",Po="\u521B\u5EFA\u5355\u636E",Go="\u4EEA\u8868\u76D8",Wo="\u5206\u5272\u7EBF",zo="\u5BFC\u51FA",qo="\u8868\u5355\u64CD\u4F5C",Ho="\u5BFC\u5165",jo="\u53D1\u7968\u8BC6\u522B",Ko="\u94FE\u63A5",Xo="\u5217\u8868\u9009\u62E9",Jo="\u5217\u8868\u89C6\u56FE",Qo="\u64CD\u4F5C\u6309\u94AE",Oo="\u5206\u9875",Zo="\u6279\u91CF\u63D0\u4EA4\u8BB0\u5F55",Yo="\u8BF4\u660E\u6587\u5B57",ul="\u6587\u5B57\u8BC6\u522B",el="\u6807\u9898\u7EC4\u4EF6",tl="\u5F53\u524D\u5BA1\u6279\u72B6\u6001",al="\u6570\u7EC4",nl="\u81EA\u52A8\u7F16\u53F7",rl="\u81EA\u5B9A\u4E49",il="\u6570\u503C",ol="\u90E8\u95E8",ll="\u4EBA\u5458",sl="\u9644\u4EF6",cl="\u56FE\u7247",El="\u5730\u5740",Bl="\u64CD\u4F5C",vl="\u5E8F\u53F7",Fl="\u4EBA\u5458",Cl="\u957F\u6587\u672C",dl="\u65E5\u671F\u533A\u95F4",pl="\u65E5\u671F",ml="\u77ED\u6587\u672C",Al="\u6362\u884C\u5BB9\u5668Wrap",hl="\u8868\u683C",Dl="\u660E\u7EC6\u5B50\u8868",fl="\u5730\u5740",bl="\u91D1\u989D",gl="\u8BA1\u7B97\u516C\u5F0F",$l="\u591A\u9009",Sl="\u7535\u5B50\u7B7E\u7AE0",yl="\u5355\u884C\u6587\u672C",wl="\u6570\u5B57",Il="\u4E1A\u52A1\u7EC4\u7EC7",Ml="\u5355\u9009",Ll="\u5BCC\u6587\u672C",xl="\u8BC4\u5206",Rl="\u6570\u5B57\u533A\u95F4",_l="\u4E0B\u62C9\u5355\u9009",kl="\u4E0B\u62C9\u591A\u9009",Ul="\u5173\u8054\u5355\u9009",Vl="\u591A\u884C\u6587\u672C",Nl="\u6811",Tl="Vue\u5BB9\u5668",Pl="Vue\u9875\u9762",Gl="\u5728\u7EBF\u6587\u6863",Wl="\u6309\u94AE\u64CD\u4F5C\u680F",zl="\u9AD8\u7EA7\u5BB9\u5668",ql="\u5206\u7EC4",Hl="\u6805\u683C\u5217",jl="\u6570\u636E\u5BB9\u5668",Kl="\u753B\u5E03",Xl="\u6362\u884C\u5BB9\u5668",Jl="\u6805\u683C\u7B49\u5206\u884C",Ql="\u5217\u8868\u5BB9\u5668",Ol="\u81EA\u7531\u9875\u9762",Zl="\u5B9A\u4F4D\u5B50\u5BB9\u5668",Yl="\u5B9A\u4F4D\u5BB9\u5668",u5="\u6805\u683C\u5E03\u5C40",e5="\u660E\u7EC6\u5B50\u8868\u5355\u5143\u683C",t5="\u660E\u7EC6\u5B50\u8868\u884C",a5="\u6807\u7B7E\u9875",n5="\u6807\u7B7E\u5355\u5143",r5="\u5DE5\u5177\u680F",i5="\u6279\u91CF\u63D0\u4EA4",o5="\u5BFC\u51FA\u8BB0\u5F55",l5="\u5217\u8868\u89C6\u56FE",s5="\u5F15\u7528\u5217\u8868",c5="\u9009\u9879\u4E00",E5="\u9009\u9879\u4E8C",B5="\u9009\u9879\u4E09",v5={isNotNumber:mi,isNotString:Ai,isNotObject:hi,isNotArray:Di,isNotBoolean:fi,runtimeRequired:bi,pleaseEnterCaption:gi,pleaseEnterCaptionTip:$i,pleaseEnterRowCaption:Si,pleaseEnterPlaceholder:yi,pleaseEnterFieldCode:wi,pleaseEnterForm:Ii,pleaseEnterList:Mi,pleaseEnterProcess:Li,pleaseEnterLabel:xi,pleaseEnterValue:Ri,bizKeyNotBindFiled:_i,pleaseSelectOneField:ki,pleaseEnterNumberRange:Ui,pleaseEnterAValueGreaterThanMin:Vi,pleaseEnterAValueLessThanMax:Ni,numberRangeSetError:Ti,stringRangeError:Pi,attachmentMaxSize:Gi,pleaseEnterTotalScoreSetting:Wi,theTotalScoreMustNotBeLessThan1:zi,scoreDefaultValueRange:qi,attachmentLimitError:Hi,PleaseReselectTheOptionalQuantity:ji,TheMaximumLengthIsGreaterThanTheMinimumLength:Ki,TheMinimumLengthIsGreaterThanTheMaximumLength:Xi,PleaseSelectTheCorrectOptionSettings:Ji,optionIdIsRepeat:Qi,optionIsRequired:Oi,pleaseEnterDataCode:Zi,pleaseEnterValueFieldCode:Yi,pleaseEnterSvcCode:uo,pleaseBindAtLeastOneDisplayValue:eo,pleaseSelectProvince:to,pleaseSelectCity:ao,pleaseSelectDistrict:no,limitRowsCannotBeLessThan0:ro,TheNumberOfRowsCannotBeLessThanMinRows:io,pleaseEnterColumnWidth:oo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:lo,pleaseCompleteAllRulesAndConditions:so,pleaseSelectControl:co,pleaseSelectDashboard:Eo,theViewNameCannotBeEmpty:Bo,pleaseSelectOcrType:vo,pleaseSelectAtLeastOneFieldToFillIn:Fo,pleaseChooseAtLeastOne:Co,pleaseEnterButtonContent:po,pleaseEnterDataCodeInDataSetting:mo,pleaseEnterValueFieldCodeInDataSetting:Ao,pleaseEnterSvcCodeInDataSetting:ho,pleaseBindAtLeastOneDisplayValueInDataSetting:Do,rootNodeIsRequiredInDataSetting:fo,pleaseEnterMaxHeight:bo,pleaseEnter:go,pleaseEnterWatermark:$o,pleaseEnterFileName:So,pleaseUploadAtLeastOnePrintTemplate:yo,pleaseAssignBusiness:wo,pleaseAssignExternal:Io,pleaseEnterAliasCode:Mo,pleaseSelectDataCode:Lo,pleaseSelectSvcCode:xo,pleaseSelectJoinFieldCode:Ro,pleaseSelectMainFieldCode:_o,pleaseSelectSortFieldCode:ko,batchDeleteButton:Uo,batchPrintListButton:Vo,batchPrintRecordList:No,button:To,createFormListButton:Po,dashboard:Go,divider:Wo,exportListButton:zo,formSelectButton:qo,importRecordListButton:Ho,invoiceCheckButton:jo,link:Ko,listSelectButton:Xo,ListViewSelect:Jo,operationButton:Qo,pagination:Oo,submissionRecordListButton:Zo,text:Yo,textOcrButton:ul,title:el,approvalStatusColumn:tl,array:al,autoNumber:nl,custom:rl,decimal:il,department:ol,employee:ll,file:sl,image:cl,location:El,operation:Bl,order:vl,people:Fl,long:Cl,timescope:dl,timestamp:pl,varchar:ml,gridLayoutWrap:Al,gridTable:hl,subTable:Dl,address:fl,amount:bl,calc:gl,checkBox:$l,electronicSignature:Sl,input:yl,number:wl,organizationSelection:Il,radio:Ml,richText:Ll,score:xl,searchNumberRange:Rl,select:_l,selectMultiple:kl,selectRelation:Ul,textarea:Vl,tree:Nl,vueFormItem:Tl,vuePage:Pl,WPS:Gl,actionBar:Wl,advancedContainer:zl,cardGroup:ql,col:Hl,dataView:jl,grid:Kl,gridLayoutContainer:Xl,gridRow:Jl,listView:Ql,page:Ol,position:Zl,positioningContainer:Yl,row:u5,subtableColumn:e5,subtableRow:t5,tab:a5,tabPane:n5,toolbox:r5,batchSubmissionListButton:i5,exportRecordListButton:o5,listViewSelect:l5,referenceList:s5,optionOne:c5,optionTwo:E5,optionThird:B5},g={zhCN:fn,enUS:pi,jaJP:v5},M;(function(u){u.Number="Number",u.Operator="Operator",u.VariableInMainTable="VariableInMainTable",u.VariableInCurrentSubTable="VariableInCurrentSubTable",u.VariableInOtherSubTable="VariableInOtherSubTable",u.UndefinedVariable="UndefinedVariable"})(M||(M={}));var L;(function(u){u.SUM="SUM",u.AVG="AVG",u.MAX="MAX",u.MIN="MIN"})(L||(L={}));var $,F5=($=window.localStorage.getItem("locale"))!==null&&$!==void 0?$:"zh-CN",C5=function(){},x;(function(u){u.BASE="base",u.FORM="form",u.LAYOUT="layout",u.WRAP="wrap",u.COLUMN="column",u.LIST="list",u.SEARCH="search"})(x||(x={}));var R;(function(u){u[u.FORM=0]="FORM",u[u.LIST=1]="LIST",u[u.REPORT=2]="REPORT",u[u.DASHBOARD=3]="DASHBOARD",u[u.VUE=4]="VUE",u[u.FREE_PAGE=5]="FREE_PAGE"})(R||(R={}));var _;(function(u){u.TITLE="title",u.LINK="link",u.BUTTON="button",u.DIVIDER="divider",u.TEXT="text",u.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",u.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",u.BATCH_DELETE_LIST_BUTTON="list-page-btn-batch-delete",u.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",u.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",u.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",u.EXPORT_LIST_BUTTON="list-page-btn-export-list",u.LIST_SELECT_BUTTON="list-select-button",u.ORGANIZATION_SELECTION="organization-selection",u.FORM_SELECT_BUTTON="form-select-button",u.LIST_VIEW_SELECT="list-view-select",u.TEXT_OCR_BUTTON="text-ocr-button",u.INVOICE_CHECK_BUTTON="invoice-check-button",u.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",u.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",u.VARCHAR_COLUMN="varchar-column",u.TEXT_COLUMN="text-column",u.DECIMAL_COLUMN="decimal-column",u.TIMESCOPE_COLUMN="timescope-column",u.TIMESTAMP_COLUMN="timestamp-column",u.ARRAY_COLUMN="array-column",u.DEPARTMENT_COLUMN="department-column",u.AUTO_NUMBER_COLUMN="auto-number-column",u.FILE_COLUMN="file-column",u.IMAGE_COLUMN="image-column",u.PEOPLE_COLUMN="people-column",u.LOCATION_COLUMN="location-column",u.CUSTOM_COLUMN="custom-column",u.ORDER_COLUMN="order-column",u.OPERATION_COLUMN="operation-column",u.OPERATION_BUTTON="operation-button",u.EMPLOYEE_COLUMN="employee-column",u.Approval_Status_Column="approval-status-column",u.ADDRESS="address",u.AMOUNT="amount",u.ATTACHMENT="attachment",u.AUTO_NUMBER="auto-number",u.CALC="calc",u.CHECKBOX="checkbox",u.DATE_PICKER="date-picker",u.DATE_RANGE="date-range",u.DEPARTMENT="department",u.EMPLOYEE="employee",u.IMAGE="image",u.INPUT="input",u.NUMBER="number",u.RADIO="radio",u.RICH_TEXT="rich-text",u.SCORE="score",u.SEARCH_DATE_RANGE="search-date-range",u.SEARCH_NUMBER_RANGE="search-number-range",u.SEARCH_INPUT="search-input",u.SELECT="select",u.SELECT_MULTIPLE="select-multiple",u.SELECT_RELATION="select-relation",u.VUE_FORM_ITEM="vue-form-item",u.TEXTAREA="textarea",u.EMAIL="email",u.FOOTER="footer",u.HEADER="header",u.ID_CARD="id-card",u.MOBILE="mobile",u.PHONE="phone",u.RADIO_IMAGE="radio-image",u.ELECTRONIC_SIGNATURE="electronic-signature",u.WPS="wps",u.CARD_GROUP="card-group",u.COL="col",u.GRID="grid",u.GRID_ROW="grid-row",u.GRID_TABLE_COLUMN="grid-table-column",u.GRID_LAYOUT_CONTAINER="grid-layout-container",u.ROW="row",u.TWO_COLUMNS="two-columns",u.SUBTABLE_COLUMN="subtable-column",u.SUBTABLE_ROW="subtable-row",u.TAB="tab",u.TAB_PANE="tab-pane",u.TOOLBOX="toolbox",u.DATA_VIEW="data-view",u.LIST_VIEW="list-view",u.ACTION_BAR="action-bar",u.SUBTABLE="subtable",u.GRID_TABLE="grid-table",u.SIMPLE_SEARCH="simple-search",u.PAGINATION="pagination",u.CHECKBOX_IMAGE="checkbox-image",u.DASHBOARD="dashboard",u.TREE="tree",u.EMPLOYEE2="employee2",u.DEPARTMENT2="department2",u.GRID_LAYOUT_WRAP="grid-layout-wrap",u.VUE_PAGE="vue-page",u.REFERENCE_LIST="reference-list"})(_||(_={}));var k;(function(u){u.SAVE="save",u.DRAFT="draft",u.UNSUBMIT="unsubmit",u.AUDIT="audit",u.UNAUDIT="unaudit",u.CANCEL="cancel",u.FORM_SUBMIT="form_submit"})(k||(k={}));var U;(function(u){u.VARCHAR="varchar",u.TEXT="text",u.ARRAY="array",u.ADDRESS="location",u.DECIMAL="decimal",u.DECIMAL_RANGE="decimal_range",u.TIMESTAMP="timestamp",u.EMPLOYEES="people",u.DEPARTMENTS="department",u.MONEY="money",u.TIMESCOPE="timescope",u.FILE="file",u.IMAGE="image",u.AUTO_NUMBER="auto_number",u.CALC="calc",u.LIST="list",u.JSON="json",u.ANY="ANY"})(U||(U={}));var V;(function(u){u.YEAR="year",u.MONTH="month",u.DATE="date",u.DATEHOUR="datehour",u.DATEMIN="datemin",u.DATETIME="datetime"})(V||(V={}));function d5(u){if(u===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return u}function p5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function h(u,e,t){return N()?h=Reflect.construct:h=function(n,c,l){var B=[null];B.push.apply(B,c);var d=Function.bind.apply(n,B),D=new d;return l&&m(D,l.prototype),D},h.apply(null,arguments)}function p(u){return p=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},p(u)}function m5(u,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");u.prototype=Object.create(e&&e.prototype,{constructor:{value:u,writable:!0,configurable:!0}}),e&&m(u,e)}function A5(u){return Function.toString.call(u).indexOf("[native code]")!==-1}function h5(u,e){return e&&(D5(e)==="object"||typeof e=="function")?e:d5(u)}function m(u,e){return m=Object.setPrototypeOf||function(a,n){return a.__proto__=n,a},m(u,e)}function D5(u){return u&&typeof Symbol!="undefined"&&u.constructor===Symbol?"symbol":typeof u}function S(u){var e=typeof Map=="function"?new Map:void 0;return S=function(a){if(a===null||!A5(a))return a;if(typeof a!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(a))return e.get(a);e.set(a,n)}function n(){return h(a,arguments,p(this).constructor)}return n.prototype=Object.create(a.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),m(n,a)},S(u)}function N(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(u){return!1}}function f5(u){var e=N();return function(){var a=p(u),n;if(e){var c=p(this).constructor;n=Reflect.construct(a,arguments,c)}else n=a.apply(this,arguments);return h5(this,n)}}function b5(u){return u+" \u{1F41B}\u{1F41B}\u{1F41B}"}var g5=function(u){m5(t,u);var e=f5(t);function t(a){p5(this,t);var n;return n=e.call(this,a),n.name="\u{1F4A5} Driven Error",n.message=a?b5(a):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",n}return t}(S(Error));function $5(u){throw new g5(u)}const o=(u,e,t)=>{if(!u)return console.error("getLocaleText\u7684key\u4E0D\u80FD\u4E3A\u7A7A"),"";const a=u.split(".");let n;const c=(window.baitedaWorkers||{}).languageMessages||{};a.forEach((B,d)=>{d===0?n=c[B]:n&&(n=n[B])});let l="";return n&&(l=n),e&&Object.keys(e).forEach(B=>{const d=e[B];l=l.replace(new RegExp(`\\{\\s*${B}\\s*\\}`,"g"),d)}),l||(t?l=t:l=u),l};function S5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function T(u,e){for(var t=0;t<e.length;t++){var a=e[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(u,a.key,a)}}function y5(u,e,t){return e&&T(u.prototype,e),t&&T(u,t),u}function w5(u,e,t){return e in u?Object.defineProperty(u,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):u[e]=t,u}var P=function(){function u(){S5(this,u)}return y5(u,null,[{key:"getMessage",value:function(t){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n;return o("CMD."+t,a,g==null||(n=g[F5.split("-").join("")])===null||n===void 0?void 0:n[t])}},{key:"resetI18n",value:function(){}},{key:"setLocale",value:function(t,a){}}]),u}();w5(P,"$i18n",P.resetI18n());var I5=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},M5={exports:{}};(function(u){(function(e){var t=function(r,i,F){if(!D(i)||J5(i)||Q5(i)||O5(i)||d(i))return i;var C,A=0,Q=0;if(X5(i))for(C=[],Q=i.length;A<Q;A++)C.push(t(r,i[A],F));else{C={};for(var I in i)Object.prototype.hasOwnProperty.call(i,I)&&(C[r(I,F)]=t(r,i[I],F))}return C},a=function(r,i){i=i||{};var F=i.separator||"_",C=i.split||/(?=[A-Z])/;return r.split(C).join(F)},n=function(r){return Z5(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(i,F){return F?F.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},c=function(r){var i=n(r);return i.substr(0,1).toUpperCase()+i.substr(1)},l=function(r,i){return a(r,i).toLowerCase()},B=Object.prototype.toString,d=function(r){return typeof r=="function"},D=function(r){return r===Object(r)},X5=function(r){return B.call(r)=="[object Array]"},J5=function(r){return B.call(r)=="[object Date]"},Q5=function(r){return B.call(r)=="[object RegExp]"},O5=function(r){return B.call(r)=="[object Boolean]"},Z5=function(r){return r=r-0,r===r},w=function(r,i){var F=i&&"process"in i?i.process:i;return typeof F!="function"?r:function(C,A){return F(C,r,A)}},J={camelize:n,decamelize:l,pascalize:c,depascalize:l,camelizeKeys:function(r,i){return t(w(n,i),r)},decamelizeKeys:function(r,i){return t(w(l,i),r,i)},pascalizeKeys:function(r,i){return t(w(c,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};u.exports?u.exports=J:e.humps=J})(I5)})(M5);var G={};Object.defineProperty(G,"__esModule",{value:!0});function y(u){if(typeof u!="object"||u===null)return u;if(Array.isArray(u))return u.map(e=>typeof e!="object"||e===null?e:y(e));{const e={};for(const t in u){const a=u[t];e[t]=typeof a!="object"||a===null?a:y(a)}return e}}G.default=y;function W(u){return Object.prototype.toString.call(u)==="[object Object]"}function L5(u,e){if(!(u instanceof e))throw new TypeError("Cannot call a class as a function")}function z(u,e){for(var t=0;t<e.length;t++){var a=e[t];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(u,a.key,a)}}function x5(u,e,t){return e&&z(u.prototype,e),t&&z(u,t),u}function R5(u,e,t){return e in u?Object.defineProperty(u,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):u[e]=t,u}var _5=[{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"}],k5=function(){function u(){L5(this,u)}return x5(u,null,[{key:"getEventsFromKeys",value:function(t){var a=typeof t=="string"?[t]:t;return u.events.filter(function(n){return a.includes(n.key)})}},{key:"getEventsFromControl",value:function(t){var a=[],n=t.eventKeys;a=a.concat(u.events.filter(function(l){return n.includes(l.key)}));var c=t.customEvents.map(function(l){var B=l.key;return l.namespace!==void 0&&l.namespace!==null&&l.namespace!==""&&(B=l.namespace+":"+l.key),{key:B,code:l.key,name:l.name}});return a=a.concat(c),a}}]),u}();R5(k5,"events",_5);class q{constructor(e){var t,a,n;this.type=e.type,this.label=e.label,this.key=e.key,this.component=e.component,this.effect=(t=e.effect)!=null?t:{},this.scopeEffect=(a=e.scopeEffect)!=null?a:C5,this.defaultValue=e.defaultValue,this.validator=e.validator,this.props=(n=e.props)!=null?n:new E,this.effectKeys=Object.keys(this.effect)}filterEffects(e){return e===""?Object.values(this.effect):this.effectKeys.filter(t=>new RegExp(`^${t}(\\.\\w+)*$`).test(e)).map(t=>this.effect[t])}callEffectFn(e,t){try{const a=e.apply(null,t);W(a)&&Object.assign(this.props,a)}catch(a){$5(`effect error
2
+ ${a}`)}}callEffect(e,...t){this.filterEffects(e).forEach(a=>this.callEffectFn(a,t))}callScopeEffect(...e){this.callEffectFn(this.scopeEffect,e)}}class H{constructor(e){var t,a;this.type="group",this.title=(t=e.title)!=null?t:"",this.required=(a=e.required)!=null?a:!1,this.items=e.items,this.tips=e.tips,this.visible=e.items.some(n=>{var c;return(c=n.props)==null?void 0:c.visible})}}function j(u){return"type"in u&&u.type==="tab"}class K{constructor(e){this.type="tab",this.title=e.title,this.items=e.items}}class U5 extends E{constructor(e){super(e),W(e)&&Object.entries(e).forEach(([t,a])=>{this[t]=a})}}class V5 extends E{constructor(e){var t,a,n,c;super(e),this.maxLength=(t=e==null?void 0:e.maxLength)!=null?t:"",this.minLength=(a=e==null?void 0:e.minLength)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:"",this.i18n=(c=e==null?void 0:e.i18n)!=null?c:!1}}class N5 extends E{constructor(e){var t,a,n;super(e),this.max=(t=e==null?void 0:e.max)!=null?t:"",this.min=(a=e==null?void 0:e.min)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:""}}class T5 extends E{constructor(e){var t,a,n;super(e),this.showType=(t=e==null?void 0:e.showType)!=null?t:"switch",this.tips=(a=e==null?void 0:e.tips)!=null?a:"",this.disabled=(n=e==null?void 0:e.disabled)!=null?n:!1}}class P5 extends E{constructor(e){var t;super(e),this.options=(t=e==null?void 0:e.options)!=null?t:[]}}class G5 extends E{constructor(e){var t,a;super(e),this.placeholder=(t=e==null?void 0:e.placeholder)!=null?t:"",this.options=(a=e==null?void 0:e.options)!=null?a:[]}}class W5 extends E{constructor(e){var t,a;super(e),this.options=(t=e==null?void 0:e.options)!=null?t:[],this.showType=(a=e==null?void 0:e.showType)!=null?a:"outline"}}class z5 extends E{constructor(e){var t,a,n,c,l,B;super(e),this.maxLength=(t=e==null?void 0:e.maxLength)!=null?t:"",this.minLength=(a=e==null?void 0:e.minLength)!=null?a:"",this.placeholder=(n=e==null?void 0:e.placeholder)!=null?n:"",this.maxRows=(c=e==null?void 0:e.maxRows)!=null?c:"",this.minRows=(l=e==null?void 0:e.minRows)!=null?l:"",this.i18n=(B=e==null?void 0:e.i18n)!=null?B:!1}}function q5(u,e){switch(u){case"input":return new V5(e);case"textarea":return new z5(e);case"input-number":return new N5(e);case"switch":return new T5(e);case"radio":return new W5(e);case"checkbox":return new P5(e);case"select":return new G5(e);default:return new U5(e)}}function H5(u){return function(e){const t=u.get(e);if(!!t)return new q(b(f({},t),{props:q5(t.component,"props"in t?t.props:void 0)}))}}function j5(u){const e=u.fields.reduce((n,c)=>(n.set(c.key,c),n),new Map);function t(n){return new H(b(f({},n),{items:n.items.map(H5(e)).filter(Boolean)}))}function a(n){return n.map(t)}return u.groups.map(n=>j(n)?new K(b(f({},n),{items:a(n.items)})):t(n))}function X(){return[{label:o("CMD.hide",null,"\u9690\u85CF"),key:"isHide",type:"boolean",component:"switch"},{key:"superSetting",component:"super-setting"},{key:"style.width",component:"styleComponent",props:{configKey:"style.widthConfig",options:["px","%","fill","hug"]},scopeEffect(u,e){const{oldParent:t,newParent:a,instance:n}=e;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(u.setInstance(n,"style.width",""),u.setInstance(n,"style.widthConfig","fill")),a)return{visible:a.type==="advanced-container"}}},{key:"style.height",component:"styleComponent",props:{configKey:"style.heightConfig",options:["px","%","fill","hug"]},scopeEffect(u,e){const{oldParent:t,newParent:a,instance:n}=e;if((t==null?void 0:t.type)==="advanced-container"&&a.type==="positioning-container"&&(u.setInstance(n,"style.height",""),u.setInstance(n,"style.heightConfig","fill")),e.newParent)return{visible:e.newParent.type==="advanced-container"}}}]}function K5(u){return[...X(),{type:"DataBind",key:"dataBind",component:"data-bind",defaultValue:u==null?void 0:u.dataBind},{key:"caption",type:"string",component:"input",props:{maxLength:80,i18n:!0},defaultValue:u==null?void 0:u.caption,validator(e){if(!e)return o("CMD.titleRequired",null,"\u6807\u9898\u5FC5\u586B")}},{label:o("CMD.hideCaption",null,"\u9690\u85CF\u6807\u9898"),key:"isHideCaption",type:"boolean",component:"switch",defaultValue:u==null?void 0:u.isHideCaption,props:{showType:"checkbox"},scopeEffect(e,t){var a,n;if(((a=t.current)==null?void 0:a.type)!==((n=t.from)==null?void 0:n.type))return t.current.type==="subtable"&&e.setInstance(t.control,"isHideCaption",!0),{visible:t.current.type!=="subtable"}}},{key:"labelPosition",type:"string",component:"radio",defaultValue:u==null?void 0:u.labelPosition,props:{showType:"solid",options:[{label:o("CMD.top",null,"\u4E0A\u4E0B\u5E03\u5C40"),value:"top"},{label:o("CMD.left",null,"\u5DE6\u53F3\u5E03\u5C40"),value:"left"}]}},{key:"defaultState",type:"string",component:"radio",defaultValue:u==null?void 0:u.defaultState,props:{showType:"solid",options:[{label:o("CMD.default",null,"\u666E\u901A"),value:"default"},{label:o("CMD.readonly",null,"\u53EA\u8BFB"),value:"readonly"}]}},{label:o("CMD.required",null,"\u5FC5\u586B"),key:"required",type:"boolean",component:"switch",defaultValue:u==null?void 0:u.required},{label:o("CMD.textTip",null,"\u63D0\u793A\u6587\u5B57"),key:"placeholder",type:"string",component:"input",defaultValue:u==null?void 0:u.placeholder,props:{maxLength:80,i18n:!0}}]}s.Group=H,s.Setting=q,s.Tab=K,s.createBaseFields=X,s.createFormBaseFields=K5,s.defineInstance=v,s.initSettings=j5,s.isTabSchema=j,Object.defineProperty(s,"__esModule",{value:!0})});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-settings",
3
- "version": "2.23.0-beta.17",
3
+ "version": "2.23.0-beta.18",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -27,9 +27,9 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@byteluck-fe/locale-message": "^1.0.8",
30
- "@byteluck-fe/model-driven-core": "2.23.0-beta.17",
31
- "@byteluck-fe/model-driven-shared": "2.23.0-beta.17",
30
+ "@byteluck-fe/model-driven-core": "2.23.0-beta.18",
31
+ "@byteluck-fe/model-driven-shared": "2.23.0-beta.18",
32
32
  "tslib": "^2.1.0"
33
33
  },
34
- "gitHead": "f19fb0ff59cc22393a07e54ea8de708e81040f35"
34
+ "gitHead": "c96a34b95e765e413057ee7170bcbf4cf8122d68"
35
35
  }