@byteluck-fe/model-driven-core 4.34.0-lx2 → 4.34.0-lx3
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 +23 -29
- 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 +56 -56
- package/dist/esm/common/LayoutControl/designer.js +6 -10
- package/dist/esm/common/ListControl/designer.js +6 -10
- package/dist/esm/framework/index.js +372 -363
- 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 +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 +118 -118
- 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 +886 -886
- 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 +2 -2
|
@@ -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 : '';
|
|
@@ -184,15 +184,15 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
184
184
|
}
|
|
185
185
|
return FormSelectBind;
|
|
186
186
|
}(FormBind);
|
|
187
|
-
/**
|
|
188
|
-
* 列表绑定字段项
|
|
189
|
-
* @public
|
|
187
|
+
/**
|
|
188
|
+
* 列表绑定字段项
|
|
189
|
+
* @public
|
|
190
190
|
*/ var ListBindHeaderItem = function ListBindHeaderItem(props) {
|
|
191
191
|
"use strict";
|
|
192
192
|
_class_call_check(this, ListBindHeaderItem);
|
|
193
|
-
/**
|
|
194
|
-
* 字段
|
|
195
|
-
* @defaultValue ''
|
|
193
|
+
/**
|
|
194
|
+
* 字段
|
|
195
|
+
* @defaultValue ''
|
|
196
196
|
*/ _define_property(this, "fieldCode", void 0);
|
|
197
197
|
_define_property(this, "dataCode", void 0);
|
|
198
198
|
var _props_fieldCode;
|
|
@@ -200,23 +200,23 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
|
|
|
200
200
|
var _props_dataCode;
|
|
201
201
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
202
202
|
};
|
|
203
|
-
/**
|
|
204
|
-
* 列表绑定配置
|
|
203
|
+
/**
|
|
204
|
+
* 列表绑定配置
|
|
205
205
|
*/ export var ListBind = function ListBind(props) {
|
|
206
206
|
"use strict";
|
|
207
207
|
_class_call_check(this, ListBind);
|
|
208
208
|
var _props_headers;
|
|
209
|
-
/**
|
|
210
|
-
* 应用ID
|
|
211
|
-
* @public
|
|
209
|
+
/**
|
|
210
|
+
* 应用ID
|
|
211
|
+
* @public
|
|
212
212
|
*/ _define_property(this, "appId", void 0);
|
|
213
|
-
/**
|
|
214
|
-
* 表单ID
|
|
215
|
-
* @public
|
|
213
|
+
/**
|
|
214
|
+
* 表单ID
|
|
215
|
+
* @public
|
|
216
216
|
*/ _define_property(this, "formKey", void 0);
|
|
217
|
-
/**
|
|
218
|
-
* 显示字段
|
|
219
|
-
* @public
|
|
217
|
+
/**
|
|
218
|
+
* 显示字段
|
|
219
|
+
* @public
|
|
220
220
|
*/ _define_property(this, "headers", void 0);
|
|
221
221
|
var _props_appId;
|
|
222
222
|
this.appId = (_props_appId = props === null || props === void 0 ? void 0 : props.appId) !== null && _props_appId !== void 0 ? _props_appId : '';
|
|
@@ -302,36 +302,36 @@ export var RightVariable = function RightVariable(props) {
|
|
|
302
302
|
var _props_displayBos;
|
|
303
303
|
this.displayBos = (_props_displayBos = props === null || props === void 0 ? void 0 : props.displayBos) !== null && _props_displayBos !== void 0 ? _props_displayBos : [];
|
|
304
304
|
};
|
|
305
|
-
/**
|
|
306
|
-
* 连接符条件
|
|
307
|
-
* @public
|
|
305
|
+
/**
|
|
306
|
+
* 连接符条件
|
|
307
|
+
* @public
|
|
308
308
|
*/ export var FieldFilterConditions = function FieldFilterConditions(props) {
|
|
309
309
|
"use strict";
|
|
310
310
|
var _this = this;
|
|
311
311
|
_class_call_check(this, FieldFilterConditions);
|
|
312
|
-
/**
|
|
313
|
-
* 编号
|
|
314
|
-
* @defaultValue ''
|
|
312
|
+
/**
|
|
313
|
+
* 编号
|
|
314
|
+
* @defaultValue ''
|
|
315
315
|
*/ _define_property(this, "id", void 0);
|
|
316
|
-
/**
|
|
317
|
-
* 规则编号
|
|
318
|
-
* @defaultValue Timestamp
|
|
316
|
+
/**
|
|
317
|
+
* 规则编号
|
|
318
|
+
* @defaultValue Timestamp
|
|
319
319
|
*/ _define_property(this, "ruleId", void 0);
|
|
320
|
-
/**
|
|
321
|
-
* 类型:连接符条件
|
|
322
|
-
* @defaultValue 'conditions'
|
|
320
|
+
/**
|
|
321
|
+
* 类型:连接符条件
|
|
322
|
+
* @defaultValue 'conditions'
|
|
323
323
|
*/ _define_property(this, "type", 'conditions');
|
|
324
|
-
/**
|
|
325
|
-
* 深度
|
|
326
|
-
* @defaultValue 0
|
|
324
|
+
/**
|
|
325
|
+
* 深度
|
|
326
|
+
* @defaultValue 0
|
|
327
327
|
*/ _define_property(this, "level", void 0);
|
|
328
|
-
/**
|
|
329
|
-
* 连接符值
|
|
330
|
-
* @defaultValue 'and'
|
|
328
|
+
/**
|
|
329
|
+
* 连接符值
|
|
330
|
+
* @defaultValue 'and'
|
|
331
331
|
*/ _define_property(this, "value", void 0);
|
|
332
|
-
/**
|
|
333
|
-
* 包含子项
|
|
334
|
-
* @defaultValue []
|
|
332
|
+
/**
|
|
333
|
+
* 包含子项
|
|
334
|
+
* @defaultValue []
|
|
335
335
|
*/ _define_property(this, "children", void 0);
|
|
336
336
|
var _props_id;
|
|
337
337
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
@@ -356,34 +356,34 @@ export var RightVariable = function RightVariable(props) {
|
|
|
356
356
|
});
|
|
357
357
|
}
|
|
358
358
|
};
|
|
359
|
-
/**
|
|
360
|
-
* 字段过滤条件
|
|
361
|
-
* @public
|
|
359
|
+
/**
|
|
360
|
+
* 字段过滤条件
|
|
361
|
+
* @public
|
|
362
362
|
*/ export var FieldFilterCondition = function FieldFilterCondition(props) {
|
|
363
363
|
"use strict";
|
|
364
364
|
_class_call_check(this, FieldFilterCondition);
|
|
365
|
-
/**
|
|
366
|
-
* 唯一编号
|
|
367
|
-
* @defaultValue ''
|
|
365
|
+
/**
|
|
366
|
+
* 唯一编号
|
|
367
|
+
* @defaultValue ''
|
|
368
368
|
*/ _define_property(this, "id", void 0);
|
|
369
|
-
/**
|
|
370
|
-
* 规则编号
|
|
371
|
-
* @defaultValue Timestamp
|
|
369
|
+
/**
|
|
370
|
+
* 规则编号
|
|
371
|
+
* @defaultValue Timestamp
|
|
372
372
|
*/ _define_property(this, "ruleId", void 0);
|
|
373
|
-
/**
|
|
374
|
-
* 类型
|
|
375
|
-
* @defaultValue 'condition'
|
|
373
|
+
/**
|
|
374
|
+
* 类型
|
|
375
|
+
* @defaultValue 'condition'
|
|
376
376
|
*/ _define_property(this, "type", 'condition');
|
|
377
|
-
/**
|
|
378
|
-
* 符号
|
|
377
|
+
/**
|
|
378
|
+
* 符号
|
|
379
379
|
*/ _define_property(this, "symbol", void 0);
|
|
380
380
|
_define_property(this, "checked", void 0);
|
|
381
381
|
_define_property(this, "describe", void 0);
|
|
382
|
-
/**
|
|
383
|
-
* 左值
|
|
382
|
+
/**
|
|
383
|
+
* 左值
|
|
384
384
|
*/ _define_property(this, "leftVariableBo", void 0);
|
|
385
|
-
/**
|
|
386
|
-
* 右值
|
|
385
|
+
/**
|
|
386
|
+
* 右值
|
|
387
387
|
*/ _define_property(this, "rightVariableBo", void 0);
|
|
388
388
|
var _props_id;
|
|
389
389
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|
|
@@ -410,31 +410,31 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
410
410
|
var _props_relationFields;
|
|
411
411
|
this.relationFields = (_props_relationFields = props === null || props === void 0 ? void 0 : props.relationFields) !== null && _props_relationFields !== void 0 ? _props_relationFields : [];
|
|
412
412
|
};
|
|
413
|
-
/**
|
|
414
|
-
* 数据填充项
|
|
415
|
-
* @public
|
|
413
|
+
/**
|
|
414
|
+
* 数据填充项
|
|
415
|
+
* @public
|
|
416
416
|
*/ export var MultistageFillingItem = function MultistageFillingItem(props) {
|
|
417
417
|
"use strict";
|
|
418
418
|
_class_call_check(this, MultistageFillingItem);
|
|
419
|
-
/**
|
|
420
|
-
* 控件ID
|
|
421
|
-
* @defaultValue ''
|
|
422
|
-
* @public
|
|
419
|
+
/**
|
|
420
|
+
* 控件ID
|
|
421
|
+
* @defaultValue ''
|
|
422
|
+
* @public
|
|
423
423
|
*/ _define_property(this, "controlId", void 0);
|
|
424
|
-
/**
|
|
425
|
-
* 字段
|
|
426
|
-
* @defaultValue ''
|
|
427
|
-
* @public
|
|
424
|
+
/**
|
|
425
|
+
* 字段
|
|
426
|
+
* @defaultValue ''
|
|
427
|
+
* @public
|
|
428
428
|
*/ _define_property(this, "fieldCode", void 0);
|
|
429
|
-
/**
|
|
430
|
-
* 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
|
|
431
|
-
* @defaultValue ''
|
|
432
|
-
* @public
|
|
429
|
+
/**
|
|
430
|
+
* 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
|
|
431
|
+
* @defaultValue ''
|
|
432
|
+
* @public
|
|
433
433
|
*/ _define_property(this, "fieldType", void 0);
|
|
434
|
-
/**
|
|
435
|
-
* 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
|
|
436
|
-
* @defaultValue ''
|
|
437
|
-
* @public
|
|
434
|
+
/**
|
|
435
|
+
* 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
|
|
436
|
+
* @defaultValue ''
|
|
437
|
+
* @public
|
|
438
438
|
* */ _define_property(this, "propName", void 0);
|
|
439
439
|
var _props_controlId;
|
|
440
440
|
this.controlId = (_props_controlId = props === null || props === void 0 ? void 0 : props.controlId) !== null && _props_controlId !== void 0 ? _props_controlId : '';
|
|
@@ -445,22 +445,22 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
445
445
|
var _props_propName;
|
|
446
446
|
this.propName = (_props_propName = props === null || props === void 0 ? void 0 : props.propName) !== null && _props_propName !== void 0 ? _props_propName : '';
|
|
447
447
|
};
|
|
448
|
-
/**
|
|
449
|
-
* 显示项
|
|
450
|
-
* @public
|
|
448
|
+
/**
|
|
449
|
+
* 显示项
|
|
450
|
+
* @public
|
|
451
451
|
*/ export var DisplayBoListItem = function DisplayBoListItem(props) {
|
|
452
452
|
"use strict";
|
|
453
453
|
_class_call_check(this, DisplayBoListItem);
|
|
454
|
-
/**
|
|
455
|
-
* 显示项类型:字段 | 符号
|
|
456
|
-
* @defaultValue 'FIELD'
|
|
457
|
-
* @public
|
|
454
|
+
/**
|
|
455
|
+
* 显示项类型:字段 | 符号
|
|
456
|
+
* @defaultValue 'FIELD'
|
|
457
|
+
* @public
|
|
458
458
|
*/ _define_property(this, "type", void 0);
|
|
459
|
-
/**
|
|
460
|
-
* 值
|
|
459
|
+
/**
|
|
460
|
+
* 值
|
|
461
461
|
*/ _define_property(this, "value", void 0);
|
|
462
|
-
/**
|
|
463
|
-
* 字段数据类型
|
|
462
|
+
/**
|
|
463
|
+
* 字段数据类型
|
|
464
464
|
*/ _define_property(this, "fieldType", void 0);
|
|
465
465
|
var _props_type;
|
|
466
466
|
this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : 'FIELD';
|
|
@@ -468,19 +468,19 @@ export var JoinRelation = function JoinRelation(props) {
|
|
|
468
468
|
this.value = (_props_value = props === null || props === void 0 ? void 0 : props.value) !== null && _props_value !== void 0 ? _props_value : '';
|
|
469
469
|
this.fieldType = props === null || props === void 0 ? void 0 : props.fieldType;
|
|
470
470
|
};
|
|
471
|
-
/**
|
|
472
|
-
* 数据源排序项
|
|
473
|
-
* @public
|
|
471
|
+
/**
|
|
472
|
+
* 数据源排序项
|
|
473
|
+
* @public
|
|
474
474
|
*/ export var DataSourceOrderItem = function DataSourceOrderItem(props) {
|
|
475
475
|
"use strict";
|
|
476
476
|
_class_call_check(this, DataSourceOrderItem);
|
|
477
|
-
/**
|
|
478
|
-
* 列名
|
|
479
|
-
* @defaultValue ''
|
|
477
|
+
/**
|
|
478
|
+
* 列名
|
|
479
|
+
* @defaultValue ''
|
|
480
480
|
*/ _define_property(this, "columnName", void 0);
|
|
481
|
-
/**
|
|
482
|
-
* 倒序
|
|
483
|
-
* @defaultValue false
|
|
481
|
+
/**
|
|
482
|
+
* 倒序
|
|
483
|
+
* @defaultValue false
|
|
484
484
|
*/ _define_property(this, "desc", void 0);
|
|
485
485
|
var _props_columnName;
|
|
486
486
|
this.columnName = (_props_columnName = props.columnName) !== null && _props_columnName !== void 0 ? _props_columnName : '';
|
|
@@ -507,8 +507,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
507
507
|
"use strict";
|
|
508
508
|
_class_call_check(this, DataSourceParamItem);
|
|
509
509
|
var _props_orders, _props_dataSet;
|
|
510
|
-
/**
|
|
511
|
-
* 字段ID
|
|
510
|
+
/**
|
|
511
|
+
* 字段ID
|
|
512
512
|
*/ _define_property(this, "id", void 0);
|
|
513
513
|
_define_property(this, "limit", void 0);
|
|
514
514
|
_define_property(this, "orders", void 0);
|
|
@@ -530,8 +530,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
530
530
|
return new DataSourceDataSetValue(item);
|
|
531
531
|
})) !== null && _props_dataSet_map !== void 0 ? _props_dataSet_map : [];
|
|
532
532
|
};
|
|
533
|
-
/**
|
|
534
|
-
* 给filters和orders赋值
|
|
533
|
+
/**
|
|
534
|
+
* 给filters和orders赋值
|
|
535
535
|
* */ function callFiltersAndOrders(props) {
|
|
536
536
|
var _props_filters, _props_viewFilters, _props_orders;
|
|
537
537
|
var _props_filters_map;
|
|
@@ -554,68 +554,68 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
554
554
|
})) !== null && _props_orders_map !== void 0 ? _props_orders_map : [];
|
|
555
555
|
// }
|
|
556
556
|
}
|
|
557
|
-
/**
|
|
558
|
-
* 数据源绑定配置
|
|
559
|
-
* @public
|
|
557
|
+
/**
|
|
558
|
+
* 数据源绑定配置
|
|
559
|
+
* @public
|
|
560
560
|
*/ export var DataSourceBind = function DataSourceBind(props) {
|
|
561
561
|
"use strict";
|
|
562
562
|
var _this = this;
|
|
563
563
|
_class_call_check(this, DataSourceBind);
|
|
564
|
-
/**
|
|
565
|
-
* 绑定数据源id
|
|
566
|
-
* @defaultValue ''
|
|
567
|
-
* @public
|
|
564
|
+
/**
|
|
565
|
+
* 绑定数据源id
|
|
566
|
+
* @defaultValue ''
|
|
567
|
+
* @public
|
|
568
568
|
*/ _define_property(this, "dataCode", void 0);
|
|
569
|
-
/**
|
|
570
|
-
* 存储值
|
|
571
|
-
* @defaultValue ''
|
|
572
|
-
* @public
|
|
569
|
+
/**
|
|
570
|
+
* 存储值
|
|
571
|
+
* @defaultValue ''
|
|
572
|
+
* @public
|
|
573
573
|
*/ _define_property(this, "valueFieldCode", void 0);
|
|
574
|
-
/**
|
|
575
|
-
* 显示值
|
|
576
|
-
* @defaultValue []
|
|
577
|
-
* @public
|
|
574
|
+
/**
|
|
575
|
+
* 显示值
|
|
576
|
+
* @defaultValue []
|
|
577
|
+
* @public
|
|
578
578
|
*/ _define_property(this, "displayBoList", void 0);
|
|
579
|
-
/**
|
|
580
|
-
* 查询关键字参数映射
|
|
581
|
-
* @defaultValue ''
|
|
582
|
-
* @public
|
|
579
|
+
/**
|
|
580
|
+
* 查询关键字参数映射
|
|
581
|
+
* @defaultValue ''
|
|
582
|
+
* @public
|
|
583
583
|
*/ _define_property(this, "keywordMapping", void 0);
|
|
584
|
-
/**
|
|
585
|
-
* 绑定服务
|
|
586
|
-
* @defaultValue ''
|
|
587
|
-
* @public
|
|
584
|
+
/**
|
|
585
|
+
* 绑定服务
|
|
586
|
+
* @defaultValue ''
|
|
587
|
+
* @public
|
|
588
588
|
*/ _define_property(this, "svcCode", void 0);
|
|
589
|
-
/**
|
|
590
|
-
* 应用Id
|
|
591
|
-
* @defaultValue ''
|
|
592
|
-
* @public
|
|
589
|
+
/**
|
|
590
|
+
* 应用Id
|
|
591
|
+
* @defaultValue ''
|
|
592
|
+
* @public
|
|
593
593
|
*/ _define_property(this, "appId", void 0);
|
|
594
|
-
/**
|
|
595
|
-
* 过滤条件
|
|
596
|
-
* @defaultValue []
|
|
597
|
-
* @public
|
|
594
|
+
/**
|
|
595
|
+
* 过滤条件
|
|
596
|
+
* @defaultValue []
|
|
597
|
+
* @public
|
|
598
598
|
*/ _define_property(this, "filters", void 0);
|
|
599
599
|
// 过滤
|
|
600
|
-
/**
|
|
601
|
-
* 过滤条件-查看过滤
|
|
602
|
-
* @defaultValue []
|
|
603
|
-
* @public
|
|
600
|
+
/**
|
|
601
|
+
* 过滤条件-查看过滤
|
|
602
|
+
* @defaultValue []
|
|
603
|
+
* @public
|
|
604
604
|
*/ _define_property(this, "viewFilters", void 0);
|
|
605
|
-
/**
|
|
606
|
-
* 是否开启查看过滤
|
|
607
|
-
* @defaultValue 0:未开启;1:开启
|
|
608
|
-
* @public
|
|
605
|
+
/**
|
|
606
|
+
* 是否开启查看过滤
|
|
607
|
+
* @defaultValue 0:未开启;1:开启
|
|
608
|
+
* @public
|
|
609
609
|
*/ _define_property(this, "isOpenViewFilters", void 0);
|
|
610
|
-
/**
|
|
611
|
-
* 排序
|
|
612
|
-
* @defaultValue []
|
|
613
|
-
* @public
|
|
610
|
+
/**
|
|
611
|
+
* 排序
|
|
612
|
+
* @defaultValue []
|
|
613
|
+
* @public
|
|
614
614
|
*/ _define_property(this, "orders", void 0);
|
|
615
|
-
/**
|
|
616
|
-
* 显示排序
|
|
617
|
-
* @defaultValue true
|
|
618
|
-
* @public
|
|
615
|
+
/**
|
|
616
|
+
* 显示排序
|
|
617
|
+
* @defaultValue true
|
|
618
|
+
* @public
|
|
619
619
|
*/ _define_property(this, "showOrder", void 0);
|
|
620
620
|
var _props_dataCode;
|
|
621
621
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -643,15 +643,15 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
643
643
|
export var SelectedContentConfig = function SelectedContentConfig(props) {
|
|
644
644
|
"use strict";
|
|
645
645
|
_class_call_check(this, SelectedContentConfig);
|
|
646
|
-
/**
|
|
647
|
-
* 展示已选内容
|
|
648
|
-
* @defaultValue ''
|
|
649
|
-
* @public
|
|
646
|
+
/**
|
|
647
|
+
* 展示已选内容
|
|
648
|
+
* @defaultValue ''
|
|
649
|
+
* @public
|
|
650
650
|
*/ _define_property(this, "dataCode", void 0);
|
|
651
|
-
/**
|
|
652
|
-
* 展示已选明细
|
|
653
|
-
* @defaultValue []
|
|
654
|
-
* @public
|
|
651
|
+
/**
|
|
652
|
+
* 展示已选明细
|
|
653
|
+
* @defaultValue []
|
|
654
|
+
* @public
|
|
655
655
|
*/ _define_property(this, "displayBoList", void 0);
|
|
656
656
|
var _props_dataCode;
|
|
657
657
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -768,14 +768,14 @@ var FillBind = function FillBind(props) {
|
|
|
768
768
|
"use strict";
|
|
769
769
|
_class_call_check(this, FillBind);
|
|
770
770
|
var _props_fillList;
|
|
771
|
-
/*
|
|
772
|
-
* 需要被填充的数据源
|
|
771
|
+
/*
|
|
772
|
+
* 需要被填充的数据源
|
|
773
773
|
* */ _define_property(this, "dataCode", void 0);
|
|
774
|
-
/*
|
|
775
|
-
* appId
|
|
774
|
+
/*
|
|
775
|
+
* appId
|
|
776
776
|
* */ _define_property(this, "appId", void 0);
|
|
777
|
-
/*
|
|
778
|
-
* 执行填充的数据项和控件
|
|
777
|
+
/*
|
|
778
|
+
* 执行填充的数据项和控件
|
|
779
779
|
* */ _define_property(this, "fillList", void 0);
|
|
780
780
|
var _props_dataCode;
|
|
781
781
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -786,10 +786,10 @@ var FillBind = function FillBind(props) {
|
|
|
786
786
|
return new MultistageFillingItem(item);
|
|
787
787
|
})) !== null && _props_fillList_map !== void 0 ? _props_fillList_map : [];
|
|
788
788
|
};
|
|
789
|
-
/**
|
|
790
|
-
* FillPayloadBind 填充配置
|
|
791
|
-
* 填充的配置和需要携带的数据
|
|
792
|
-
* @public
|
|
789
|
+
/**
|
|
790
|
+
* FillPayloadBind 填充配置
|
|
791
|
+
* 填充的配置和需要携带的数据
|
|
792
|
+
* @public
|
|
793
793
|
* */ export var FillPayloadBind = /*#__PURE__*/ function(FillBind) {
|
|
794
794
|
"use strict";
|
|
795
795
|
_inherits(FillPayloadBind, FillBind);
|
|
@@ -798,27 +798,27 @@ var FillBind = function FillBind(props) {
|
|
|
798
798
|
var _this;
|
|
799
799
|
_this = _call_super(this, FillPayloadBind, [
|
|
800
800
|
props
|
|
801
|
-
]), /**
|
|
802
|
-
* 数据源过滤条件
|
|
803
|
-
* @defaultValue []
|
|
804
|
-
* @public
|
|
805
|
-
**/ _define_property(_this, "filters", void 0), /**
|
|
806
|
-
* 数据源过滤条件-查看
|
|
807
|
-
* @defaultValue []
|
|
808
|
-
* @public
|
|
809
|
-
**/ _define_property(_this, "viewFilters", void 0), /**
|
|
810
|
-
* 数据源排序条件
|
|
811
|
-
* @defaultValue []
|
|
812
|
-
* @public
|
|
801
|
+
]), /**
|
|
802
|
+
* 数据源过滤条件
|
|
803
|
+
* @defaultValue []
|
|
804
|
+
* @public
|
|
805
|
+
**/ _define_property(_this, "filters", void 0), /**
|
|
806
|
+
* 数据源过滤条件-查看
|
|
807
|
+
* @defaultValue []
|
|
808
|
+
* @public
|
|
809
|
+
**/ _define_property(_this, "viewFilters", void 0), /**
|
|
810
|
+
* 数据源排序条件
|
|
811
|
+
* @defaultValue []
|
|
812
|
+
* @public
|
|
813
813
|
**/ _define_property(_this, "orders", void 0);
|
|
814
814
|
callFiltersAndOrders.call(_this, props);
|
|
815
815
|
return _this;
|
|
816
816
|
}
|
|
817
817
|
return FillPayloadBind;
|
|
818
818
|
}(FillBind);
|
|
819
|
-
/**
|
|
820
|
-
* FillBackBind 回填需要的配置和参数
|
|
821
|
-
* @public
|
|
819
|
+
/**
|
|
820
|
+
* FillBackBind 回填需要的配置和参数
|
|
821
|
+
* @public
|
|
822
822
|
*/ export var FillBackBind = /*#__PURE__*/ function(FillBind) {
|
|
823
823
|
"use strict";
|
|
824
824
|
_inherits(FillBackBind, FillBind);
|
|
@@ -827,14 +827,14 @@ var FillBind = function FillBind(props) {
|
|
|
827
827
|
var _this;
|
|
828
828
|
_this = _call_super(this, FillBackBind, [
|
|
829
829
|
props
|
|
830
|
-
]), /**
|
|
831
|
-
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
832
|
-
* @defaultValue 'current'
|
|
833
|
-
* @public
|
|
834
|
-
* */ _define_property(_this, "mode", void 0), /**
|
|
835
|
-
* 多选
|
|
836
|
-
* @defaultValue false
|
|
837
|
-
* @public
|
|
830
|
+
]), /**
|
|
831
|
+
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
832
|
+
* @defaultValue 'current'
|
|
833
|
+
* @public
|
|
834
|
+
* */ _define_property(_this, "mode", void 0), /**
|
|
835
|
+
* 多选
|
|
836
|
+
* @defaultValue false
|
|
837
|
+
* @public
|
|
838
838
|
*/ _define_property(_this, "multiple", void 0);
|
|
839
839
|
var _props_mode;
|
|
840
840
|
_this.mode = (_props_mode = props === null || props === void 0 ? void 0 : props.mode) !== null && _props_mode !== void 0 ? _props_mode : 'current';
|
|
@@ -857,23 +857,23 @@ export var Language = function Language(props) {
|
|
|
857
857
|
var _props_ja;
|
|
858
858
|
this.ja = (_props_ja = props === null || props === void 0 ? void 0 : props.ja) !== null && _props_ja !== void 0 ? _props_ja : '';
|
|
859
859
|
};
|
|
860
|
-
/**
|
|
861
|
-
* 正则校验
|
|
862
|
-
* @public
|
|
860
|
+
/**
|
|
861
|
+
* 正则校验
|
|
862
|
+
* @public
|
|
863
863
|
*/ export var RegularRules = function RegularRules(props) {
|
|
864
864
|
"use strict";
|
|
865
865
|
_class_call_check(this, RegularRules);
|
|
866
|
-
/**
|
|
867
|
-
* 内置模版
|
|
868
|
-
* @defaultValue ''
|
|
866
|
+
/**
|
|
867
|
+
* 内置模版
|
|
868
|
+
* @defaultValue ''
|
|
869
869
|
*/ _define_property(this, "stencilName", void 0);
|
|
870
|
-
/**
|
|
871
|
-
* 正则表达式
|
|
872
|
-
* @defaultValue ''
|
|
870
|
+
/**
|
|
871
|
+
* 正则表达式
|
|
872
|
+
* @defaultValue ''
|
|
873
873
|
*/ _define_property(this, "expression", void 0);
|
|
874
|
-
/**
|
|
875
|
-
* 校验错误提示信息
|
|
876
|
-
* @defaultValue ''
|
|
874
|
+
/**
|
|
875
|
+
* 校验错误提示信息
|
|
876
|
+
* @defaultValue ''
|
|
877
877
|
*/ _define_property(this, "errMessage", void 0);
|
|
878
878
|
var _props_stencilName;
|
|
879
879
|
this.stencilName = (_props_stencilName = props === null || props === void 0 ? void 0 : props.stencilName) !== null && _props_stencilName !== void 0 ? _props_stencilName : '';
|
|
@@ -882,22 +882,22 @@ export var Language = function Language(props) {
|
|
|
882
882
|
var _props_errMessage;
|
|
883
883
|
this.errMessage = (_props_errMessage = props === null || props === void 0 ? void 0 : props.errMessage) !== null && _props_errMessage !== void 0 ? _props_errMessage : '';
|
|
884
884
|
};
|
|
885
|
-
/**
|
|
886
|
-
* 选项设置-自定义选项
|
|
887
|
-
* @public
|
|
885
|
+
/**
|
|
886
|
+
* 选项设置-自定义选项
|
|
887
|
+
* @public
|
|
888
888
|
*/ export var OptionSetting = function OptionSetting(props) {
|
|
889
889
|
"use strict";
|
|
890
890
|
_class_call_check(this, OptionSetting);
|
|
891
891
|
_define_property(this, "id", void 0);
|
|
892
|
-
/**
|
|
893
|
-
* 显示值
|
|
894
|
-
* @defaultValue ''
|
|
895
|
-
* @public
|
|
892
|
+
/**
|
|
893
|
+
* 显示值
|
|
894
|
+
* @defaultValue ''
|
|
895
|
+
* @public
|
|
896
896
|
*/ _define_property(this, "label", void 0);
|
|
897
|
-
/**
|
|
898
|
-
* 选项ID
|
|
899
|
-
* @defaultValue this.label
|
|
900
|
-
* @public
|
|
897
|
+
/**
|
|
898
|
+
* 选项ID
|
|
899
|
+
* @defaultValue this.label
|
|
900
|
+
* @public
|
|
901
901
|
*/ _define_property(this, "value", void 0);
|
|
902
902
|
var _props_id;
|
|
903
903
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
|
|
@@ -935,26 +935,26 @@ export function initImageOptions(options) {
|
|
|
935
935
|
return new ImageOptionSetting(item);
|
|
936
936
|
})) !== null && _options_map !== void 0 ? _options_map : [];
|
|
937
937
|
}
|
|
938
|
-
/**
|
|
939
|
-
* 对象类型数据绑定配置
|
|
940
|
-
* @public
|
|
938
|
+
/**
|
|
939
|
+
* 对象类型数据绑定配置
|
|
940
|
+
* @public
|
|
941
941
|
*/ export var ObjectDataBind = function ObjectDataBind() {
|
|
942
942
|
"use strict";
|
|
943
943
|
_class_call_check(this, ObjectDataBind);
|
|
944
944
|
};
|
|
945
|
-
/**
|
|
946
|
-
* 金额控件数据绑定配置
|
|
947
|
-
* @public
|
|
945
|
+
/**
|
|
946
|
+
* 金额控件数据绑定配置
|
|
947
|
+
* @public
|
|
948
948
|
*/ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
949
949
|
"use strict";
|
|
950
950
|
_inherits(AmountDataBind, ObjectDataBind);
|
|
951
951
|
function AmountDataBind(props) {
|
|
952
952
|
_class_call_check(this, AmountDataBind);
|
|
953
953
|
var _this;
|
|
954
|
-
_this = _call_super(this, AmountDataBind), /**
|
|
955
|
-
* 金额字段绑定配置
|
|
956
|
-
*/ _define_property(_this, "amount", void 0), /**
|
|
957
|
-
* 币种字段绑定配置
|
|
954
|
+
_this = _call_super(this, AmountDataBind), /**
|
|
955
|
+
* 金额字段绑定配置
|
|
956
|
+
*/ _define_property(_this, "amount", void 0), /**
|
|
957
|
+
* 币种字段绑定配置
|
|
958
958
|
*/ _define_property(_this, "currency", void 0);
|
|
959
959
|
_this.amount = new DataBind(props === null || props === void 0 ? void 0 : props.amount);
|
|
960
960
|
_this.currency = new DataBind(props === null || props === void 0 ? void 0 : props.currency);
|
|
@@ -962,38 +962,38 @@ export function initImageOptions(options) {
|
|
|
962
962
|
}
|
|
963
963
|
return AmountDataBind;
|
|
964
964
|
}(ObjectDataBind);
|
|
965
|
-
/**
|
|
966
|
-
* 金额控件值
|
|
967
|
-
* @public
|
|
965
|
+
/**
|
|
966
|
+
* 金额控件值
|
|
967
|
+
* @public
|
|
968
968
|
*/ export var AmountValue = function AmountValue(props) {
|
|
969
969
|
"use strict";
|
|
970
970
|
_class_call_check(this, AmountValue);
|
|
971
|
-
/**
|
|
972
|
-
* 金额值
|
|
973
|
-
* @defaultValue ''
|
|
971
|
+
/**
|
|
972
|
+
* 金额值
|
|
973
|
+
* @defaultValue ''
|
|
974
974
|
*/ _define_property(this, "amount", void 0);
|
|
975
|
-
/**
|
|
976
|
-
* 货币值
|
|
977
|
-
* @defaultValue 'CNY'
|
|
975
|
+
/**
|
|
976
|
+
* 货币值
|
|
977
|
+
* @defaultValue 'CNY'
|
|
978
978
|
*/ _define_property(this, "currency", void 0);
|
|
979
979
|
var _props_amount;
|
|
980
980
|
this.amount = (_props_amount = props === null || props === void 0 ? void 0 : props.amount) !== null && _props_amount !== void 0 ? _props_amount : '';
|
|
981
981
|
var _props_currency;
|
|
982
982
|
this.currency = (_props_currency = props === null || props === void 0 ? void 0 : props.currency) !== null && _props_currency !== void 0 ? _props_currency : "CNY";
|
|
983
983
|
};
|
|
984
|
-
/**
|
|
985
|
-
* 日期区间数据绑定项
|
|
986
|
-
* @public
|
|
984
|
+
/**
|
|
985
|
+
* 日期区间数据绑定项
|
|
986
|
+
* @public
|
|
987
987
|
*/ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
988
988
|
"use strict";
|
|
989
989
|
_inherits(RangeDataBind, ObjectDataBind);
|
|
990
990
|
function RangeDataBind(props) {
|
|
991
991
|
_class_call_check(this, RangeDataBind);
|
|
992
992
|
var _this;
|
|
993
|
-
_this = _call_super(this, RangeDataBind), /**
|
|
994
|
-
* 开始日期字段绑定项
|
|
995
|
-
*/ _define_property(_this, "min", void 0), /**
|
|
996
|
-
* 结束日期字段绑定项
|
|
993
|
+
_this = _call_super(this, RangeDataBind), /**
|
|
994
|
+
* 开始日期字段绑定项
|
|
995
|
+
*/ _define_property(_this, "min", void 0), /**
|
|
996
|
+
* 结束日期字段绑定项
|
|
997
997
|
*/ _define_property(_this, "max", void 0);
|
|
998
998
|
_this.min = new DataBind(props === null || props === void 0 ? void 0 : props.min);
|
|
999
999
|
_this.max = new DataBind(props === null || props === void 0 ? void 0 : props.max);
|
|
@@ -1001,54 +1001,54 @@ export function initImageOptions(options) {
|
|
|
1001
1001
|
}
|
|
1002
1002
|
return RangeDataBind;
|
|
1003
1003
|
}(ObjectDataBind);
|
|
1004
|
-
/**
|
|
1005
|
-
* 日期区间值
|
|
1006
|
-
* @public
|
|
1004
|
+
/**
|
|
1005
|
+
* 日期区间值
|
|
1006
|
+
* @public
|
|
1007
1007
|
*/ export var RangeDateValue = function RangeDateValue(props) {
|
|
1008
1008
|
"use strict";
|
|
1009
1009
|
_class_call_check(this, RangeDateValue);
|
|
1010
|
-
/**
|
|
1011
|
-
* 开始日期值
|
|
1012
|
-
* @defaultValue ''
|
|
1010
|
+
/**
|
|
1011
|
+
* 开始日期值
|
|
1012
|
+
* @defaultValue ''
|
|
1013
1013
|
*/ _define_property(this, "min", void 0);
|
|
1014
|
-
/**
|
|
1015
|
-
* 结束日期值
|
|
1016
|
-
* @defaultValue ''
|
|
1014
|
+
/**
|
|
1015
|
+
* 结束日期值
|
|
1016
|
+
* @defaultValue ''
|
|
1017
1017
|
*/ _define_property(this, "max", void 0);
|
|
1018
1018
|
var _props_min;
|
|
1019
1019
|
this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : '';
|
|
1020
1020
|
var _props_max;
|
|
1021
1021
|
this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : '';
|
|
1022
1022
|
};
|
|
1023
|
-
/**
|
|
1024
|
-
* 地址值
|
|
1025
|
-
* @public
|
|
1023
|
+
/**
|
|
1024
|
+
* 地址值
|
|
1025
|
+
* @public
|
|
1026
1026
|
*/ export var AddressValue = function AddressValue(props) {
|
|
1027
1027
|
"use strict";
|
|
1028
1028
|
_class_call_check(this, AddressValue);
|
|
1029
|
-
/**
|
|
1030
|
-
* 市编码
|
|
1031
|
-
* @defaultValue ''
|
|
1029
|
+
/**
|
|
1030
|
+
* 市编码
|
|
1031
|
+
* @defaultValue ''
|
|
1032
1032
|
*/ _define_property(this, "city", void 0);
|
|
1033
|
-
/**
|
|
1034
|
-
* 市显示文字
|
|
1035
|
-
* @defaultValue ''
|
|
1033
|
+
/**
|
|
1034
|
+
* 市显示文字
|
|
1035
|
+
* @defaultValue ''
|
|
1036
1036
|
*/ _define_property(this, "cityDisplay", void 0);
|
|
1037
|
-
/**
|
|
1038
|
-
* 区编码
|
|
1039
|
-
* @defaultValue ''
|
|
1037
|
+
/**
|
|
1038
|
+
* 区编码
|
|
1039
|
+
* @defaultValue ''
|
|
1040
1040
|
*/ _define_property(this, "district", void 0);
|
|
1041
|
-
/**
|
|
1042
|
-
* 区显示文字
|
|
1043
|
-
* @defaultValue ''
|
|
1041
|
+
/**
|
|
1042
|
+
* 区显示文字
|
|
1043
|
+
* @defaultValue ''
|
|
1044
1044
|
*/ _define_property(this, "districtDisplay", void 0);
|
|
1045
|
-
/**
|
|
1046
|
-
* 省编码
|
|
1047
|
-
* @defaultValue ''
|
|
1045
|
+
/**
|
|
1046
|
+
* 省编码
|
|
1047
|
+
* @defaultValue ''
|
|
1048
1048
|
*/ _define_property(this, "province", void 0);
|
|
1049
|
-
/**
|
|
1050
|
-
* 省显示文字
|
|
1051
|
-
* @defaultValue ''
|
|
1049
|
+
/**
|
|
1050
|
+
* 省显示文字
|
|
1051
|
+
* @defaultValue ''
|
|
1052
1052
|
*/ _define_property(this, "provinceDisplay", void 0);
|
|
1053
1053
|
var _props_city;
|
|
1054
1054
|
this.city = (_props_city = props === null || props === void 0 ? void 0 : props.city) !== null && _props_city !== void 0 ? _props_city : '';
|
|
@@ -1063,19 +1063,19 @@ export function initImageOptions(options) {
|
|
|
1063
1063
|
var _props_provinceDisplay;
|
|
1064
1064
|
this.provinceDisplay = (_props_provinceDisplay = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && _props_provinceDisplay !== void 0 ? _props_provinceDisplay : '';
|
|
1065
1065
|
};
|
|
1066
|
-
/**
|
|
1067
|
-
* 计算公式数据绑定项
|
|
1068
|
-
* @public
|
|
1066
|
+
/**
|
|
1067
|
+
* 计算公式数据绑定项
|
|
1068
|
+
* @public
|
|
1069
1069
|
*/ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1070
1070
|
"use strict";
|
|
1071
1071
|
_inherits(CalcDataBind, ObjectDataBind);
|
|
1072
1072
|
function CalcDataBind(props) {
|
|
1073
1073
|
_class_call_check(this, CalcDataBind);
|
|
1074
1074
|
var _this;
|
|
1075
|
-
_this = _call_super(this, CalcDataBind), /**
|
|
1076
|
-
* 计算结果字段绑定项
|
|
1077
|
-
*/ _define_property(_this, "result", void 0), /**
|
|
1078
|
-
* 单位字段绑定项
|
|
1075
|
+
_this = _call_super(this, CalcDataBind), /**
|
|
1076
|
+
* 计算结果字段绑定项
|
|
1077
|
+
*/ _define_property(_this, "result", void 0), /**
|
|
1078
|
+
* 单位字段绑定项
|
|
1079
1079
|
*/ _define_property(_this, "unit", void 0);
|
|
1080
1080
|
_this.result = new DataBind(props === null || props === void 0 ? void 0 : props.result);
|
|
1081
1081
|
_this.unit = new DataBind(props === null || props === void 0 ? void 0 : props.unit);
|
|
@@ -1083,27 +1083,27 @@ export function initImageOptions(options) {
|
|
|
1083
1083
|
}
|
|
1084
1084
|
return CalcDataBind;
|
|
1085
1085
|
}(ObjectDataBind);
|
|
1086
|
-
/**
|
|
1087
|
-
* 计算公式值
|
|
1088
|
-
* @public
|
|
1086
|
+
/**
|
|
1087
|
+
* 计算公式值
|
|
1088
|
+
* @public
|
|
1089
1089
|
*/ export var CalcValue = function CalcValue(props) {
|
|
1090
1090
|
"use strict";
|
|
1091
1091
|
_class_call_check(this, CalcValue);
|
|
1092
|
-
/**
|
|
1093
|
-
* 计算结果值
|
|
1094
|
-
* @defaultValue 0
|
|
1092
|
+
/**
|
|
1093
|
+
* 计算结果值
|
|
1094
|
+
* @defaultValue 0
|
|
1095
1095
|
*/ _define_property(this, "result", void 0);
|
|
1096
|
-
/**
|
|
1097
|
-
* 单位
|
|
1098
|
-
* @defaultValue ''
|
|
1096
|
+
/**
|
|
1097
|
+
* 单位
|
|
1098
|
+
* @defaultValue ''
|
|
1099
1099
|
*/ _define_property(this, "unit", void 0);
|
|
1100
1100
|
var _props_result;
|
|
1101
1101
|
this.result = (_props_result = props === null || props === void 0 ? void 0 : props.result) !== null && _props_result !== void 0 ? _props_result : 0;
|
|
1102
1102
|
var _props_unit;
|
|
1103
1103
|
this.unit = (_props_unit = props === null || props === void 0 ? void 0 : props.unit) !== null && _props_unit !== void 0 ? _props_unit : '';
|
|
1104
1104
|
};
|
|
1105
|
-
|
|
1106
|
-
|
|
1105
|
+
// 币种类型
|
|
1106
|
+
export var AMOUNT_TYPE = /*#__PURE__*/ function(AMOUNT_TYPE) {
|
|
1107
1107
|
AMOUNT_TYPE["CNY"] = "CNY";
|
|
1108
1108
|
AMOUNT_TYPE["USD"] = "USD";
|
|
1109
1109
|
AMOUNT_TYPE["JPY"] = "JPY";
|
|
@@ -1131,9 +1131,17 @@ export var AMOUNT_TYPE;
|
|
|
1131
1131
|
AMOUNT_TYPE["VND"] = "VND";
|
|
1132
1132
|
AMOUNT_TYPE["HKD"] = "HKD";
|
|
1133
1133
|
AMOUNT_TYPE["IEP"] = "IEP";
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1134
|
+
return AMOUNT_TYPE;
|
|
1135
|
+
}({});
|
|
1136
|
+
/**
|
|
1137
|
+
* 选项设置
|
|
1138
|
+
* REQUIRED: 必填
|
|
1139
|
+
* isHide: 隐藏
|
|
1140
|
+
* IS_SHOW_UNIT: 单位
|
|
1141
|
+
* CAN_SEARCH: 支持搜索
|
|
1142
|
+
* MULTIPLE: 允许选中多个日期
|
|
1143
|
+
* SUBMIT_SELECT_CURRENCY: 提交时选择币种
|
|
1144
|
+
*/ export var COMMON_SETTING_TYPE = /*#__PURE__*/ function(COMMON_SETTING_TYPE) {
|
|
1137
1145
|
COMMON_SETTING_TYPE["DEFAULT_DISPLAY"] = "defaultDisplay";
|
|
1138
1146
|
COMMON_SETTING_TYPE["REQUIRED"] = "required";
|
|
1139
1147
|
COMMON_SETTING_TYPE["IS_HIDE"] = "isHide";
|
|
@@ -1171,44 +1179,45 @@ export var COMMON_SETTING_TYPE;
|
|
|
1171
1179
|
COMMON_SETTING_TYPE["ONLY_ALLOW_TAKE_PHOTO"] = "onlyAllowTakePhoto";
|
|
1172
1180
|
COMMON_SETTING_TYPE["FORBID_DOWNLOAD"] = "forbidDownload";
|
|
1173
1181
|
COMMON_SETTING_TYPE["ACCESS_CONTROL"] = "accessControl";
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1182
|
+
return COMMON_SETTING_TYPE;
|
|
1183
|
+
}({});
|
|
1184
|
+
export var PAGE_STATUS = /*#__PURE__*/ function(PAGE_STATUS) {
|
|
1177
1185
|
PAGE_STATUS[PAGE_STATUS["UNKNOWN"] = 0] = "UNKNOWN";
|
|
1178
1186
|
PAGE_STATUS[PAGE_STATUS["READONLY"] = 1] = "READONLY";
|
|
1179
1187
|
PAGE_STATUS[PAGE_STATUS["EDITABLE"] = 2] = "EDITABLE";
|
|
1180
1188
|
PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
*
|
|
1189
|
+
return PAGE_STATUS;
|
|
1190
|
+
}({});
|
|
1191
|
+
/**
|
|
1192
|
+
* 操作按钮
|
|
1193
|
+
* @public
|
|
1185
1194
|
*/ export var OperationItem = function OperationItem(props) {
|
|
1186
1195
|
"use strict";
|
|
1187
1196
|
_class_call_check(this, OperationItem);
|
|
1188
|
-
/**
|
|
1189
|
-
* 是否显示
|
|
1190
|
-
* @defaultValue true
|
|
1191
|
-
* @public
|
|
1197
|
+
/**
|
|
1198
|
+
* 是否显示
|
|
1199
|
+
* @defaultValue true
|
|
1200
|
+
* @public
|
|
1192
1201
|
*/ _define_property(this, "isShow", void 0);
|
|
1193
|
-
/**
|
|
1194
|
-
* 优先访问流程表单
|
|
1195
|
-
* @defaultValue false
|
|
1196
|
-
* @public
|
|
1202
|
+
/**
|
|
1203
|
+
* 优先访问流程表单
|
|
1204
|
+
* @defaultValue false
|
|
1205
|
+
* @public
|
|
1197
1206
|
*/ _define_property(this, "priorityProcess", void 0);
|
|
1198
|
-
/**
|
|
1199
|
-
* 表单ID
|
|
1200
|
-
* @defaultValue ''
|
|
1201
|
-
* @public
|
|
1207
|
+
/**
|
|
1208
|
+
* 表单ID
|
|
1209
|
+
* @defaultValue ''
|
|
1210
|
+
* @public
|
|
1202
1211
|
*/ _define_property(this, "formKey", void 0);
|
|
1203
|
-
/**
|
|
1204
|
-
* 显示文字
|
|
1205
|
-
* @defaultValue ''
|
|
1206
|
-
* @public
|
|
1212
|
+
/**
|
|
1213
|
+
* 显示文字
|
|
1214
|
+
* @defaultValue ''
|
|
1215
|
+
* @public
|
|
1207
1216
|
*/ _define_property(this, "content", void 0);
|
|
1208
|
-
/**
|
|
1209
|
-
* 打开方式
|
|
1210
|
-
* @defaultValue 'modal'
|
|
1211
|
-
* @public
|
|
1217
|
+
/**
|
|
1218
|
+
* 打开方式
|
|
1219
|
+
* @defaultValue 'modal'
|
|
1220
|
+
* @public
|
|
1212
1221
|
*/ _define_property(this, "openType", void 0);
|
|
1213
1222
|
_define_property(this, "type", void 0);
|
|
1214
1223
|
var _props_isShow;
|
|
@@ -1243,16 +1252,16 @@ export var ViewOperationItem = function ViewOperationItem(props) {
|
|
|
1243
1252
|
})) !== null && _props_headers_map !== void 0 ? _props_headers_map : [];
|
|
1244
1253
|
callFiltersAndOrders.call(this, props);
|
|
1245
1254
|
};
|
|
1246
|
-
/**
|
|
1247
|
-
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1255
|
+
/**
|
|
1256
|
+
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1248
1257
|
*/ export var CustomPermissionItem = function CustomPermissionItem(props) {
|
|
1249
1258
|
"use strict";
|
|
1250
1259
|
_class_call_check(this, CustomPermissionItem);
|
|
1251
|
-
/**
|
|
1252
|
-
* 人工输入的权限key
|
|
1260
|
+
/**
|
|
1261
|
+
* 人工输入的权限key
|
|
1253
1262
|
*/ _define_property(this, "key", void 0);
|
|
1254
|
-
/**
|
|
1255
|
-
* 权限名称
|
|
1263
|
+
/**
|
|
1264
|
+
* 权限名称
|
|
1256
1265
|
*/ _define_property(this, "caption", void 0);
|
|
1257
1266
|
var _props_key;
|
|
1258
1267
|
this.key = (_props_key = props.key) !== null && _props_key !== void 0 ? _props_key : genNonDuplicateId(8);
|
|
@@ -1278,15 +1287,15 @@ export var BaseStyle = function BaseStyle(props) {
|
|
|
1278
1287
|
export var OptObject = function OptObject(props) {
|
|
1279
1288
|
"use strict";
|
|
1280
1289
|
_class_call_check(this, OptObject);
|
|
1281
|
-
/**
|
|
1282
|
-
* 操作项编码
|
|
1283
|
-
* @defaultValue ''
|
|
1284
|
-
* @public
|
|
1290
|
+
/**
|
|
1291
|
+
* 操作项编码
|
|
1292
|
+
* @defaultValue ''
|
|
1293
|
+
* @public
|
|
1285
1294
|
*/ _define_property(this, "optCode", void 0);
|
|
1286
|
-
/**
|
|
1287
|
-
* 操作项类型
|
|
1288
|
-
* @defaultValue ''
|
|
1289
|
-
* @public
|
|
1295
|
+
/**
|
|
1296
|
+
* 操作项类型
|
|
1297
|
+
* @defaultValue ''
|
|
1298
|
+
* @public
|
|
1290
1299
|
*/ _define_property(this, "optType", void 0);
|
|
1291
1300
|
var _props_optCode;
|
|
1292
1301
|
this.optCode = (_props_optCode = props === null || props === void 0 ? void 0 : props.optCode) !== null && _props_optCode !== void 0 ? _props_optCode : '';
|
|
@@ -1297,25 +1306,25 @@ export var RowStyleRule = function RowStyleRule(props) {
|
|
|
1297
1306
|
"use strict";
|
|
1298
1307
|
_class_call_check(this, RowStyleRule);
|
|
1299
1308
|
var _props_filters;
|
|
1300
|
-
/**
|
|
1301
|
-
* 规则编号
|
|
1302
|
-
* @defaultValue guid
|
|
1303
|
-
* @public
|
|
1309
|
+
/**
|
|
1310
|
+
* 规则编号
|
|
1311
|
+
* @defaultValue guid
|
|
1312
|
+
* @public
|
|
1304
1313
|
*/ _define_property(this, "id", void 0);
|
|
1305
|
-
/**
|
|
1306
|
-
* 规则名称
|
|
1307
|
-
* @defaultValue ''
|
|
1308
|
-
* @public
|
|
1314
|
+
/**
|
|
1315
|
+
* 规则名称
|
|
1316
|
+
* @defaultValue ''
|
|
1317
|
+
* @public
|
|
1309
1318
|
*/ _define_property(this, "name", void 0);
|
|
1310
|
-
/**
|
|
1311
|
-
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1312
|
-
* @defaultValue 'theme'
|
|
1313
|
-
* @public
|
|
1319
|
+
/**
|
|
1320
|
+
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1321
|
+
* @defaultValue 'theme'
|
|
1322
|
+
* @public
|
|
1314
1323
|
*/ _define_property(this, "color", void 0);
|
|
1315
|
-
/**
|
|
1316
|
-
* 过滤条件
|
|
1317
|
-
* @defaultValue []
|
|
1318
|
-
* @public
|
|
1324
|
+
/**
|
|
1325
|
+
* 过滤条件
|
|
1326
|
+
* @defaultValue []
|
|
1327
|
+
* @public
|
|
1319
1328
|
*/ _define_property(this, "filters", void 0);
|
|
1320
1329
|
var _props_id;
|
|
1321
1330
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|