@byteluck-fe/model-driven-core 6.1.0-1-beta.2 → 6.1.0-2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -69
- package/dist/esm/common/BaseControl/designer.js +12 -13
- package/dist/esm/common/BaseControl/property.js +15 -15
- package/dist/esm/common/BaseControl/runtime.js +1 -2
- package/dist/esm/common/ColumnControl/property.js +28 -28
- package/dist/esm/common/FormControl/property.js +44 -44
- package/dist/esm/framework/index.js +381 -380
- package/dist/index.umd.js +1 -1
- package/dist/types/api-doc-index.d.ts +4 -4
- package/dist/types/common/BaseControl/designer.d.ts +71 -71
- package/dist/types/common/BaseControl/index.d.ts +13 -13
- package/dist/types/common/BaseControl/property.d.ts +44 -44
- package/dist/types/common/BaseControl/runtime.d.ts +23 -23
- package/dist/types/common/BaseControl/types.d.ts +35 -35
- package/dist/types/common/ColumnControl/designer.d.ts +20 -20
- package/dist/types/common/ColumnControl/index.d.ts +12 -12
- package/dist/types/common/ColumnControl/property.d.ts +74 -74
- package/dist/types/common/ColumnControl/runtime.d.ts +11 -11
- package/dist/types/common/ControlArray.d.ts +9 -9
- package/dist/types/common/FormControl/designer.d.ts +13 -13
- package/dist/types/common/FormControl/index.d.ts +12 -12
- package/dist/types/common/FormControl/property.d.ts +100 -100
- package/dist/types/common/FormControl/runtime.d.ts +11 -11
- package/dist/types/common/LayoutControl/designer.d.ts +21 -21
- package/dist/types/common/LayoutControl/index.d.ts +12 -12
- package/dist/types/common/LayoutControl/property.d.ts +6 -6
- package/dist/types/common/LayoutControl/runtime.d.ts +11 -11
- package/dist/types/common/ListControl/designer.d.ts +16 -16
- package/dist/types/common/ListControl/index.d.ts +12 -12
- package/dist/types/common/ListControl/property.d.ts +18 -18
- package/dist/types/common/ListControl/runtime.d.ts +12 -12
- package/dist/types/common/SearchViewControl/designer.d.ts +11 -11
- package/dist/types/common/SearchViewControl/index.d.ts +12 -12
- package/dist/types/common/SearchViewControl/property.d.ts +8 -8
- package/dist/types/common/SearchViewControl/runtime.d.ts +11 -11
- package/dist/types/common/Validator.d.ts +15 -15
- package/dist/types/common/WrapControl/designer.d.ts +11 -11
- package/dist/types/common/WrapControl/index.d.ts +12 -12
- package/dist/types/common/WrapControl/property.d.ts +6 -6
- package/dist/types/common/WrapControl/runtime.d.ts +11 -11
- package/dist/types/common/controlHooksEmitter.d.ts +4 -4
- package/dist/types/common/index.d.ts +12 -12
- package/dist/types/common/initLinkOperationRules.d.ts +6 -6
- package/dist/types/common/initOptionAndDataSourceRules.d.ts +10 -10
- package/dist/types/framework/RegisterControls.d.ts +37 -37
- package/dist/types/framework/index.d.ts +946 -945
- package/dist/types/framework/isDataBind.d.ts +2 -2
- package/dist/types/index.d.ts +4 -4
- package/dist/types/type.d.ts +91 -91
- package/package.json +3 -3
|
@@ -72,31 +72,31 @@ function _is_native_reflect_construct() {
|
|
|
72
72
|
}
|
|
73
73
|
import { FieldTypes, genNonDuplicateId } from '@byteluck-fe/model-driven-shared';
|
|
74
74
|
export * from './RegisterControls';
|
|
75
|
-
/**
|
|
76
|
-
* 数据绑定配置
|
|
77
|
-
* @public
|
|
75
|
+
/**
|
|
76
|
+
* 数据绑定配置
|
|
77
|
+
* @public
|
|
78
78
|
*/ export var DataBind = function DataBind(props) {
|
|
79
79
|
"use strict";
|
|
80
80
|
_class_call_check(this, DataBind);
|
|
81
|
-
/**
|
|
82
|
-
* 数据模型编码
|
|
83
|
-
* @defaultValue ''
|
|
84
|
-
* @public
|
|
81
|
+
/**
|
|
82
|
+
* 数据模型编码
|
|
83
|
+
* @defaultValue ''
|
|
84
|
+
* @public
|
|
85
85
|
*/ _define_property(this, "dataCode", void 0);
|
|
86
|
-
/**
|
|
87
|
-
* 字段编码
|
|
88
|
-
* @defaultValue ''
|
|
89
|
-
* @public
|
|
86
|
+
/**
|
|
87
|
+
* 字段编码
|
|
88
|
+
* @defaultValue ''
|
|
89
|
+
* @public
|
|
90
90
|
*/ _define_property(this, "fieldCode", void 0);
|
|
91
|
-
/**
|
|
92
|
-
* 字段类型
|
|
93
|
-
* @defaultValue ''
|
|
94
|
-
* @public
|
|
91
|
+
/**
|
|
92
|
+
* 字段类型
|
|
93
|
+
* @defaultValue ''
|
|
94
|
+
* @public
|
|
95
95
|
*/ _define_property(this, "fieldType", void 0);
|
|
96
|
-
/**
|
|
97
|
-
* 表别名
|
|
98
|
-
* @defaultValue undefined
|
|
99
|
-
* @public
|
|
96
|
+
/**
|
|
97
|
+
* 表别名
|
|
98
|
+
* @defaultValue undefined
|
|
99
|
+
* @public
|
|
100
100
|
*/ _define_property(this, "aliasCode", void 0);
|
|
101
101
|
var _props_dataCode;
|
|
102
102
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -208,15 +208,15 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
208
208
|
}
|
|
209
209
|
return FormSelectBind;
|
|
210
210
|
}(FormBind);
|
|
211
|
-
/**
|
|
212
|
-
* 列表绑定字段项
|
|
213
|
-
* @public
|
|
211
|
+
/**
|
|
212
|
+
* 列表绑定字段项
|
|
213
|
+
* @public
|
|
214
214
|
*/ var ListBindHeaderItem = function ListBindHeaderItem(props) {
|
|
215
215
|
"use strict";
|
|
216
216
|
_class_call_check(this, ListBindHeaderItem);
|
|
217
|
-
/**
|
|
218
|
-
* 字段
|
|
219
|
-
* @defaultValue ''
|
|
217
|
+
/**
|
|
218
|
+
* 字段
|
|
219
|
+
* @defaultValue ''
|
|
220
220
|
*/ _define_property(this, "fieldCode", void 0);
|
|
221
221
|
_define_property(this, "dataCode", void 0);
|
|
222
222
|
var _props_fieldCode;
|
|
@@ -224,23 +224,23 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
224
224
|
var _props_dataCode;
|
|
225
225
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
226
226
|
};
|
|
227
|
-
/**
|
|
228
|
-
* 列表绑定配置
|
|
227
|
+
/**
|
|
228
|
+
* 列表绑定配置
|
|
229
229
|
*/ export var ListBind = function ListBind(props) {
|
|
230
230
|
"use strict";
|
|
231
231
|
_class_call_check(this, ListBind);
|
|
232
232
|
var _props_headers;
|
|
233
|
-
/**
|
|
234
|
-
* 应用ID
|
|
235
|
-
* @public
|
|
233
|
+
/**
|
|
234
|
+
* 应用ID
|
|
235
|
+
* @public
|
|
236
236
|
*/ _define_property(this, "appId", void 0);
|
|
237
|
-
/**
|
|
238
|
-
* 表单ID
|
|
239
|
-
* @public
|
|
237
|
+
/**
|
|
238
|
+
* 表单ID
|
|
239
|
+
* @public
|
|
240
240
|
*/ _define_property(this, "formKey", void 0);
|
|
241
|
-
/**
|
|
242
|
-
* 显示字段
|
|
243
|
-
* @public
|
|
241
|
+
/**
|
|
242
|
+
* 显示字段
|
|
243
|
+
* @public
|
|
244
244
|
*/ _define_property(this, "headers", void 0);
|
|
245
245
|
var _props_appId;
|
|
246
246
|
this.appId = (_props_appId = props === null || props === void 0 ? void 0 : props.appId) !== null && _props_appId !== void 0 ? _props_appId : '';
|
|
@@ -326,36 +326,36 @@ export var RightVariable = function RightVariable(props) {
|
|
|
326
326
|
var _props_displayBos;
|
|
327
327
|
this.displayBos = (_props_displayBos = props === null || props === void 0 ? void 0 : props.displayBos) !== null && _props_displayBos !== void 0 ? _props_displayBos : [];
|
|
328
328
|
};
|
|
329
|
-
/**
|
|
330
|
-
* 连接符条件
|
|
331
|
-
* @public
|
|
329
|
+
/**
|
|
330
|
+
* 连接符条件
|
|
331
|
+
* @public
|
|
332
332
|
*/ export var FieldFilterConditions = function FieldFilterConditions(props) {
|
|
333
333
|
"use strict";
|
|
334
334
|
var _this = this;
|
|
335
335
|
_class_call_check(this, FieldFilterConditions);
|
|
336
|
-
/**
|
|
337
|
-
* 编号
|
|
338
|
-
* @defaultValue ''
|
|
336
|
+
/**
|
|
337
|
+
* 编号
|
|
338
|
+
* @defaultValue ''
|
|
339
339
|
*/ _define_property(this, "id", void 0);
|
|
340
|
-
/**
|
|
341
|
-
* 规则编号
|
|
342
|
-
* @defaultValue Timestamp
|
|
340
|
+
/**
|
|
341
|
+
* 规则编号
|
|
342
|
+
* @defaultValue Timestamp
|
|
343
343
|
*/ _define_property(this, "ruleId", void 0);
|
|
344
|
-
/**
|
|
345
|
-
* 类型:连接符条件
|
|
346
|
-
* @defaultValue 'conditions'
|
|
344
|
+
/**
|
|
345
|
+
* 类型:连接符条件
|
|
346
|
+
* @defaultValue 'conditions'
|
|
347
347
|
*/ _define_property(this, "type", 'conditions');
|
|
348
|
-
/**
|
|
349
|
-
* 深度
|
|
350
|
-
* @defaultValue 0
|
|
348
|
+
/**
|
|
349
|
+
* 深度
|
|
350
|
+
* @defaultValue 0
|
|
351
351
|
*/ _define_property(this, "level", void 0);
|
|
352
|
-
/**
|
|
353
|
-
* 连接符值
|
|
354
|
-
* @defaultValue 'and'
|
|
352
|
+
/**
|
|
353
|
+
* 连接符值
|
|
354
|
+
* @defaultValue 'and'
|
|
355
355
|
*/ _define_property(this, "value", void 0);
|
|
356
|
-
/**
|
|
357
|
-
* 包含子项
|
|
358
|
-
* @defaultValue []
|
|
356
|
+
/**
|
|
357
|
+
* 包含子项
|
|
358
|
+
* @defaultValue []
|
|
359
359
|
*/ _define_property(this, "children", void 0);
|
|
360
360
|
var _props_id;
|
|
361
361
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
@@ -380,34 +380,34 @@ export var RightVariable = function RightVariable(props) {
|
|
|
380
380
|
});
|
|
381
381
|
}
|
|
382
382
|
};
|
|
383
|
-
/**
|
|
384
|
-
* 字段过滤条件
|
|
385
|
-
* @public
|
|
383
|
+
/**
|
|
384
|
+
* 字段过滤条件
|
|
385
|
+
* @public
|
|
386
386
|
*/ export var FieldFilterCondition = function FieldFilterCondition(props) {
|
|
387
387
|
"use strict";
|
|
388
388
|
_class_call_check(this, FieldFilterCondition);
|
|
389
|
-
/**
|
|
390
|
-
* 唯一编号
|
|
391
|
-
* @defaultValue ''
|
|
389
|
+
/**
|
|
390
|
+
* 唯一编号
|
|
391
|
+
* @defaultValue ''
|
|
392
392
|
*/ _define_property(this, "id", void 0);
|
|
393
|
-
/**
|
|
394
|
-
* 规则编号
|
|
395
|
-
* @defaultValue Timestamp
|
|
393
|
+
/**
|
|
394
|
+
* 规则编号
|
|
395
|
+
* @defaultValue Timestamp
|
|
396
396
|
*/ _define_property(this, "ruleId", void 0);
|
|
397
|
-
/**
|
|
398
|
-
* 类型
|
|
399
|
-
* @defaultValue 'condition'
|
|
397
|
+
/**
|
|
398
|
+
* 类型
|
|
399
|
+
* @defaultValue 'condition'
|
|
400
400
|
*/ _define_property(this, "type", 'condition');
|
|
401
|
-
/**
|
|
402
|
-
* 符号
|
|
401
|
+
/**
|
|
402
|
+
* 符号
|
|
403
403
|
*/ _define_property(this, "symbol", void 0);
|
|
404
404
|
_define_property(this, "checked", void 0);
|
|
405
405
|
_define_property(this, "describe", void 0);
|
|
406
|
-
/**
|
|
407
|
-
* 左值
|
|
406
|
+
/**
|
|
407
|
+
* 左值
|
|
408
408
|
*/ _define_property(this, "leftVariableBo", void 0);
|
|
409
|
-
/**
|
|
410
|
-
* 右值
|
|
409
|
+
/**
|
|
410
|
+
* 右值
|
|
411
411
|
*/ _define_property(this, "rightVariableBo", void 0);
|
|
412
412
|
var _props_id;
|
|
413
413
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
@@ -434,31 +434,31 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
434
434
|
var _props_relationFields;
|
|
435
435
|
this.relationFields = (_props_relationFields = props === null || props === void 0 ? void 0 : props.relationFields) !== null && _props_relationFields !== void 0 ? _props_relationFields : [];
|
|
436
436
|
};
|
|
437
|
-
/**
|
|
438
|
-
* 数据填充项
|
|
439
|
-
* @public
|
|
437
|
+
/**
|
|
438
|
+
* 数据填充项
|
|
439
|
+
* @public
|
|
440
440
|
*/ export var MultistageFillingItem = function MultistageFillingItem(props) {
|
|
441
441
|
"use strict";
|
|
442
442
|
_class_call_check(this, MultistageFillingItem);
|
|
443
|
-
/**
|
|
444
|
-
* 控件ID
|
|
445
|
-
* @defaultValue ''
|
|
446
|
-
* @public
|
|
443
|
+
/**
|
|
444
|
+
* 控件ID
|
|
445
|
+
* @defaultValue ''
|
|
446
|
+
* @public
|
|
447
447
|
*/ _define_property(this, "controlId", void 0);
|
|
448
|
-
/**
|
|
449
|
-
* 字段
|
|
450
|
-
* @defaultValue ''
|
|
451
|
-
* @public
|
|
448
|
+
/**
|
|
449
|
+
* 字段
|
|
450
|
+
* @defaultValue ''
|
|
451
|
+
* @public
|
|
452
452
|
*/ _define_property(this, "fieldCode", void 0);
|
|
453
|
-
/**
|
|
454
|
-
* 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
|
|
455
|
-
* @defaultValue ''
|
|
456
|
-
* @public
|
|
453
|
+
/**
|
|
454
|
+
* 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
|
|
455
|
+
* @defaultValue ''
|
|
456
|
+
* @public
|
|
457
457
|
*/ _define_property(this, "fieldType", void 0);
|
|
458
|
-
/**
|
|
459
|
-
* 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
|
|
460
|
-
* @defaultValue ''
|
|
461
|
-
* @public
|
|
458
|
+
/**
|
|
459
|
+
* 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
|
|
460
|
+
* @defaultValue ''
|
|
461
|
+
* @public
|
|
462
462
|
* */ _define_property(this, "propName", void 0);
|
|
463
463
|
var _props_controlId;
|
|
464
464
|
this.controlId = (_props_controlId = props === null || props === void 0 ? void 0 : props.controlId) !== null && _props_controlId !== void 0 ? _props_controlId : '';
|
|
@@ -469,22 +469,22 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
469
469
|
var _props_propName;
|
|
470
470
|
this.propName = (_props_propName = props === null || props === void 0 ? void 0 : props.propName) !== null && _props_propName !== void 0 ? _props_propName : '';
|
|
471
471
|
};
|
|
472
|
-
/**
|
|
473
|
-
* 显示项
|
|
474
|
-
* @public
|
|
472
|
+
/**
|
|
473
|
+
* 显示项
|
|
474
|
+
* @public
|
|
475
475
|
*/ export var DisplayBoListItem = function DisplayBoListItem(props) {
|
|
476
476
|
"use strict";
|
|
477
477
|
_class_call_check(this, DisplayBoListItem);
|
|
478
|
-
/**
|
|
479
|
-
* 显示项类型:字段 | 符号
|
|
480
|
-
* @defaultValue 'FIELD'
|
|
481
|
-
* @public
|
|
478
|
+
/**
|
|
479
|
+
* 显示项类型:字段 | 符号
|
|
480
|
+
* @defaultValue 'FIELD'
|
|
481
|
+
* @public
|
|
482
482
|
*/ _define_property(this, "type", void 0);
|
|
483
|
-
/**
|
|
484
|
-
* 值
|
|
483
|
+
/**
|
|
484
|
+
* 值
|
|
485
485
|
*/ _define_property(this, "value", void 0);
|
|
486
|
-
/**
|
|
487
|
-
* 字段数据类型
|
|
486
|
+
/**
|
|
487
|
+
* 字段数据类型
|
|
488
488
|
*/ _define_property(this, "fieldType", void 0);
|
|
489
489
|
var _props_type;
|
|
490
490
|
this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : 'FIELD';
|
|
@@ -495,30 +495,30 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
495
495
|
export var OptionDisplayConfigItem = function OptionDisplayConfigItem(props) {
|
|
496
496
|
"use strict";
|
|
497
497
|
_class_call_check(this, OptionDisplayConfigItem);
|
|
498
|
-
/**
|
|
499
|
-
* 标题
|
|
498
|
+
/**
|
|
499
|
+
* 标题
|
|
500
500
|
*/ _define_property(this, "title", void 0);
|
|
501
|
-
/**
|
|
502
|
-
* 字段数据类型
|
|
501
|
+
/**
|
|
502
|
+
* 字段数据类型
|
|
503
503
|
*/ _define_property(this, "displayBoList", void 0);
|
|
504
504
|
var _props_title;
|
|
505
505
|
this.title = (_props_title = props === null || props === void 0 ? void 0 : props.title) !== null && _props_title !== void 0 ? _props_title : '';
|
|
506
506
|
var _props_displayBoList;
|
|
507
507
|
this.displayBoList = (_props_displayBoList = props === null || props === void 0 ? void 0 : props.displayBoList) !== null && _props_displayBoList !== void 0 ? _props_displayBoList : [];
|
|
508
508
|
};
|
|
509
|
-
/**
|
|
510
|
-
* 数据源排序项
|
|
511
|
-
* @public
|
|
509
|
+
/**
|
|
510
|
+
* 数据源排序项
|
|
511
|
+
* @public
|
|
512
512
|
*/ export var DataSourceOrderItem = function DataSourceOrderItem(props) {
|
|
513
513
|
"use strict";
|
|
514
514
|
_class_call_check(this, DataSourceOrderItem);
|
|
515
|
-
/**
|
|
516
|
-
* 列名
|
|
517
|
-
* @defaultValue ''
|
|
515
|
+
/**
|
|
516
|
+
* 列名
|
|
517
|
+
* @defaultValue ''
|
|
518
518
|
*/ _define_property(this, "columnName", void 0);
|
|
519
|
-
/**
|
|
520
|
-
* 倒序
|
|
521
|
-
* @defaultValue false
|
|
519
|
+
/**
|
|
520
|
+
* 倒序
|
|
521
|
+
* @defaultValue false
|
|
522
522
|
*/ _define_property(this, "desc", void 0);
|
|
523
523
|
var _props_columnName;
|
|
524
524
|
this.columnName = (_props_columnName = props.columnName) !== null && _props_columnName !== void 0 ? _props_columnName : '';
|
|
@@ -545,8 +545,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
545
545
|
"use strict";
|
|
546
546
|
_class_call_check(this, DataSourceParamItem);
|
|
547
547
|
var _props_orders, _props_dataSet;
|
|
548
|
-
/**
|
|
549
|
-
* 字段ID
|
|
548
|
+
/**
|
|
549
|
+
* 字段ID
|
|
550
550
|
*/ _define_property(this, "id", void 0);
|
|
551
551
|
_define_property(this, "limit", void 0);
|
|
552
552
|
_define_property(this, "orders", void 0);
|
|
@@ -568,8 +568,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
568
568
|
return new DataSourceDataSetValue(item);
|
|
569
569
|
})) !== null && _props_dataSet_map !== void 0 ? _props_dataSet_map : [];
|
|
570
570
|
};
|
|
571
|
-
/**
|
|
572
|
-
* 给filters和orders赋值
|
|
571
|
+
/**
|
|
572
|
+
* 给filters和orders赋值
|
|
573
573
|
* */ function callFiltersAndOrders(props) {
|
|
574
574
|
var _props_filters, _props_viewFilters, _props_orders;
|
|
575
575
|
var _props_filters_map;
|
|
@@ -592,78 +592,78 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
592
592
|
})) !== null && _props_orders_map !== void 0 ? _props_orders_map : [];
|
|
593
593
|
// }
|
|
594
594
|
}
|
|
595
|
-
/**
|
|
596
|
-
* 数据源绑定配置
|
|
597
|
-
* @public
|
|
595
|
+
/**
|
|
596
|
+
* 数据源绑定配置
|
|
597
|
+
* @public
|
|
598
598
|
*/ export var DataSourceBind = function DataSourceBind(props) {
|
|
599
599
|
"use strict";
|
|
600
600
|
var _this = this;
|
|
601
601
|
_class_call_check(this, DataSourceBind);
|
|
602
|
-
/**
|
|
603
|
-
* 绑定数据源id
|
|
604
|
-
* @defaultValue ''
|
|
605
|
-
* @public
|
|
602
|
+
/**
|
|
603
|
+
* 绑定数据源id
|
|
604
|
+
* @defaultValue ''
|
|
605
|
+
* @public
|
|
606
606
|
*/ _define_property(this, "dataCode", void 0);
|
|
607
|
-
/**
|
|
608
|
-
* 存储值
|
|
609
|
-
* @defaultValue ''
|
|
610
|
-
* @public
|
|
607
|
+
/**
|
|
608
|
+
* 存储值
|
|
609
|
+
* @defaultValue ''
|
|
610
|
+
* @public
|
|
611
611
|
*/ _define_property(this, "valueFieldCode", void 0);
|
|
612
|
-
/**
|
|
613
|
-
* 显示值
|
|
614
|
-
* @defaultValue []
|
|
615
|
-
* @public
|
|
612
|
+
/**
|
|
613
|
+
* 显示值
|
|
614
|
+
* @defaultValue []
|
|
615
|
+
* @public
|
|
616
616
|
*/ _define_property(this, "displayBoList", void 0);
|
|
617
|
-
/**
|
|
618
|
-
* 查询关键字参数映射
|
|
619
|
-
* @defaultValue ''
|
|
620
|
-
* @public
|
|
617
|
+
/**
|
|
618
|
+
* 查询关键字参数映射
|
|
619
|
+
* @defaultValue ''
|
|
620
|
+
* @public
|
|
621
621
|
*/ _define_property(this, "keywordMapping", void 0);
|
|
622
|
-
/**
|
|
623
|
-
* 绑定服务
|
|
624
|
-
* @defaultValue ''
|
|
625
|
-
* @public
|
|
622
|
+
/**
|
|
623
|
+
* 绑定服务
|
|
624
|
+
* @defaultValue ''
|
|
625
|
+
* @public
|
|
626
626
|
*/ _define_property(this, "svcCode", void 0);
|
|
627
|
-
/**
|
|
628
|
-
* 应用Id
|
|
629
|
-
* @defaultValue ''
|
|
630
|
-
* @public
|
|
627
|
+
/**
|
|
628
|
+
* 应用Id
|
|
629
|
+
* @defaultValue ''
|
|
630
|
+
* @public
|
|
631
631
|
*/ _define_property(this, "appId", void 0);
|
|
632
|
-
/**
|
|
633
|
-
* 过滤条件
|
|
634
|
-
* @defaultValue []
|
|
635
|
-
* @public
|
|
632
|
+
/**
|
|
633
|
+
* 过滤条件
|
|
634
|
+
* @defaultValue []
|
|
635
|
+
* @public
|
|
636
636
|
*/ _define_property(this, "filters", void 0);
|
|
637
637
|
// 过滤
|
|
638
|
-
/**
|
|
639
|
-
* 过滤条件-查看过滤
|
|
640
|
-
* @defaultValue []
|
|
641
|
-
* @public
|
|
638
|
+
/**
|
|
639
|
+
* 过滤条件-查看过滤
|
|
640
|
+
* @defaultValue []
|
|
641
|
+
* @public
|
|
642
642
|
*/ _define_property(this, "viewFilters", void 0);
|
|
643
|
-
/**
|
|
644
|
-
* 是否开启查看过滤
|
|
645
|
-
* @defaultValue 0:未开启;1:开启
|
|
646
|
-
* @public
|
|
643
|
+
/**
|
|
644
|
+
* 是否开启查看过滤
|
|
645
|
+
* @defaultValue 0:未开启;1:开启
|
|
646
|
+
* @public
|
|
647
647
|
*/ _define_property(this, "isOpenViewFilters", void 0);
|
|
648
|
-
/**
|
|
649
|
-
* 排序
|
|
650
|
-
* @defaultValue []
|
|
651
|
-
* @public
|
|
648
|
+
/**
|
|
649
|
+
* 排序
|
|
650
|
+
* @defaultValue []
|
|
651
|
+
* @public
|
|
652
652
|
*/ _define_property(this, "orders", void 0);
|
|
653
|
-
/**
|
|
654
|
-
* 显示排序
|
|
655
|
-
* @defaultValue true
|
|
656
|
-
* @public
|
|
653
|
+
/**
|
|
654
|
+
* 显示排序
|
|
655
|
+
* @defaultValue true
|
|
656
|
+
* @public
|
|
657
657
|
*/ _define_property(this, "showOrder", void 0);
|
|
658
|
-
/**
|
|
659
|
-
* 部门或者人员指定部门配置
|
|
660
|
-
* @defaultValue {}
|
|
661
|
-
* @public
|
|
658
|
+
/**
|
|
659
|
+
* 部门或者人员指定部门配置
|
|
660
|
+
* @defaultValue {}
|
|
661
|
+
* @public
|
|
662
662
|
*/ _define_property(this, "assignDepartment", void 0);
|
|
663
|
-
/**
|
|
664
|
-
* 部门或者人员指定部门配置是否开启
|
|
665
|
-
* @defaultValue {}
|
|
666
|
-
* @public
|
|
663
|
+
/**
|
|
664
|
+
* 部门或者人员指定部门配置是否开启
|
|
665
|
+
* @defaultValue {}
|
|
666
|
+
* @public
|
|
667
667
|
*/ _define_property(this, "openAssignDepartment", void 0);
|
|
668
668
|
var _props_dataCode;
|
|
669
669
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -694,15 +694,15 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
694
694
|
export var SelectedContentConfig = function SelectedContentConfig(props) {
|
|
695
695
|
"use strict";
|
|
696
696
|
_class_call_check(this, SelectedContentConfig);
|
|
697
|
-
/**
|
|
698
|
-
* 展示已选内容
|
|
699
|
-
* @defaultValue ''
|
|
700
|
-
* @public
|
|
697
|
+
/**
|
|
698
|
+
* 展示已选内容
|
|
699
|
+
* @defaultValue ''
|
|
700
|
+
* @public
|
|
701
701
|
*/ _define_property(this, "dataCode", void 0);
|
|
702
|
-
/**
|
|
703
|
-
* 展示已选明细
|
|
704
|
-
* @defaultValue []
|
|
705
|
-
* @public
|
|
702
|
+
/**
|
|
703
|
+
* 展示已选明细
|
|
704
|
+
* @defaultValue []
|
|
705
|
+
* @public
|
|
706
706
|
*/ _define_property(this, "displayBoList", void 0);
|
|
707
707
|
var _props_dataCode;
|
|
708
708
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -819,14 +819,14 @@ var FillBind = function FillBind(props) {
|
|
|
819
819
|
"use strict";
|
|
820
820
|
_class_call_check(this, FillBind);
|
|
821
821
|
var _props_fillList;
|
|
822
|
-
/*
|
|
823
|
-
* 需要被填充的数据源
|
|
822
|
+
/*
|
|
823
|
+
* 需要被填充的数据源
|
|
824
824
|
* */ _define_property(this, "dataCode", void 0);
|
|
825
|
-
/*
|
|
826
|
-
* appId
|
|
825
|
+
/*
|
|
826
|
+
* appId
|
|
827
827
|
* */ _define_property(this, "appId", void 0);
|
|
828
|
-
/*
|
|
829
|
-
* 执行填充的数据项和控件
|
|
828
|
+
/*
|
|
829
|
+
* 执行填充的数据项和控件
|
|
830
830
|
* */ _define_property(this, "fillList", void 0);
|
|
831
831
|
var _props_dataCode;
|
|
832
832
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -837,10 +837,10 @@ var FillBind = function FillBind(props) {
|
|
|
837
837
|
return new MultistageFillingItem(item);
|
|
838
838
|
})) !== null && _props_fillList_map !== void 0 ? _props_fillList_map : [];
|
|
839
839
|
};
|
|
840
|
-
/**
|
|
841
|
-
* FillPayloadBind 填充配置
|
|
842
|
-
* 填充的配置和需要携带的数据
|
|
843
|
-
* @public
|
|
840
|
+
/**
|
|
841
|
+
* FillPayloadBind 填充配置
|
|
842
|
+
* 填充的配置和需要携带的数据
|
|
843
|
+
* @public
|
|
844
844
|
* */ export var FillPayloadBind = /*#__PURE__*/ function(FillBind) {
|
|
845
845
|
"use strict";
|
|
846
846
|
_inherits(FillPayloadBind, FillBind);
|
|
@@ -849,27 +849,27 @@ var FillBind = function FillBind(props) {
|
|
|
849
849
|
var _this;
|
|
850
850
|
_this = _call_super(this, FillPayloadBind, [
|
|
851
851
|
props
|
|
852
|
-
]), /**
|
|
853
|
-
* 数据源过滤条件
|
|
854
|
-
* @defaultValue []
|
|
855
|
-
* @public
|
|
856
|
-
**/ _define_property(_this, "filters", void 0), /**
|
|
857
|
-
* 数据源过滤条件-查看
|
|
858
|
-
* @defaultValue []
|
|
859
|
-
* @public
|
|
860
|
-
**/ _define_property(_this, "viewFilters", void 0), /**
|
|
861
|
-
* 数据源排序条件
|
|
862
|
-
* @defaultValue []
|
|
863
|
-
* @public
|
|
852
|
+
]), /**
|
|
853
|
+
* 数据源过滤条件
|
|
854
|
+
* @defaultValue []
|
|
855
|
+
* @public
|
|
856
|
+
**/ _define_property(_this, "filters", void 0), /**
|
|
857
|
+
* 数据源过滤条件-查看
|
|
858
|
+
* @defaultValue []
|
|
859
|
+
* @public
|
|
860
|
+
**/ _define_property(_this, "viewFilters", void 0), /**
|
|
861
|
+
* 数据源排序条件
|
|
862
|
+
* @defaultValue []
|
|
863
|
+
* @public
|
|
864
864
|
**/ _define_property(_this, "orders", void 0);
|
|
865
865
|
callFiltersAndOrders.call(_this, props);
|
|
866
866
|
return _this;
|
|
867
867
|
}
|
|
868
868
|
return FillPayloadBind;
|
|
869
869
|
}(FillBind);
|
|
870
|
-
/**
|
|
871
|
-
* FillBackBind 回填需要的配置和参数
|
|
872
|
-
* @public
|
|
870
|
+
/**
|
|
871
|
+
* FillBackBind 回填需要的配置和参数
|
|
872
|
+
* @public
|
|
873
873
|
*/ export var FillBackBind = /*#__PURE__*/ function(FillBind) {
|
|
874
874
|
"use strict";
|
|
875
875
|
_inherits(FillBackBind, FillBind);
|
|
@@ -878,14 +878,14 @@ var FillBind = function FillBind(props) {
|
|
|
878
878
|
var _this;
|
|
879
879
|
_this = _call_super(this, FillBackBind, [
|
|
880
880
|
props
|
|
881
|
-
]), /**
|
|
882
|
-
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
883
|
-
* @defaultValue 'current'
|
|
884
|
-
* @public
|
|
885
|
-
* */ _define_property(_this, "mode", void 0), /**
|
|
886
|
-
* 多选
|
|
887
|
-
* @defaultValue false
|
|
888
|
-
* @public
|
|
881
|
+
]), /**
|
|
882
|
+
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
883
|
+
* @defaultValue 'current'
|
|
884
|
+
* @public
|
|
885
|
+
* */ _define_property(_this, "mode", void 0), /**
|
|
886
|
+
* 多选
|
|
887
|
+
* @defaultValue false
|
|
888
|
+
* @public
|
|
889
889
|
*/ _define_property(_this, "multiple", void 0);
|
|
890
890
|
var _props_mode;
|
|
891
891
|
_this.mode = (_props_mode = props === null || props === void 0 ? void 0 : props.mode) !== null && _props_mode !== void 0 ? _props_mode : 'current';
|
|
@@ -908,23 +908,23 @@ export var Language = function Language(props) {
|
|
|
908
908
|
var _props_ja;
|
|
909
909
|
this.ja = (_props_ja = props === null || props === void 0 ? void 0 : props.ja) !== null && _props_ja !== void 0 ? _props_ja : '';
|
|
910
910
|
};
|
|
911
|
-
/**
|
|
912
|
-
* 正则校验
|
|
913
|
-
* @public
|
|
911
|
+
/**
|
|
912
|
+
* 正则校验
|
|
913
|
+
* @public
|
|
914
914
|
*/ export var RegularRules = function RegularRules(props) {
|
|
915
915
|
"use strict";
|
|
916
916
|
_class_call_check(this, RegularRules);
|
|
917
|
-
/**
|
|
918
|
-
* 内置模版
|
|
919
|
-
* @defaultValue ''
|
|
917
|
+
/**
|
|
918
|
+
* 内置模版
|
|
919
|
+
* @defaultValue ''
|
|
920
920
|
*/ _define_property(this, "stencilName", void 0);
|
|
921
|
-
/**
|
|
922
|
-
* 正则表达式
|
|
923
|
-
* @defaultValue ''
|
|
921
|
+
/**
|
|
922
|
+
* 正则表达式
|
|
923
|
+
* @defaultValue ''
|
|
924
924
|
*/ _define_property(this, "expression", void 0);
|
|
925
|
-
/**
|
|
926
|
-
* 校验错误提示信息
|
|
927
|
-
* @defaultValue ''
|
|
925
|
+
/**
|
|
926
|
+
* 校验错误提示信息
|
|
927
|
+
* @defaultValue ''
|
|
928
928
|
*/ _define_property(this, "errMessage", void 0);
|
|
929
929
|
var _props_stencilName;
|
|
930
930
|
this.stencilName = (_props_stencilName = props === null || props === void 0 ? void 0 : props.stencilName) !== null && _props_stencilName !== void 0 ? _props_stencilName : '';
|
|
@@ -933,22 +933,22 @@ export var Language = function Language(props) {
|
|
|
933
933
|
var _props_errMessage;
|
|
934
934
|
this.errMessage = (_props_errMessage = props === null || props === void 0 ? void 0 : props.errMessage) !== null && _props_errMessage !== void 0 ? _props_errMessage : '';
|
|
935
935
|
};
|
|
936
|
-
/**
|
|
937
|
-
* 选项设置-自定义选项
|
|
938
|
-
* @public
|
|
936
|
+
/**
|
|
937
|
+
* 选项设置-自定义选项
|
|
938
|
+
* @public
|
|
939
939
|
*/ export var OptionSetting = function OptionSetting(props) {
|
|
940
940
|
"use strict";
|
|
941
941
|
_class_call_check(this, OptionSetting);
|
|
942
942
|
_define_property(this, "id", void 0);
|
|
943
|
-
/**
|
|
944
|
-
* 显示值
|
|
945
|
-
* @defaultValue ''
|
|
946
|
-
* @public
|
|
943
|
+
/**
|
|
944
|
+
* 显示值
|
|
945
|
+
* @defaultValue ''
|
|
946
|
+
* @public
|
|
947
947
|
*/ _define_property(this, "label", void 0);
|
|
948
|
-
/**
|
|
949
|
-
* 选项ID
|
|
950
|
-
* @defaultValue this.label
|
|
951
|
-
* @public
|
|
948
|
+
/**
|
|
949
|
+
* 选项ID
|
|
950
|
+
* @defaultValue this.label
|
|
951
|
+
* @public
|
|
952
952
|
*/ _define_property(this, "value", void 0);
|
|
953
953
|
var _props_id;
|
|
954
954
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
|
|
@@ -1009,26 +1009,26 @@ export function initAiOptions(options) {
|
|
|
1009
1009
|
return new AiOptionSetting(item);
|
|
1010
1010
|
})) !== null && _options_map !== void 0 ? _options_map : [];
|
|
1011
1011
|
}
|
|
1012
|
-
/**
|
|
1013
|
-
* 对象类型数据绑定配置
|
|
1014
|
-
* @public
|
|
1012
|
+
/**
|
|
1013
|
+
* 对象类型数据绑定配置
|
|
1014
|
+
* @public
|
|
1015
1015
|
*/ export var ObjectDataBind = function ObjectDataBind() {
|
|
1016
1016
|
"use strict";
|
|
1017
1017
|
_class_call_check(this, ObjectDataBind);
|
|
1018
1018
|
};
|
|
1019
|
-
/**
|
|
1020
|
-
* 金额控件数据绑定配置
|
|
1021
|
-
* @public
|
|
1019
|
+
/**
|
|
1020
|
+
* 金额控件数据绑定配置
|
|
1021
|
+
* @public
|
|
1022
1022
|
*/ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1023
1023
|
"use strict";
|
|
1024
1024
|
_inherits(AmountDataBind, ObjectDataBind);
|
|
1025
1025
|
function AmountDataBind(props) {
|
|
1026
1026
|
_class_call_check(this, AmountDataBind);
|
|
1027
1027
|
var _this;
|
|
1028
|
-
_this = _call_super(this, AmountDataBind), /**
|
|
1029
|
-
* 金额字段绑定配置
|
|
1030
|
-
*/ _define_property(_this, "amount", void 0), /**
|
|
1031
|
-
* 币种字段绑定配置
|
|
1028
|
+
_this = _call_super(this, AmountDataBind), /**
|
|
1029
|
+
* 金额字段绑定配置
|
|
1030
|
+
*/ _define_property(_this, "amount", void 0), /**
|
|
1031
|
+
* 币种字段绑定配置
|
|
1032
1032
|
*/ _define_property(_this, "currency", void 0);
|
|
1033
1033
|
_this.amount = new DataBind(props === null || props === void 0 ? void 0 : props.amount);
|
|
1034
1034
|
_this.currency = new DataBind(props === null || props === void 0 ? void 0 : props.currency);
|
|
@@ -1036,38 +1036,38 @@ export function initAiOptions(options) {
|
|
|
1036
1036
|
}
|
|
1037
1037
|
return AmountDataBind;
|
|
1038
1038
|
}(ObjectDataBind);
|
|
1039
|
-
/**
|
|
1040
|
-
* 金额控件值
|
|
1041
|
-
* @public
|
|
1039
|
+
/**
|
|
1040
|
+
* 金额控件值
|
|
1041
|
+
* @public
|
|
1042
1042
|
*/ export var AmountValue = function AmountValue(props) {
|
|
1043
1043
|
"use strict";
|
|
1044
1044
|
_class_call_check(this, AmountValue);
|
|
1045
|
-
/**
|
|
1046
|
-
* 金额值
|
|
1047
|
-
* @defaultValue ''
|
|
1045
|
+
/**
|
|
1046
|
+
* 金额值
|
|
1047
|
+
* @defaultValue ''
|
|
1048
1048
|
*/ _define_property(this, "amount", void 0);
|
|
1049
|
-
/**
|
|
1050
|
-
* 货币值
|
|
1051
|
-
* @defaultValue 'CNY'
|
|
1049
|
+
/**
|
|
1050
|
+
* 货币值
|
|
1051
|
+
* @defaultValue 'CNY'
|
|
1052
1052
|
*/ _define_property(this, "currency", void 0);
|
|
1053
1053
|
var _props_amount;
|
|
1054
1054
|
this.amount = (_props_amount = props === null || props === void 0 ? void 0 : props.amount) !== null && _props_amount !== void 0 ? _props_amount : '';
|
|
1055
1055
|
var _props_currency;
|
|
1056
1056
|
this.currency = (_props_currency = props === null || props === void 0 ? void 0 : props.currency) !== null && _props_currency !== void 0 ? _props_currency : "CNY";
|
|
1057
1057
|
};
|
|
1058
|
-
/**
|
|
1059
|
-
* 日期区间数据绑定项
|
|
1060
|
-
* @public
|
|
1058
|
+
/**
|
|
1059
|
+
* 日期区间数据绑定项
|
|
1060
|
+
* @public
|
|
1061
1061
|
*/ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1062
1062
|
"use strict";
|
|
1063
1063
|
_inherits(RangeDataBind, ObjectDataBind);
|
|
1064
1064
|
function RangeDataBind(props) {
|
|
1065
1065
|
_class_call_check(this, RangeDataBind);
|
|
1066
1066
|
var _this;
|
|
1067
|
-
_this = _call_super(this, RangeDataBind), /**
|
|
1068
|
-
* 开始日期字段绑定项
|
|
1069
|
-
*/ _define_property(_this, "min", void 0), /**
|
|
1070
|
-
* 结束日期字段绑定项
|
|
1067
|
+
_this = _call_super(this, RangeDataBind), /**
|
|
1068
|
+
* 开始日期字段绑定项
|
|
1069
|
+
*/ _define_property(_this, "min", void 0), /**
|
|
1070
|
+
* 结束日期字段绑定项
|
|
1071
1071
|
*/ _define_property(_this, "max", void 0);
|
|
1072
1072
|
_this.min = new DataBind(props === null || props === void 0 ? void 0 : props.min);
|
|
1073
1073
|
_this.max = new DataBind(props === null || props === void 0 ? void 0 : props.max);
|
|
@@ -1075,54 +1075,54 @@ export function initAiOptions(options) {
|
|
|
1075
1075
|
}
|
|
1076
1076
|
return RangeDataBind;
|
|
1077
1077
|
}(ObjectDataBind);
|
|
1078
|
-
/**
|
|
1079
|
-
* 日期区间值
|
|
1080
|
-
* @public
|
|
1078
|
+
/**
|
|
1079
|
+
* 日期区间值
|
|
1080
|
+
* @public
|
|
1081
1081
|
*/ export var RangeDateValue = function RangeDateValue(props) {
|
|
1082
1082
|
"use strict";
|
|
1083
1083
|
_class_call_check(this, RangeDateValue);
|
|
1084
|
-
/**
|
|
1085
|
-
* 开始日期值
|
|
1086
|
-
* @defaultValue ''
|
|
1084
|
+
/**
|
|
1085
|
+
* 开始日期值
|
|
1086
|
+
* @defaultValue ''
|
|
1087
1087
|
*/ _define_property(this, "min", void 0);
|
|
1088
|
-
/**
|
|
1089
|
-
* 结束日期值
|
|
1090
|
-
* @defaultValue ''
|
|
1088
|
+
/**
|
|
1089
|
+
* 结束日期值
|
|
1090
|
+
* @defaultValue ''
|
|
1091
1091
|
*/ _define_property(this, "max", void 0);
|
|
1092
1092
|
var _props_min;
|
|
1093
1093
|
this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : '';
|
|
1094
1094
|
var _props_max;
|
|
1095
1095
|
this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : '';
|
|
1096
1096
|
};
|
|
1097
|
-
/**
|
|
1098
|
-
* 地址值
|
|
1099
|
-
* @public
|
|
1097
|
+
/**
|
|
1098
|
+
* 地址值
|
|
1099
|
+
* @public
|
|
1100
1100
|
*/ export var AddressValue = function AddressValue(props) {
|
|
1101
1101
|
"use strict";
|
|
1102
1102
|
_class_call_check(this, AddressValue);
|
|
1103
|
-
/**
|
|
1104
|
-
* 市编码
|
|
1105
|
-
* @defaultValue ''
|
|
1103
|
+
/**
|
|
1104
|
+
* 市编码
|
|
1105
|
+
* @defaultValue ''
|
|
1106
1106
|
*/ _define_property(this, "city", void 0);
|
|
1107
|
-
/**
|
|
1108
|
-
* 市显示文字
|
|
1109
|
-
* @defaultValue ''
|
|
1107
|
+
/**
|
|
1108
|
+
* 市显示文字
|
|
1109
|
+
* @defaultValue ''
|
|
1110
1110
|
*/ _define_property(this, "cityDisplay", void 0);
|
|
1111
|
-
/**
|
|
1112
|
-
* 区编码
|
|
1113
|
-
* @defaultValue ''
|
|
1111
|
+
/**
|
|
1112
|
+
* 区编码
|
|
1113
|
+
* @defaultValue ''
|
|
1114
1114
|
*/ _define_property(this, "district", void 0);
|
|
1115
|
-
/**
|
|
1116
|
-
* 区显示文字
|
|
1117
|
-
* @defaultValue ''
|
|
1115
|
+
/**
|
|
1116
|
+
* 区显示文字
|
|
1117
|
+
* @defaultValue ''
|
|
1118
1118
|
*/ _define_property(this, "districtDisplay", void 0);
|
|
1119
|
-
/**
|
|
1120
|
-
* 省编码
|
|
1121
|
-
* @defaultValue ''
|
|
1119
|
+
/**
|
|
1120
|
+
* 省编码
|
|
1121
|
+
* @defaultValue ''
|
|
1122
1122
|
*/ _define_property(this, "province", void 0);
|
|
1123
|
-
/**
|
|
1124
|
-
* 省显示文字
|
|
1125
|
-
* @defaultValue ''
|
|
1123
|
+
/**
|
|
1124
|
+
* 省显示文字
|
|
1125
|
+
* @defaultValue ''
|
|
1126
1126
|
*/ _define_property(this, "provinceDisplay", void 0);
|
|
1127
1127
|
var _props_city;
|
|
1128
1128
|
this.city = (_props_city = props === null || props === void 0 ? void 0 : props.city) !== null && _props_city !== void 0 ? _props_city : '';
|
|
@@ -1137,19 +1137,19 @@ export function initAiOptions(options) {
|
|
|
1137
1137
|
var _props_provinceDisplay;
|
|
1138
1138
|
this.provinceDisplay = (_props_provinceDisplay = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && _props_provinceDisplay !== void 0 ? _props_provinceDisplay : '';
|
|
1139
1139
|
};
|
|
1140
|
-
/**
|
|
1141
|
-
* 计算公式数据绑定项
|
|
1142
|
-
* @public
|
|
1140
|
+
/**
|
|
1141
|
+
* 计算公式数据绑定项
|
|
1142
|
+
* @public
|
|
1143
1143
|
*/ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1144
1144
|
"use strict";
|
|
1145
1145
|
_inherits(CalcDataBind, ObjectDataBind);
|
|
1146
1146
|
function CalcDataBind(props) {
|
|
1147
1147
|
_class_call_check(this, CalcDataBind);
|
|
1148
1148
|
var _this;
|
|
1149
|
-
_this = _call_super(this, CalcDataBind), /**
|
|
1150
|
-
* 计算结果字段绑定项
|
|
1151
|
-
*/ _define_property(_this, "result", void 0), /**
|
|
1152
|
-
* 单位字段绑定项
|
|
1149
|
+
_this = _call_super(this, CalcDataBind), /**
|
|
1150
|
+
* 计算结果字段绑定项
|
|
1151
|
+
*/ _define_property(_this, "result", void 0), /**
|
|
1152
|
+
* 单位字段绑定项
|
|
1153
1153
|
*/ _define_property(_this, "unit", void 0);
|
|
1154
1154
|
_this.result = new DataBind(props === null || props === void 0 ? void 0 : props.result);
|
|
1155
1155
|
_this.unit = new DataBind(props === null || props === void 0 ? void 0 : props.unit);
|
|
@@ -1157,19 +1157,19 @@ export function initAiOptions(options) {
|
|
|
1157
1157
|
}
|
|
1158
1158
|
return CalcDataBind;
|
|
1159
1159
|
}(ObjectDataBind);
|
|
1160
|
-
/**
|
|
1161
|
-
* 计算公式值
|
|
1162
|
-
* @public
|
|
1160
|
+
/**
|
|
1161
|
+
* 计算公式值
|
|
1162
|
+
* @public
|
|
1163
1163
|
*/ export var CalcValue = function CalcValue(props) {
|
|
1164
1164
|
"use strict";
|
|
1165
1165
|
_class_call_check(this, CalcValue);
|
|
1166
|
-
/**
|
|
1167
|
-
* 计算结果值
|
|
1168
|
-
* @defaultValue 0
|
|
1166
|
+
/**
|
|
1167
|
+
* 计算结果值
|
|
1168
|
+
* @defaultValue 0
|
|
1169
1169
|
*/ _define_property(this, "result", void 0);
|
|
1170
|
-
/**
|
|
1171
|
-
* 单位
|
|
1172
|
-
* @defaultValue ''
|
|
1170
|
+
/**
|
|
1171
|
+
* 单位
|
|
1172
|
+
* @defaultValue ''
|
|
1173
1173
|
*/ _define_property(this, "unit", void 0);
|
|
1174
1174
|
var _props_result;
|
|
1175
1175
|
this.result = (_props_result = props === null || props === void 0 ? void 0 : props.result) !== null && _props_result !== void 0 ? _props_result : 0;
|
|
@@ -1207,14 +1207,14 @@ export var AMOUNT_TYPE = /*#__PURE__*/ function(AMOUNT_TYPE) {
|
|
|
1207
1207
|
AMOUNT_TYPE["IEP"] = "IEP";
|
|
1208
1208
|
return AMOUNT_TYPE;
|
|
1209
1209
|
}({});
|
|
1210
|
-
/**
|
|
1211
|
-
* 选项设置
|
|
1212
|
-
* REQUIRED: 必填
|
|
1213
|
-
* isHide: 隐藏
|
|
1214
|
-
* IS_SHOW_UNIT: 单位
|
|
1215
|
-
* CAN_SEARCH: 支持搜索
|
|
1216
|
-
* MULTIPLE: 允许选中多个日期
|
|
1217
|
-
* SUBMIT_SELECT_CURRENCY: 提交时选择币种
|
|
1210
|
+
/**
|
|
1211
|
+
* 选项设置
|
|
1212
|
+
* REQUIRED: 必填
|
|
1213
|
+
* isHide: 隐藏
|
|
1214
|
+
* IS_SHOW_UNIT: 单位
|
|
1215
|
+
* CAN_SEARCH: 支持搜索
|
|
1216
|
+
* MULTIPLE: 允许选中多个日期
|
|
1217
|
+
* SUBMIT_SELECT_CURRENCY: 提交时选择币种
|
|
1218
1218
|
*/ export var COMMON_SETTING_TYPE = /*#__PURE__*/ function(COMMON_SETTING_TYPE) {
|
|
1219
1219
|
COMMON_SETTING_TYPE["DEFAULT_DISPLAY"] = "defaultDisplay";
|
|
1220
1220
|
COMMON_SETTING_TYPE["REQUIRED"] = "required";
|
|
@@ -1252,6 +1252,7 @@ export var AMOUNT_TYPE = /*#__PURE__*/ function(AMOUNT_TYPE) {
|
|
|
1252
1252
|
COMMON_SETTING_TYPE["IS_SHOW_TOOL_BAE"] = "isShowToolbar";
|
|
1253
1253
|
COMMON_SETTING_TYPE["MAIN_DEPT_FLAG"] = "mainDeptFlag";
|
|
1254
1254
|
COMMON_SETTING_TYPE["IS_INTERNATIONAL"] = "isInternational";
|
|
1255
|
+
COMMON_SETTING_TYPE["SHOW_TABLE_INDEX"] = "showTableIndex";
|
|
1255
1256
|
return COMMON_SETTING_TYPE;
|
|
1256
1257
|
}({});
|
|
1257
1258
|
export var PAGE_STATUS = /*#__PURE__*/ function(PAGE_STATUS) {
|
|
@@ -1261,36 +1262,36 @@ export var PAGE_STATUS = /*#__PURE__*/ function(PAGE_STATUS) {
|
|
|
1261
1262
|
PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
|
|
1262
1263
|
return PAGE_STATUS;
|
|
1263
1264
|
}({});
|
|
1264
|
-
/**
|
|
1265
|
-
* 操作按钮
|
|
1266
|
-
* @public
|
|
1265
|
+
/**
|
|
1266
|
+
* 操作按钮
|
|
1267
|
+
* @public
|
|
1267
1268
|
*/ export var OperationItem = function OperationItem(props) {
|
|
1268
1269
|
"use strict";
|
|
1269
1270
|
_class_call_check(this, OperationItem);
|
|
1270
|
-
/**
|
|
1271
|
-
* 是否显示
|
|
1272
|
-
* @defaultValue true
|
|
1273
|
-
* @public
|
|
1271
|
+
/**
|
|
1272
|
+
* 是否显示
|
|
1273
|
+
* @defaultValue true
|
|
1274
|
+
* @public
|
|
1274
1275
|
*/ _define_property(this, "isShow", void 0);
|
|
1275
|
-
/**
|
|
1276
|
-
* 优先访问流程表单
|
|
1277
|
-
* @defaultValue false
|
|
1278
|
-
* @public
|
|
1276
|
+
/**
|
|
1277
|
+
* 优先访问流程表单
|
|
1278
|
+
* @defaultValue false
|
|
1279
|
+
* @public
|
|
1279
1280
|
*/ _define_property(this, "priorityProcess", void 0);
|
|
1280
|
-
/**
|
|
1281
|
-
* 表单ID
|
|
1282
|
-
* @defaultValue ''
|
|
1283
|
-
* @public
|
|
1281
|
+
/**
|
|
1282
|
+
* 表单ID
|
|
1283
|
+
* @defaultValue ''
|
|
1284
|
+
* @public
|
|
1284
1285
|
*/ _define_property(this, "formKey", void 0);
|
|
1285
|
-
/**
|
|
1286
|
-
* 显示文字
|
|
1287
|
-
* @defaultValue ''
|
|
1288
|
-
* @public
|
|
1286
|
+
/**
|
|
1287
|
+
* 显示文字
|
|
1288
|
+
* @defaultValue ''
|
|
1289
|
+
* @public
|
|
1289
1290
|
*/ _define_property(this, "content", void 0);
|
|
1290
|
-
/**
|
|
1291
|
-
* 打开方式
|
|
1292
|
-
* @defaultValue 'modal'
|
|
1293
|
-
* @public
|
|
1291
|
+
/**
|
|
1292
|
+
* 打开方式
|
|
1293
|
+
* @defaultValue 'modal'
|
|
1294
|
+
* @public
|
|
1294
1295
|
*/ _define_property(this, "openType", void 0);
|
|
1295
1296
|
_define_property(this, "type", void 0);
|
|
1296
1297
|
var _props_isShow;
|
|
@@ -1325,16 +1326,16 @@ export var ViewOperationItem = function ViewOperationItem(props) {
|
|
|
1325
1326
|
})) !== null && _props_headers_map !== void 0 ? _props_headers_map : [];
|
|
1326
1327
|
callFiltersAndOrders.call(this, props);
|
|
1327
1328
|
};
|
|
1328
|
-
/**
|
|
1329
|
-
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1329
|
+
/**
|
|
1330
|
+
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1330
1331
|
*/ export var CustomPermissionItem = function CustomPermissionItem(props) {
|
|
1331
1332
|
"use strict";
|
|
1332
1333
|
_class_call_check(this, CustomPermissionItem);
|
|
1333
|
-
/**
|
|
1334
|
-
* 人工输入的权限key
|
|
1334
|
+
/**
|
|
1335
|
+
* 人工输入的权限key
|
|
1335
1336
|
*/ _define_property(this, "key", void 0);
|
|
1336
|
-
/**
|
|
1337
|
-
* 权限名称
|
|
1337
|
+
/**
|
|
1338
|
+
* 权限名称
|
|
1338
1339
|
*/ _define_property(this, "caption", void 0);
|
|
1339
1340
|
var _props_key;
|
|
1340
1341
|
this.key = (_props_key = props.key) !== null && _props_key !== void 0 ? _props_key : genNonDuplicateId(8);
|
|
@@ -1360,15 +1361,15 @@ export var BaseStyle = function BaseStyle(props) {
|
|
|
1360
1361
|
export var OptObject = function OptObject(props) {
|
|
1361
1362
|
"use strict";
|
|
1362
1363
|
_class_call_check(this, OptObject);
|
|
1363
|
-
/**
|
|
1364
|
-
* 操作项编码
|
|
1365
|
-
* @defaultValue ''
|
|
1366
|
-
* @public
|
|
1364
|
+
/**
|
|
1365
|
+
* 操作项编码
|
|
1366
|
+
* @defaultValue ''
|
|
1367
|
+
* @public
|
|
1367
1368
|
*/ _define_property(this, "optCode", void 0);
|
|
1368
|
-
/**
|
|
1369
|
-
* 操作项类型
|
|
1370
|
-
* @defaultValue ''
|
|
1371
|
-
* @public
|
|
1369
|
+
/**
|
|
1370
|
+
* 操作项类型
|
|
1371
|
+
* @defaultValue ''
|
|
1372
|
+
* @public
|
|
1372
1373
|
*/ _define_property(this, "optType", void 0);
|
|
1373
1374
|
var _props_optCode;
|
|
1374
1375
|
this.optCode = (_props_optCode = props === null || props === void 0 ? void 0 : props.optCode) !== null && _props_optCode !== void 0 ? _props_optCode : '';
|
|
@@ -1379,21 +1380,21 @@ export var RowStyleRule = function RowStyleRule(props) {
|
|
|
1379
1380
|
"use strict";
|
|
1380
1381
|
_class_call_check(this, RowStyleRule);
|
|
1381
1382
|
var _props_filters, _props_settings;
|
|
1382
|
-
/**
|
|
1383
|
-
* 规则编号
|
|
1384
|
-
* @defaultValue guid
|
|
1385
|
-
* @public
|
|
1383
|
+
/**
|
|
1384
|
+
* 规则编号
|
|
1385
|
+
* @defaultValue guid
|
|
1386
|
+
* @public
|
|
1386
1387
|
*/ _define_property(this, "id", void 0);
|
|
1387
|
-
/**
|
|
1388
|
-
* 规则名称
|
|
1389
|
-
* @defaultValue ''
|
|
1390
|
-
* @public
|
|
1388
|
+
/**
|
|
1389
|
+
* 规则名称
|
|
1390
|
+
* @defaultValue ''
|
|
1391
|
+
* @public
|
|
1391
1392
|
*/ _define_property(this, "name", void 0);
|
|
1392
1393
|
_define_property(this, "settings", void 0);
|
|
1393
|
-
/**
|
|
1394
|
-
* 过滤条件
|
|
1395
|
-
* @defaultValue []
|
|
1396
|
-
* @public
|
|
1394
|
+
/**
|
|
1395
|
+
* 过滤条件
|
|
1396
|
+
* @defaultValue []
|
|
1397
|
+
* @public
|
|
1397
1398
|
*/ _define_property(this, "filters", void 0);
|
|
1398
1399
|
// 过滤
|
|
1399
1400
|
_define_property(this, "script", void 0);
|
|
@@ -1417,19 +1418,19 @@ export var RowStyleRule = function RowStyleRule(props) {
|
|
|
1417
1418
|
export var RowStyleSettings = function RowStyleSettings(props) {
|
|
1418
1419
|
"use strict";
|
|
1419
1420
|
_class_call_check(this, RowStyleSettings);
|
|
1420
|
-
/**
|
|
1421
|
-
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1422
|
-
* @defaultValue 'theme'
|
|
1423
|
-
* @public
|
|
1421
|
+
/**
|
|
1422
|
+
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1423
|
+
* @defaultValue 'theme'
|
|
1424
|
+
* @public
|
|
1424
1425
|
*/ _define_property(this, "color", void 0);
|
|
1425
|
-
/**
|
|
1426
|
-
* 生效列字段
|
|
1426
|
+
/**
|
|
1427
|
+
* 生效列字段
|
|
1427
1428
|
*/ _define_property(this, "fieldCodes", void 0);
|
|
1428
|
-
/**
|
|
1429
|
-
* 样式类型,background单元格背景色,fontColor单元格字体色
|
|
1429
|
+
/**
|
|
1430
|
+
* 样式类型,background单元格背景色,fontColor单元格字体色
|
|
1430
1431
|
*/ _define_property(this, "type", void 0);
|
|
1431
|
-
/**
|
|
1432
|
-
* 作用范围,row整行,col整列
|
|
1432
|
+
/**
|
|
1433
|
+
* 作用范围,row整行,col整列
|
|
1433
1434
|
*/ _define_property(this, "scope", void 0);
|
|
1434
1435
|
var _props_type;
|
|
1435
1436
|
this.type = (_props_type = props.type) !== null && _props_type !== void 0 ? _props_type : 'background';
|