@byteluck-fe/model-driven-core 2.8.1-beta.18 → 2.8.1-beta.19
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 +11 -11
- package/dist/esm/common/BaseControl/property.js +11 -11
- package/dist/esm/common/ColumnControl/property.js +28 -28
- package/dist/esm/common/FormControl/property.js +44 -44
- package/dist/esm/framework/index.js +354 -354
- package/dist/types/api-doc-index.d.ts +4 -4
- package/dist/types/common/BaseControl/designer.d.ts +63 -63
- package/dist/types/common/BaseControl/index.d.ts +13 -13
- package/dist/types/common/BaseControl/property.d.ts +38 -38
- 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 +10 -10
- package/dist/types/common/ColumnControl/index.d.ts +12 -12
- package/dist/types/common/ColumnControl/property.d.ts +73 -73
- package/dist/types/common/ColumnControl/runtime.d.ts +10 -10
- 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 +880 -880
- 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
|
@@ -84,31 +84,31 @@ function _create_super(Derived) {
|
|
|
84
84
|
}
|
|
85
85
|
import { FieldTypes, genNonDuplicateId } from "@byteluck-fe/model-driven-shared";
|
|
86
86
|
export * from "./RegisterControls";
|
|
87
|
-
/**
|
|
88
|
-
* 数据绑定配置
|
|
89
|
-
* @public
|
|
87
|
+
/**
|
|
88
|
+
* 数据绑定配置
|
|
89
|
+
* @public
|
|
90
90
|
*/ export var DataBind = function DataBind(props) {
|
|
91
91
|
"use strict";
|
|
92
92
|
_class_call_check(this, DataBind);
|
|
93
|
-
/**
|
|
94
|
-
* 数据模型编码
|
|
95
|
-
* @defaultValue ''
|
|
96
|
-
* @public
|
|
93
|
+
/**
|
|
94
|
+
* 数据模型编码
|
|
95
|
+
* @defaultValue ''
|
|
96
|
+
* @public
|
|
97
97
|
*/ _define_property(this, "dataCode", void 0);
|
|
98
|
-
/**
|
|
99
|
-
* 字段编码
|
|
100
|
-
* @defaultValue ''
|
|
101
|
-
* @public
|
|
98
|
+
/**
|
|
99
|
+
* 字段编码
|
|
100
|
+
* @defaultValue ''
|
|
101
|
+
* @public
|
|
102
102
|
*/ _define_property(this, "fieldCode", void 0);
|
|
103
|
-
/**
|
|
104
|
-
* 字段类型
|
|
105
|
-
* @defaultValue ''
|
|
106
|
-
* @public
|
|
103
|
+
/**
|
|
104
|
+
* 字段类型
|
|
105
|
+
* @defaultValue ''
|
|
106
|
+
* @public
|
|
107
107
|
*/ _define_property(this, "fieldType", void 0);
|
|
108
|
-
/**
|
|
109
|
-
* 表别名
|
|
110
|
-
* @defaultValue undefined
|
|
111
|
-
* @public
|
|
108
|
+
/**
|
|
109
|
+
* 表别名
|
|
110
|
+
* @defaultValue undefined
|
|
111
|
+
* @public
|
|
112
112
|
*/ _define_property(this, "aliasCode", void 0);
|
|
113
113
|
var _props_dataCode;
|
|
114
114
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
|
|
@@ -197,15 +197,15 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
197
197
|
}
|
|
198
198
|
return FormSelectBind;
|
|
199
199
|
}(FormBind);
|
|
200
|
-
/**
|
|
201
|
-
* 列表绑定字段项
|
|
202
|
-
* @public
|
|
200
|
+
/**
|
|
201
|
+
* 列表绑定字段项
|
|
202
|
+
* @public
|
|
203
203
|
*/ var ListBindHeaderItem = function ListBindHeaderItem(props) {
|
|
204
204
|
"use strict";
|
|
205
205
|
_class_call_check(this, ListBindHeaderItem);
|
|
206
|
-
/**
|
|
207
|
-
* 字段
|
|
208
|
-
* @defaultValue ''
|
|
206
|
+
/**
|
|
207
|
+
* 字段
|
|
208
|
+
* @defaultValue ''
|
|
209
209
|
*/ _define_property(this, "fieldCode", void 0);
|
|
210
210
|
_define_property(this, "dataCode", void 0);
|
|
211
211
|
var _props_fieldCode;
|
|
@@ -213,23 +213,23 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
213
213
|
var _props_dataCode;
|
|
214
214
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
|
|
215
215
|
};
|
|
216
|
-
/**
|
|
217
|
-
* 列表绑定配置
|
|
216
|
+
/**
|
|
217
|
+
* 列表绑定配置
|
|
218
218
|
*/ export var ListBind = function ListBind(props) {
|
|
219
219
|
"use strict";
|
|
220
220
|
_class_call_check(this, ListBind);
|
|
221
221
|
var _props_headers;
|
|
222
|
-
/**
|
|
223
|
-
* 应用ID
|
|
224
|
-
* @public
|
|
222
|
+
/**
|
|
223
|
+
* 应用ID
|
|
224
|
+
* @public
|
|
225
225
|
*/ _define_property(this, "appId", void 0);
|
|
226
|
-
/**
|
|
227
|
-
* 表单ID
|
|
228
|
-
* @public
|
|
226
|
+
/**
|
|
227
|
+
* 表单ID
|
|
228
|
+
* @public
|
|
229
229
|
*/ _define_property(this, "formKey", void 0);
|
|
230
|
-
/**
|
|
231
|
-
* 显示字段
|
|
232
|
-
* @public
|
|
230
|
+
/**
|
|
231
|
+
* 显示字段
|
|
232
|
+
* @public
|
|
233
233
|
*/ _define_property(this, "headers", void 0);
|
|
234
234
|
var _props_appId;
|
|
235
235
|
this.appId = (_props_appId = props === null || props === void 0 ? void 0 : props.appId) !== null && _props_appId !== void 0 ? _props_appId : "";
|
|
@@ -318,36 +318,36 @@ export var RightVariable = function RightVariable(props) {
|
|
|
318
318
|
var _props_displayBos;
|
|
319
319
|
this.displayBos = (_props_displayBos = props === null || props === void 0 ? void 0 : props.displayBos) !== null && _props_displayBos !== void 0 ? _props_displayBos : [];
|
|
320
320
|
};
|
|
321
|
-
/**
|
|
322
|
-
* 连接符条件
|
|
323
|
-
* @public
|
|
321
|
+
/**
|
|
322
|
+
* 连接符条件
|
|
323
|
+
* @public
|
|
324
324
|
*/ export var FieldFilterConditions = function FieldFilterConditions(props) {
|
|
325
325
|
"use strict";
|
|
326
326
|
var _this = this;
|
|
327
327
|
_class_call_check(this, FieldFilterConditions);
|
|
328
|
-
/**
|
|
329
|
-
* 编号
|
|
330
|
-
* @defaultValue ''
|
|
328
|
+
/**
|
|
329
|
+
* 编号
|
|
330
|
+
* @defaultValue ''
|
|
331
331
|
*/ _define_property(this, "id", void 0);
|
|
332
|
-
/**
|
|
333
|
-
* 规则编号
|
|
334
|
-
* @defaultValue Timestamp
|
|
332
|
+
/**
|
|
333
|
+
* 规则编号
|
|
334
|
+
* @defaultValue Timestamp
|
|
335
335
|
*/ _define_property(this, "ruleId", void 0);
|
|
336
|
-
/**
|
|
337
|
-
* 类型:连接符条件
|
|
338
|
-
* @defaultValue 'conditions'
|
|
336
|
+
/**
|
|
337
|
+
* 类型:连接符条件
|
|
338
|
+
* @defaultValue 'conditions'
|
|
339
339
|
*/ _define_property(this, "type", "conditions");
|
|
340
|
-
/**
|
|
341
|
-
* 深度
|
|
342
|
-
* @defaultValue 0
|
|
340
|
+
/**
|
|
341
|
+
* 深度
|
|
342
|
+
* @defaultValue 0
|
|
343
343
|
*/ _define_property(this, "level", void 0);
|
|
344
|
-
/**
|
|
345
|
-
* 连接符值
|
|
346
|
-
* @defaultValue 'and'
|
|
344
|
+
/**
|
|
345
|
+
* 连接符值
|
|
346
|
+
* @defaultValue 'and'
|
|
347
347
|
*/ _define_property(this, "value", void 0);
|
|
348
|
-
/**
|
|
349
|
-
* 包含子项
|
|
350
|
-
* @defaultValue []
|
|
348
|
+
/**
|
|
349
|
+
* 包含子项
|
|
350
|
+
* @defaultValue []
|
|
351
351
|
*/ _define_property(this, "children", void 0);
|
|
352
352
|
var _props_id;
|
|
353
353
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
@@ -372,34 +372,34 @@ export var RightVariable = function RightVariable(props) {
|
|
|
372
372
|
});
|
|
373
373
|
}
|
|
374
374
|
};
|
|
375
|
-
/**
|
|
376
|
-
* 字段过滤条件
|
|
377
|
-
* @public
|
|
375
|
+
/**
|
|
376
|
+
* 字段过滤条件
|
|
377
|
+
* @public
|
|
378
378
|
*/ export var FieldFilterCondition = function FieldFilterCondition(props) {
|
|
379
379
|
"use strict";
|
|
380
380
|
_class_call_check(this, FieldFilterCondition);
|
|
381
|
-
/**
|
|
382
|
-
* 唯一编号
|
|
383
|
-
* @defaultValue ''
|
|
381
|
+
/**
|
|
382
|
+
* 唯一编号
|
|
383
|
+
* @defaultValue ''
|
|
384
384
|
*/ _define_property(this, "id", void 0);
|
|
385
|
-
/**
|
|
386
|
-
* 规则编号
|
|
387
|
-
* @defaultValue Timestamp
|
|
385
|
+
/**
|
|
386
|
+
* 规则编号
|
|
387
|
+
* @defaultValue Timestamp
|
|
388
388
|
*/ _define_property(this, "ruleId", void 0);
|
|
389
|
-
/**
|
|
390
|
-
* 类型
|
|
391
|
-
* @defaultValue 'condition'
|
|
389
|
+
/**
|
|
390
|
+
* 类型
|
|
391
|
+
* @defaultValue 'condition'
|
|
392
392
|
*/ _define_property(this, "type", "condition");
|
|
393
|
-
/**
|
|
394
|
-
* 符号
|
|
393
|
+
/**
|
|
394
|
+
* 符号
|
|
395
395
|
*/ _define_property(this, "symbol", void 0);
|
|
396
396
|
_define_property(this, "checked", void 0);
|
|
397
397
|
_define_property(this, "describe", void 0);
|
|
398
|
-
/**
|
|
399
|
-
* 左值
|
|
398
|
+
/**
|
|
399
|
+
* 左值
|
|
400
400
|
*/ _define_property(this, "leftVariableBo", void 0);
|
|
401
|
-
/**
|
|
402
|
-
* 右值
|
|
401
|
+
/**
|
|
402
|
+
* 右值
|
|
403
403
|
*/ _define_property(this, "rightVariableBo", void 0);
|
|
404
404
|
var _props_id;
|
|
405
405
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
@@ -426,31 +426,31 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
426
426
|
var _props_relationFields;
|
|
427
427
|
this.relationFields = (_props_relationFields = props === null || props === void 0 ? void 0 : props.relationFields) !== null && _props_relationFields !== void 0 ? _props_relationFields : [];
|
|
428
428
|
};
|
|
429
|
-
/**
|
|
430
|
-
* 数据填充项
|
|
431
|
-
* @public
|
|
429
|
+
/**
|
|
430
|
+
* 数据填充项
|
|
431
|
+
* @public
|
|
432
432
|
*/ export var MultistageFillingItem = function MultistageFillingItem(props) {
|
|
433
433
|
"use strict";
|
|
434
434
|
_class_call_check(this, MultistageFillingItem);
|
|
435
|
-
/**
|
|
436
|
-
* 控件ID
|
|
437
|
-
* @defaultValue ''
|
|
438
|
-
* @public
|
|
435
|
+
/**
|
|
436
|
+
* 控件ID
|
|
437
|
+
* @defaultValue ''
|
|
438
|
+
* @public
|
|
439
439
|
*/ _define_property(this, "controlId", void 0);
|
|
440
|
-
/**
|
|
441
|
-
* 字段
|
|
442
|
-
* @defaultValue ''
|
|
443
|
-
* @public
|
|
440
|
+
/**
|
|
441
|
+
* 字段
|
|
442
|
+
* @defaultValue ''
|
|
443
|
+
* @public
|
|
444
444
|
*/ _define_property(this, "fieldCode", void 0);
|
|
445
|
-
/**
|
|
446
|
-
* 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
|
|
447
|
-
* @defaultValue ''
|
|
448
|
-
* @public
|
|
445
|
+
/**
|
|
446
|
+
* 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
|
|
447
|
+
* @defaultValue ''
|
|
448
|
+
* @public
|
|
449
449
|
*/ _define_property(this, "fieldType", void 0);
|
|
450
|
-
/**
|
|
451
|
-
* 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
|
|
452
|
-
* @defaultValue ''
|
|
453
|
-
* @public
|
|
450
|
+
/**
|
|
451
|
+
* 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
|
|
452
|
+
* @defaultValue ''
|
|
453
|
+
* @public
|
|
454
454
|
* */ _define_property(this, "propName", void 0);
|
|
455
455
|
var _props_controlId;
|
|
456
456
|
this.controlId = (_props_controlId = props === null || props === void 0 ? void 0 : props.controlId) !== null && _props_controlId !== void 0 ? _props_controlId : "";
|
|
@@ -461,22 +461,22 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
461
461
|
var _props_propName;
|
|
462
462
|
this.propName = (_props_propName = props === null || props === void 0 ? void 0 : props.propName) !== null && _props_propName !== void 0 ? _props_propName : "";
|
|
463
463
|
};
|
|
464
|
-
/**
|
|
465
|
-
* 显示项
|
|
466
|
-
* @public
|
|
464
|
+
/**
|
|
465
|
+
* 显示项
|
|
466
|
+
* @public
|
|
467
467
|
*/ export var DisplayBoListItem = function DisplayBoListItem(props) {
|
|
468
468
|
"use strict";
|
|
469
469
|
_class_call_check(this, DisplayBoListItem);
|
|
470
|
-
/**
|
|
471
|
-
* 显示项类型:字段 | 符号
|
|
472
|
-
* @defaultValue 'FIELD'
|
|
473
|
-
* @public
|
|
470
|
+
/**
|
|
471
|
+
* 显示项类型:字段 | 符号
|
|
472
|
+
* @defaultValue 'FIELD'
|
|
473
|
+
* @public
|
|
474
474
|
*/ _define_property(this, "type", void 0);
|
|
475
|
-
/**
|
|
476
|
-
* 值
|
|
475
|
+
/**
|
|
476
|
+
* 值
|
|
477
477
|
*/ _define_property(this, "value", void 0);
|
|
478
|
-
/**
|
|
479
|
-
* 字段数据类型
|
|
478
|
+
/**
|
|
479
|
+
* 字段数据类型
|
|
480
480
|
*/ _define_property(this, "fieldType", void 0);
|
|
481
481
|
var _props_type;
|
|
482
482
|
this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : "FIELD";
|
|
@@ -484,19 +484,19 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
484
484
|
this.value = (_props_value = props === null || props === void 0 ? void 0 : props.value) !== null && _props_value !== void 0 ? _props_value : "";
|
|
485
485
|
this.fieldType = props === null || props === void 0 ? void 0 : props.fieldType;
|
|
486
486
|
};
|
|
487
|
-
/**
|
|
488
|
-
* 数据源排序项
|
|
489
|
-
* @public
|
|
487
|
+
/**
|
|
488
|
+
* 数据源排序项
|
|
489
|
+
* @public
|
|
490
490
|
*/ export var DataSourceOrderItem = function DataSourceOrderItem(props) {
|
|
491
491
|
"use strict";
|
|
492
492
|
_class_call_check(this, DataSourceOrderItem);
|
|
493
|
-
/**
|
|
494
|
-
* 列名
|
|
495
|
-
* @defaultValue ''
|
|
493
|
+
/**
|
|
494
|
+
* 列名
|
|
495
|
+
* @defaultValue ''
|
|
496
496
|
*/ _define_property(this, "columnName", void 0);
|
|
497
|
-
/**
|
|
498
|
-
* 倒序
|
|
499
|
-
* @defaultValue false
|
|
497
|
+
/**
|
|
498
|
+
* 倒序
|
|
499
|
+
* @defaultValue false
|
|
500
500
|
*/ _define_property(this, "desc", void 0);
|
|
501
501
|
var _props_columnName;
|
|
502
502
|
this.columnName = (_props_columnName = props.columnName) !== null && _props_columnName !== void 0 ? _props_columnName : "";
|
|
@@ -523,8 +523,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
523
523
|
"use strict";
|
|
524
524
|
_class_call_check(this, DataSourceParamItem);
|
|
525
525
|
var _props_orders, _props_dataSet;
|
|
526
|
-
/**
|
|
527
|
-
* 字段ID
|
|
526
|
+
/**
|
|
527
|
+
* 字段ID
|
|
528
528
|
*/ _define_property(this, "id", void 0);
|
|
529
529
|
_define_property(this, "limit", void 0);
|
|
530
530
|
_define_property(this, "orders", void 0);
|
|
@@ -546,8 +546,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
546
546
|
return new DataSourceDataSetValue(item);
|
|
547
547
|
})) !== null && _props_dataSet_map !== void 0 ? _props_dataSet_map : [];
|
|
548
548
|
};
|
|
549
|
-
/**
|
|
550
|
-
* 给filters和orders赋值
|
|
549
|
+
/**
|
|
550
|
+
* 给filters和orders赋值
|
|
551
551
|
* */ function callFiltersAndOrders(props) {
|
|
552
552
|
var _props_filters, _props_viewFilters, _props_orders;
|
|
553
553
|
var _props_filters_map;
|
|
@@ -570,68 +570,68 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
570
570
|
})) !== null && _props_orders_map !== void 0 ? _props_orders_map : [];
|
|
571
571
|
// }
|
|
572
572
|
}
|
|
573
|
-
/**
|
|
574
|
-
* 数据源绑定配置
|
|
575
|
-
* @public
|
|
573
|
+
/**
|
|
574
|
+
* 数据源绑定配置
|
|
575
|
+
* @public
|
|
576
576
|
*/ export var DataSourceBind = function DataSourceBind(props) {
|
|
577
577
|
"use strict";
|
|
578
578
|
var _this = this;
|
|
579
579
|
_class_call_check(this, DataSourceBind);
|
|
580
|
-
/**
|
|
581
|
-
* 绑定数据源id
|
|
582
|
-
* @defaultValue ''
|
|
583
|
-
* @public
|
|
580
|
+
/**
|
|
581
|
+
* 绑定数据源id
|
|
582
|
+
* @defaultValue ''
|
|
583
|
+
* @public
|
|
584
584
|
*/ _define_property(this, "dataCode", void 0);
|
|
585
|
-
/**
|
|
586
|
-
* 存储值
|
|
587
|
-
* @defaultValue ''
|
|
588
|
-
* @public
|
|
585
|
+
/**
|
|
586
|
+
* 存储值
|
|
587
|
+
* @defaultValue ''
|
|
588
|
+
* @public
|
|
589
589
|
*/ _define_property(this, "valueFieldCode", void 0);
|
|
590
|
-
/**
|
|
591
|
-
* 显示值
|
|
592
|
-
* @defaultValue []
|
|
593
|
-
* @public
|
|
590
|
+
/**
|
|
591
|
+
* 显示值
|
|
592
|
+
* @defaultValue []
|
|
593
|
+
* @public
|
|
594
594
|
*/ _define_property(this, "displayBoList", void 0);
|
|
595
|
-
/**
|
|
596
|
-
* 查询关键字参数映射
|
|
597
|
-
* @defaultValue ''
|
|
598
|
-
* @public
|
|
595
|
+
/**
|
|
596
|
+
* 查询关键字参数映射
|
|
597
|
+
* @defaultValue ''
|
|
598
|
+
* @public
|
|
599
599
|
*/ _define_property(this, "keywordMapping", void 0);
|
|
600
|
-
/**
|
|
601
|
-
* 绑定服务
|
|
602
|
-
* @defaultValue ''
|
|
603
|
-
* @public
|
|
600
|
+
/**
|
|
601
|
+
* 绑定服务
|
|
602
|
+
* @defaultValue ''
|
|
603
|
+
* @public
|
|
604
604
|
*/ _define_property(this, "svcCode", void 0);
|
|
605
|
-
/**
|
|
606
|
-
* 应用Id
|
|
607
|
-
* @defaultValue ''
|
|
608
|
-
* @public
|
|
605
|
+
/**
|
|
606
|
+
* 应用Id
|
|
607
|
+
* @defaultValue ''
|
|
608
|
+
* @public
|
|
609
609
|
*/ _define_property(this, "appId", void 0);
|
|
610
|
-
/**
|
|
611
|
-
* 过滤条件
|
|
612
|
-
* @defaultValue []
|
|
613
|
-
* @public
|
|
610
|
+
/**
|
|
611
|
+
* 过滤条件
|
|
612
|
+
* @defaultValue []
|
|
613
|
+
* @public
|
|
614
614
|
*/ _define_property(this, "filters", void 0);
|
|
615
615
|
// 过滤
|
|
616
|
-
/**
|
|
617
|
-
* 过滤条件-查看过滤
|
|
618
|
-
* @defaultValue []
|
|
619
|
-
* @public
|
|
616
|
+
/**
|
|
617
|
+
* 过滤条件-查看过滤
|
|
618
|
+
* @defaultValue []
|
|
619
|
+
* @public
|
|
620
620
|
*/ _define_property(this, "viewFilters", void 0);
|
|
621
|
-
/**
|
|
622
|
-
* 是否开启查看过滤
|
|
623
|
-
* @defaultValue 0:未开启;1:开启
|
|
624
|
-
* @public
|
|
621
|
+
/**
|
|
622
|
+
* 是否开启查看过滤
|
|
623
|
+
* @defaultValue 0:未开启;1:开启
|
|
624
|
+
* @public
|
|
625
625
|
*/ _define_property(this, "isOpenViewFilters", void 0);
|
|
626
|
-
/**
|
|
627
|
-
* 排序
|
|
628
|
-
* @defaultValue []
|
|
629
|
-
* @public
|
|
626
|
+
/**
|
|
627
|
+
* 排序
|
|
628
|
+
* @defaultValue []
|
|
629
|
+
* @public
|
|
630
630
|
*/ _define_property(this, "orders", void 0);
|
|
631
|
-
/**
|
|
632
|
-
* 显示排序
|
|
633
|
-
* @defaultValue true
|
|
634
|
-
* @public
|
|
631
|
+
/**
|
|
632
|
+
* 显示排序
|
|
633
|
+
* @defaultValue true
|
|
634
|
+
* @public
|
|
635
635
|
*/ _define_property(this, "showOrder", void 0);
|
|
636
636
|
var _props_dataCode;
|
|
637
637
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
|
|
@@ -659,15 +659,15 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
659
659
|
export var SelectedContentConfig = function SelectedContentConfig(props) {
|
|
660
660
|
"use strict";
|
|
661
661
|
_class_call_check(this, SelectedContentConfig);
|
|
662
|
-
/**
|
|
663
|
-
* 展示已选内容
|
|
664
|
-
* @defaultValue ''
|
|
665
|
-
* @public
|
|
662
|
+
/**
|
|
663
|
+
* 展示已选内容
|
|
664
|
+
* @defaultValue ''
|
|
665
|
+
* @public
|
|
666
666
|
*/ _define_property(this, "dataCode", void 0);
|
|
667
|
-
/**
|
|
668
|
-
* 展示已选明细
|
|
669
|
-
* @defaultValue []
|
|
670
|
-
* @public
|
|
667
|
+
/**
|
|
668
|
+
* 展示已选明细
|
|
669
|
+
* @defaultValue []
|
|
670
|
+
* @public
|
|
671
671
|
*/ _define_property(this, "displayBoList", void 0);
|
|
672
672
|
var _props_dataCode;
|
|
673
673
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
|
|
@@ -786,14 +786,14 @@ var FillBind = function FillBind(props) {
|
|
|
786
786
|
"use strict";
|
|
787
787
|
_class_call_check(this, FillBind);
|
|
788
788
|
var _props_fillList;
|
|
789
|
-
/*
|
|
790
|
-
* 需要被填充的数据源
|
|
789
|
+
/*
|
|
790
|
+
* 需要被填充的数据源
|
|
791
791
|
* */ _define_property(this, "dataCode", void 0);
|
|
792
|
-
/*
|
|
793
|
-
* appId
|
|
792
|
+
/*
|
|
793
|
+
* appId
|
|
794
794
|
* */ _define_property(this, "appId", void 0);
|
|
795
|
-
/*
|
|
796
|
-
* 执行填充的数据项和控件
|
|
795
|
+
/*
|
|
796
|
+
* 执行填充的数据项和控件
|
|
797
797
|
* */ _define_property(this, "fillList", void 0);
|
|
798
798
|
var _props_dataCode;
|
|
799
799
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
|
|
@@ -804,10 +804,10 @@ var FillBind = function FillBind(props) {
|
|
|
804
804
|
return new MultistageFillingItem(item);
|
|
805
805
|
})) !== null && _props_fillList_map !== void 0 ? _props_fillList_map : [];
|
|
806
806
|
};
|
|
807
|
-
/**
|
|
808
|
-
* FillPayloadBind 填充配置
|
|
809
|
-
* 填充的配置和需要携带的数据
|
|
810
|
-
* @public
|
|
807
|
+
/**
|
|
808
|
+
* FillPayloadBind 填充配置
|
|
809
|
+
* 填充的配置和需要携带的数据
|
|
810
|
+
* @public
|
|
811
811
|
* */ export var FillPayloadBind = /*#__PURE__*/ function(FillBind) {
|
|
812
812
|
"use strict";
|
|
813
813
|
_inherits(FillPayloadBind, FillBind);
|
|
@@ -816,29 +816,29 @@ var FillBind = function FillBind(props) {
|
|
|
816
816
|
_class_call_check(this, FillPayloadBind);
|
|
817
817
|
var _this;
|
|
818
818
|
_this = _super.call(this, props);
|
|
819
|
-
/**
|
|
820
|
-
* 数据源过滤条件
|
|
821
|
-
* @defaultValue []
|
|
822
|
-
* @public
|
|
819
|
+
/**
|
|
820
|
+
* 数据源过滤条件
|
|
821
|
+
* @defaultValue []
|
|
822
|
+
* @public
|
|
823
823
|
**/ _define_property(_assert_this_initialized(_this), "filters", void 0);
|
|
824
|
-
/**
|
|
825
|
-
* 数据源过滤条件-查看
|
|
826
|
-
* @defaultValue []
|
|
827
|
-
* @public
|
|
824
|
+
/**
|
|
825
|
+
* 数据源过滤条件-查看
|
|
826
|
+
* @defaultValue []
|
|
827
|
+
* @public
|
|
828
828
|
**/ _define_property(_assert_this_initialized(_this), "viewFilters", void 0);
|
|
829
|
-
/**
|
|
830
|
-
* 数据源排序条件
|
|
831
|
-
* @defaultValue []
|
|
832
|
-
* @public
|
|
829
|
+
/**
|
|
830
|
+
* 数据源排序条件
|
|
831
|
+
* @defaultValue []
|
|
832
|
+
* @public
|
|
833
833
|
**/ _define_property(_assert_this_initialized(_this), "orders", void 0);
|
|
834
834
|
callFiltersAndOrders.call(_assert_this_initialized(_this), props);
|
|
835
835
|
return _this;
|
|
836
836
|
}
|
|
837
837
|
return FillPayloadBind;
|
|
838
838
|
}(FillBind);
|
|
839
|
-
/**
|
|
840
|
-
* FillBackBind 回填需要的配置和参数
|
|
841
|
-
* @public
|
|
839
|
+
/**
|
|
840
|
+
* FillBackBind 回填需要的配置和参数
|
|
841
|
+
* @public
|
|
842
842
|
*/ export var FillBackBind = /*#__PURE__*/ function(FillBind) {
|
|
843
843
|
"use strict";
|
|
844
844
|
_inherits(FillBackBind, FillBind);
|
|
@@ -847,15 +847,15 @@ var FillBind = function FillBind(props) {
|
|
|
847
847
|
_class_call_check(this, FillBackBind);
|
|
848
848
|
var _this;
|
|
849
849
|
_this = _super.call(this, props);
|
|
850
|
-
/**
|
|
851
|
-
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
852
|
-
* @defaultValue 'current'
|
|
853
|
-
* @public
|
|
850
|
+
/**
|
|
851
|
+
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
852
|
+
* @defaultValue 'current'
|
|
853
|
+
* @public
|
|
854
854
|
* */ _define_property(_assert_this_initialized(_this), "mode", void 0);
|
|
855
|
-
/**
|
|
856
|
-
* 多选
|
|
857
|
-
* @defaultValue false
|
|
858
|
-
* @public
|
|
855
|
+
/**
|
|
856
|
+
* 多选
|
|
857
|
+
* @defaultValue false
|
|
858
|
+
* @public
|
|
859
859
|
*/ _define_property(_assert_this_initialized(_this), "multiple", void 0);
|
|
860
860
|
var _props_mode;
|
|
861
861
|
_this.mode = (_props_mode = props === null || props === void 0 ? void 0 : props.mode) !== null && _props_mode !== void 0 ? _props_mode : "current";
|
|
@@ -878,23 +878,23 @@ export var Language = function Language(props) {
|
|
|
878
878
|
var _props_ja;
|
|
879
879
|
this.ja = (_props_ja = props === null || props === void 0 ? void 0 : props.ja) !== null && _props_ja !== void 0 ? _props_ja : "";
|
|
880
880
|
};
|
|
881
|
-
/**
|
|
882
|
-
* 正则校验
|
|
883
|
-
* @public
|
|
881
|
+
/**
|
|
882
|
+
* 正则校验
|
|
883
|
+
* @public
|
|
884
884
|
*/ export var RegularRules = function RegularRules(props) {
|
|
885
885
|
"use strict";
|
|
886
886
|
_class_call_check(this, RegularRules);
|
|
887
|
-
/**
|
|
888
|
-
* 内置模版
|
|
889
|
-
* @defaultValue ''
|
|
887
|
+
/**
|
|
888
|
+
* 内置模版
|
|
889
|
+
* @defaultValue ''
|
|
890
890
|
*/ _define_property(this, "stencilName", void 0);
|
|
891
|
-
/**
|
|
892
|
-
* 正则表达式
|
|
893
|
-
* @defaultValue ''
|
|
891
|
+
/**
|
|
892
|
+
* 正则表达式
|
|
893
|
+
* @defaultValue ''
|
|
894
894
|
*/ _define_property(this, "expression", void 0);
|
|
895
|
-
/**
|
|
896
|
-
* 校验错误提示信息
|
|
897
|
-
* @defaultValue ''
|
|
895
|
+
/**
|
|
896
|
+
* 校验错误提示信息
|
|
897
|
+
* @defaultValue ''
|
|
898
898
|
*/ _define_property(this, "errMessage", void 0);
|
|
899
899
|
var _props_stencilName;
|
|
900
900
|
this.stencilName = (_props_stencilName = props === null || props === void 0 ? void 0 : props.stencilName) !== null && _props_stencilName !== void 0 ? _props_stencilName : "";
|
|
@@ -903,22 +903,22 @@ export var Language = function Language(props) {
|
|
|
903
903
|
var _props_errMessage;
|
|
904
904
|
this.errMessage = (_props_errMessage = props === null || props === void 0 ? void 0 : props.errMessage) !== null && _props_errMessage !== void 0 ? _props_errMessage : "";
|
|
905
905
|
};
|
|
906
|
-
/**
|
|
907
|
-
* 选项设置-自定义选项
|
|
908
|
-
* @public
|
|
906
|
+
/**
|
|
907
|
+
* 选项设置-自定义选项
|
|
908
|
+
* @public
|
|
909
909
|
*/ export var OptionSetting = function OptionSetting(props) {
|
|
910
910
|
"use strict";
|
|
911
911
|
_class_call_check(this, OptionSetting);
|
|
912
912
|
_define_property(this, "id", void 0);
|
|
913
|
-
/**
|
|
914
|
-
* 显示值
|
|
915
|
-
* @defaultValue ''
|
|
916
|
-
* @public
|
|
913
|
+
/**
|
|
914
|
+
* 显示值
|
|
915
|
+
* @defaultValue ''
|
|
916
|
+
* @public
|
|
917
917
|
*/ _define_property(this, "label", void 0);
|
|
918
|
-
/**
|
|
919
|
-
* 选项ID
|
|
920
|
-
* @defaultValue this.label
|
|
921
|
-
* @public
|
|
918
|
+
/**
|
|
919
|
+
* 选项ID
|
|
920
|
+
* @defaultValue this.label
|
|
921
|
+
* @public
|
|
922
922
|
*/ _define_property(this, "value", void 0);
|
|
923
923
|
var _props_id;
|
|
924
924
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
|
|
@@ -957,16 +957,16 @@ export function initImageOptions(options) {
|
|
|
957
957
|
return new ImageOptionSetting(item);
|
|
958
958
|
})) !== null && _options_map !== void 0 ? _options_map : [];
|
|
959
959
|
}
|
|
960
|
-
/**
|
|
961
|
-
* 对象类型数据绑定配置
|
|
962
|
-
* @public
|
|
960
|
+
/**
|
|
961
|
+
* 对象类型数据绑定配置
|
|
962
|
+
* @public
|
|
963
963
|
*/ export var ObjectDataBind = function ObjectDataBind() {
|
|
964
964
|
"use strict";
|
|
965
965
|
_class_call_check(this, ObjectDataBind);
|
|
966
966
|
};
|
|
967
|
-
/**
|
|
968
|
-
* 金额控件数据绑定配置
|
|
969
|
-
* @public
|
|
967
|
+
/**
|
|
968
|
+
* 金额控件数据绑定配置
|
|
969
|
+
* @public
|
|
970
970
|
*/ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
971
971
|
"use strict";
|
|
972
972
|
_inherits(AmountDataBind, ObjectDataBind);
|
|
@@ -975,11 +975,11 @@ export function initImageOptions(options) {
|
|
|
975
975
|
_class_call_check(this, AmountDataBind);
|
|
976
976
|
var _this;
|
|
977
977
|
_this = _super.call(this);
|
|
978
|
-
/**
|
|
979
|
-
* 金额字段绑定配置
|
|
978
|
+
/**
|
|
979
|
+
* 金额字段绑定配置
|
|
980
980
|
*/ _define_property(_assert_this_initialized(_this), "amount", void 0);
|
|
981
|
-
/**
|
|
982
|
-
* 币种字段绑定配置
|
|
981
|
+
/**
|
|
982
|
+
* 币种字段绑定配置
|
|
983
983
|
*/ _define_property(_assert_this_initialized(_this), "currency", void 0);
|
|
984
984
|
_this.amount = new DataBind(props === null || props === void 0 ? void 0 : props.amount);
|
|
985
985
|
_this.currency = new DataBind(props === null || props === void 0 ? void 0 : props.currency);
|
|
@@ -987,28 +987,28 @@ export function initImageOptions(options) {
|
|
|
987
987
|
}
|
|
988
988
|
return AmountDataBind;
|
|
989
989
|
}(ObjectDataBind);
|
|
990
|
-
/**
|
|
991
|
-
* 金额控件值
|
|
992
|
-
* @public
|
|
990
|
+
/**
|
|
991
|
+
* 金额控件值
|
|
992
|
+
* @public
|
|
993
993
|
*/ export var AmountValue = function AmountValue(props) {
|
|
994
994
|
"use strict";
|
|
995
995
|
_class_call_check(this, AmountValue);
|
|
996
|
-
/**
|
|
997
|
-
* 金额值
|
|
998
|
-
* @defaultValue ''
|
|
996
|
+
/**
|
|
997
|
+
* 金额值
|
|
998
|
+
* @defaultValue ''
|
|
999
999
|
*/ _define_property(this, "amount", void 0);
|
|
1000
|
-
/**
|
|
1001
|
-
* 货币值
|
|
1002
|
-
* @defaultValue 'CNY'
|
|
1000
|
+
/**
|
|
1001
|
+
* 货币值
|
|
1002
|
+
* @defaultValue 'CNY'
|
|
1003
1003
|
*/ _define_property(this, "currency", void 0);
|
|
1004
1004
|
var _props_amount;
|
|
1005
1005
|
this.amount = (_props_amount = props === null || props === void 0 ? void 0 : props.amount) !== null && _props_amount !== void 0 ? _props_amount : "";
|
|
1006
1006
|
var _props_currency;
|
|
1007
1007
|
this.currency = (_props_currency = props === null || props === void 0 ? void 0 : props.currency) !== null && _props_currency !== void 0 ? _props_currency : "CNY";
|
|
1008
1008
|
};
|
|
1009
|
-
/**
|
|
1010
|
-
* 日期区间数据绑定项
|
|
1011
|
-
* @public
|
|
1009
|
+
/**
|
|
1010
|
+
* 日期区间数据绑定项
|
|
1011
|
+
* @public
|
|
1012
1012
|
*/ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1013
1013
|
"use strict";
|
|
1014
1014
|
_inherits(RangeDataBind, ObjectDataBind);
|
|
@@ -1017,11 +1017,11 @@ export function initImageOptions(options) {
|
|
|
1017
1017
|
_class_call_check(this, RangeDataBind);
|
|
1018
1018
|
var _this;
|
|
1019
1019
|
_this = _super.call(this);
|
|
1020
|
-
/**
|
|
1021
|
-
* 开始日期字段绑定项
|
|
1020
|
+
/**
|
|
1021
|
+
* 开始日期字段绑定项
|
|
1022
1022
|
*/ _define_property(_assert_this_initialized(_this), "min", void 0);
|
|
1023
|
-
/**
|
|
1024
|
-
* 结束日期字段绑定项
|
|
1023
|
+
/**
|
|
1024
|
+
* 结束日期字段绑定项
|
|
1025
1025
|
*/ _define_property(_assert_this_initialized(_this), "max", void 0);
|
|
1026
1026
|
_this.min = new DataBind(props === null || props === void 0 ? void 0 : props.min);
|
|
1027
1027
|
_this.max = new DataBind(props === null || props === void 0 ? void 0 : props.max);
|
|
@@ -1029,54 +1029,54 @@ export function initImageOptions(options) {
|
|
|
1029
1029
|
}
|
|
1030
1030
|
return RangeDataBind;
|
|
1031
1031
|
}(ObjectDataBind);
|
|
1032
|
-
/**
|
|
1033
|
-
* 日期区间值
|
|
1034
|
-
* @public
|
|
1032
|
+
/**
|
|
1033
|
+
* 日期区间值
|
|
1034
|
+
* @public
|
|
1035
1035
|
*/ export var RangeDateValue = function RangeDateValue(props) {
|
|
1036
1036
|
"use strict";
|
|
1037
1037
|
_class_call_check(this, RangeDateValue);
|
|
1038
|
-
/**
|
|
1039
|
-
* 开始日期值
|
|
1040
|
-
* @defaultValue ''
|
|
1038
|
+
/**
|
|
1039
|
+
* 开始日期值
|
|
1040
|
+
* @defaultValue ''
|
|
1041
1041
|
*/ _define_property(this, "min", void 0);
|
|
1042
|
-
/**
|
|
1043
|
-
* 结束日期值
|
|
1044
|
-
* @defaultValue ''
|
|
1042
|
+
/**
|
|
1043
|
+
* 结束日期值
|
|
1044
|
+
* @defaultValue ''
|
|
1045
1045
|
*/ _define_property(this, "max", void 0);
|
|
1046
1046
|
var _props_min;
|
|
1047
1047
|
this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : "";
|
|
1048
1048
|
var _props_max;
|
|
1049
1049
|
this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : "";
|
|
1050
1050
|
};
|
|
1051
|
-
/**
|
|
1052
|
-
* 地址值
|
|
1053
|
-
* @public
|
|
1051
|
+
/**
|
|
1052
|
+
* 地址值
|
|
1053
|
+
* @public
|
|
1054
1054
|
*/ export var AddressValue = function AddressValue(props) {
|
|
1055
1055
|
"use strict";
|
|
1056
1056
|
_class_call_check(this, AddressValue);
|
|
1057
|
-
/**
|
|
1058
|
-
* 市编码
|
|
1059
|
-
* @defaultValue ''
|
|
1057
|
+
/**
|
|
1058
|
+
* 市编码
|
|
1059
|
+
* @defaultValue ''
|
|
1060
1060
|
*/ _define_property(this, "city", void 0);
|
|
1061
|
-
/**
|
|
1062
|
-
* 市显示文字
|
|
1063
|
-
* @defaultValue ''
|
|
1061
|
+
/**
|
|
1062
|
+
* 市显示文字
|
|
1063
|
+
* @defaultValue ''
|
|
1064
1064
|
*/ _define_property(this, "cityDisplay", void 0);
|
|
1065
|
-
/**
|
|
1066
|
-
* 区编码
|
|
1067
|
-
* @defaultValue ''
|
|
1065
|
+
/**
|
|
1066
|
+
* 区编码
|
|
1067
|
+
* @defaultValue ''
|
|
1068
1068
|
*/ _define_property(this, "district", void 0);
|
|
1069
|
-
/**
|
|
1070
|
-
* 区显示文字
|
|
1071
|
-
* @defaultValue ''
|
|
1069
|
+
/**
|
|
1070
|
+
* 区显示文字
|
|
1071
|
+
* @defaultValue ''
|
|
1072
1072
|
*/ _define_property(this, "districtDisplay", void 0);
|
|
1073
|
-
/**
|
|
1074
|
-
* 省编码
|
|
1075
|
-
* @defaultValue ''
|
|
1073
|
+
/**
|
|
1074
|
+
* 省编码
|
|
1075
|
+
* @defaultValue ''
|
|
1076
1076
|
*/ _define_property(this, "province", void 0);
|
|
1077
|
-
/**
|
|
1078
|
-
* 省显示文字
|
|
1079
|
-
* @defaultValue ''
|
|
1077
|
+
/**
|
|
1078
|
+
* 省显示文字
|
|
1079
|
+
* @defaultValue ''
|
|
1080
1080
|
*/ _define_property(this, "provinceDisplay", void 0);
|
|
1081
1081
|
var _props_city;
|
|
1082
1082
|
this.city = (_props_city = props === null || props === void 0 ? void 0 : props.city) !== null && _props_city !== void 0 ? _props_city : "";
|
|
@@ -1091,9 +1091,9 @@ export function initImageOptions(options) {
|
|
|
1091
1091
|
var _props_provinceDisplay;
|
|
1092
1092
|
this.provinceDisplay = (_props_provinceDisplay = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && _props_provinceDisplay !== void 0 ? _props_provinceDisplay : "";
|
|
1093
1093
|
};
|
|
1094
|
-
/**
|
|
1095
|
-
* 计算公式数据绑定项
|
|
1096
|
-
* @public
|
|
1094
|
+
/**
|
|
1095
|
+
* 计算公式数据绑定项
|
|
1096
|
+
* @public
|
|
1097
1097
|
*/ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1098
1098
|
"use strict";
|
|
1099
1099
|
_inherits(CalcDataBind, ObjectDataBind);
|
|
@@ -1102,11 +1102,11 @@ export function initImageOptions(options) {
|
|
|
1102
1102
|
_class_call_check(this, CalcDataBind);
|
|
1103
1103
|
var _this;
|
|
1104
1104
|
_this = _super.call(this);
|
|
1105
|
-
/**
|
|
1106
|
-
* 计算结果字段绑定项
|
|
1105
|
+
/**
|
|
1106
|
+
* 计算结果字段绑定项
|
|
1107
1107
|
*/ _define_property(_assert_this_initialized(_this), "result", void 0);
|
|
1108
|
-
/**
|
|
1109
|
-
* 单位字段绑定项
|
|
1108
|
+
/**
|
|
1109
|
+
* 单位字段绑定项
|
|
1110
1110
|
*/ _define_property(_assert_this_initialized(_this), "unit", void 0);
|
|
1111
1111
|
_this.result = new DataBind(props === null || props === void 0 ? void 0 : props.result);
|
|
1112
1112
|
_this.unit = new DataBind(props === null || props === void 0 ? void 0 : props.unit);
|
|
@@ -1114,19 +1114,19 @@ export function initImageOptions(options) {
|
|
|
1114
1114
|
}
|
|
1115
1115
|
return CalcDataBind;
|
|
1116
1116
|
}(ObjectDataBind);
|
|
1117
|
-
/**
|
|
1118
|
-
* 计算公式值
|
|
1119
|
-
* @public
|
|
1117
|
+
/**
|
|
1118
|
+
* 计算公式值
|
|
1119
|
+
* @public
|
|
1120
1120
|
*/ export var CalcValue = function CalcValue(props) {
|
|
1121
1121
|
"use strict";
|
|
1122
1122
|
_class_call_check(this, CalcValue);
|
|
1123
|
-
/**
|
|
1124
|
-
* 计算结果值
|
|
1125
|
-
* @defaultValue 0
|
|
1123
|
+
/**
|
|
1124
|
+
* 计算结果值
|
|
1125
|
+
* @defaultValue 0
|
|
1126
1126
|
*/ _define_property(this, "result", void 0);
|
|
1127
|
-
/**
|
|
1128
|
-
* 单位
|
|
1129
|
-
* @defaultValue ''
|
|
1127
|
+
/**
|
|
1128
|
+
* 单位
|
|
1129
|
+
* @defaultValue ''
|
|
1130
1130
|
*/ _define_property(this, "unit", void 0);
|
|
1131
1131
|
var _props_result;
|
|
1132
1132
|
this.result = (_props_result = props === null || props === void 0 ? void 0 : props.result) !== null && _props_result !== void 0 ? _props_result : 0;
|
|
@@ -1204,36 +1204,36 @@ export var PAGE_STATUS;
|
|
|
1204
1204
|
PAGE_STATUS[PAGE_STATUS["EDITABLE"] = 2] = "EDITABLE";
|
|
1205
1205
|
PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
|
|
1206
1206
|
})(PAGE_STATUS || (PAGE_STATUS = {}));
|
|
1207
|
-
/**
|
|
1208
|
-
* 操作按钮
|
|
1209
|
-
* @public
|
|
1207
|
+
/**
|
|
1208
|
+
* 操作按钮
|
|
1209
|
+
* @public
|
|
1210
1210
|
*/ export var OperationItem = function OperationItem(props) {
|
|
1211
1211
|
"use strict";
|
|
1212
1212
|
_class_call_check(this, OperationItem);
|
|
1213
|
-
/**
|
|
1214
|
-
* 是否显示
|
|
1215
|
-
* @defaultValue true
|
|
1216
|
-
* @public
|
|
1213
|
+
/**
|
|
1214
|
+
* 是否显示
|
|
1215
|
+
* @defaultValue true
|
|
1216
|
+
* @public
|
|
1217
1217
|
*/ _define_property(this, "isShow", void 0);
|
|
1218
|
-
/**
|
|
1219
|
-
* 优先访问流程表单
|
|
1220
|
-
* @defaultValue false
|
|
1221
|
-
* @public
|
|
1218
|
+
/**
|
|
1219
|
+
* 优先访问流程表单
|
|
1220
|
+
* @defaultValue false
|
|
1221
|
+
* @public
|
|
1222
1222
|
*/ _define_property(this, "priorityProcess", void 0);
|
|
1223
|
-
/**
|
|
1224
|
-
* 表单ID
|
|
1225
|
-
* @defaultValue ''
|
|
1226
|
-
* @public
|
|
1223
|
+
/**
|
|
1224
|
+
* 表单ID
|
|
1225
|
+
* @defaultValue ''
|
|
1226
|
+
* @public
|
|
1227
1227
|
*/ _define_property(this, "formKey", void 0);
|
|
1228
|
-
/**
|
|
1229
|
-
* 显示文字
|
|
1230
|
-
* @defaultValue ''
|
|
1231
|
-
* @public
|
|
1228
|
+
/**
|
|
1229
|
+
* 显示文字
|
|
1230
|
+
* @defaultValue ''
|
|
1231
|
+
* @public
|
|
1232
1232
|
*/ _define_property(this, "content", void 0);
|
|
1233
|
-
/**
|
|
1234
|
-
* 打开方式
|
|
1235
|
-
* @defaultValue 'modal'
|
|
1236
|
-
* @public
|
|
1233
|
+
/**
|
|
1234
|
+
* 打开方式
|
|
1235
|
+
* @defaultValue 'modal'
|
|
1236
|
+
* @public
|
|
1237
1237
|
*/ _define_property(this, "openType", void 0);
|
|
1238
1238
|
_define_property(this, "type", void 0);
|
|
1239
1239
|
var _props_isShow;
|
|
@@ -1268,16 +1268,16 @@ export var ViewOperationItem = function ViewOperationItem(props) {
|
|
|
1268
1268
|
})) !== null && _props_headers_map !== void 0 ? _props_headers_map : [];
|
|
1269
1269
|
callFiltersAndOrders.call(this, props);
|
|
1270
1270
|
};
|
|
1271
|
-
/**
|
|
1272
|
-
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1271
|
+
/**
|
|
1272
|
+
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1273
1273
|
*/ export var CustomPermissionItem = function CustomPermissionItem(props) {
|
|
1274
1274
|
"use strict";
|
|
1275
1275
|
_class_call_check(this, CustomPermissionItem);
|
|
1276
|
-
/**
|
|
1277
|
-
* 人工输入的权限key
|
|
1276
|
+
/**
|
|
1277
|
+
* 人工输入的权限key
|
|
1278
1278
|
*/ _define_property(this, "key", void 0);
|
|
1279
|
-
/**
|
|
1280
|
-
* 权限名称
|
|
1279
|
+
/**
|
|
1280
|
+
* 权限名称
|
|
1281
1281
|
*/ _define_property(this, "caption", void 0);
|
|
1282
1282
|
var _props_key;
|
|
1283
1283
|
this.key = (_props_key = props.key) !== null && _props_key !== void 0 ? _props_key : genNonDuplicateId(8);
|
|
@@ -1303,15 +1303,15 @@ export var BaseStyle = function BaseStyle(props) {
|
|
|
1303
1303
|
export var OptObject = function OptObject(props) {
|
|
1304
1304
|
"use strict";
|
|
1305
1305
|
_class_call_check(this, OptObject);
|
|
1306
|
-
/**
|
|
1307
|
-
* 操作项编码
|
|
1308
|
-
* @defaultValue ''
|
|
1309
|
-
* @public
|
|
1306
|
+
/**
|
|
1307
|
+
* 操作项编码
|
|
1308
|
+
* @defaultValue ''
|
|
1309
|
+
* @public
|
|
1310
1310
|
*/ _define_property(this, "optCode", void 0);
|
|
1311
|
-
/**
|
|
1312
|
-
* 操作项类型
|
|
1313
|
-
* @defaultValue ''
|
|
1314
|
-
* @public
|
|
1311
|
+
/**
|
|
1312
|
+
* 操作项类型
|
|
1313
|
+
* @defaultValue ''
|
|
1314
|
+
* @public
|
|
1315
1315
|
*/ _define_property(this, "optType", void 0);
|
|
1316
1316
|
var _props_optCode;
|
|
1317
1317
|
this.optCode = (_props_optCode = props === null || props === void 0 ? void 0 : props.optCode) !== null && _props_optCode !== void 0 ? _props_optCode : "";
|
|
@@ -1322,25 +1322,25 @@ export var RowStyleRule = function RowStyleRule(props) {
|
|
|
1322
1322
|
"use strict";
|
|
1323
1323
|
_class_call_check(this, RowStyleRule);
|
|
1324
1324
|
var _props_filters;
|
|
1325
|
-
/**
|
|
1326
|
-
* 规则编号
|
|
1327
|
-
* @defaultValue guid
|
|
1328
|
-
* @public
|
|
1325
|
+
/**
|
|
1326
|
+
* 规则编号
|
|
1327
|
+
* @defaultValue guid
|
|
1328
|
+
* @public
|
|
1329
1329
|
*/ _define_property(this, "id", void 0);
|
|
1330
|
-
/**
|
|
1331
|
-
* 规则名称
|
|
1332
|
-
* @defaultValue ''
|
|
1333
|
-
* @public
|
|
1330
|
+
/**
|
|
1331
|
+
* 规则名称
|
|
1332
|
+
* @defaultValue ''
|
|
1333
|
+
* @public
|
|
1334
1334
|
*/ _define_property(this, "name", void 0);
|
|
1335
|
-
/**
|
|
1336
|
-
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1337
|
-
* @defaultValue 'theme'
|
|
1338
|
-
* @public
|
|
1335
|
+
/**
|
|
1336
|
+
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1337
|
+
* @defaultValue 'theme'
|
|
1338
|
+
* @public
|
|
1339
1339
|
*/ _define_property(this, "color", void 0);
|
|
1340
|
-
/**
|
|
1341
|
-
* 过滤条件
|
|
1342
|
-
* @defaultValue []
|
|
1343
|
-
* @public
|
|
1340
|
+
/**
|
|
1341
|
+
* 过滤条件
|
|
1342
|
+
* @defaultValue []
|
|
1343
|
+
* @public
|
|
1344
1344
|
*/ _define_property(this, "filters", void 0);
|
|
1345
1345
|
var _props_id;
|
|
1346
1346
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|