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