@byteluck-fe/model-driven-core 4.34.0-lx2 → 4.36.0-lx1
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/dist/esm/common/BaseControl/designer.js +13 -20
- package/dist/esm/common/BaseControl/runtime.js +1 -2
- package/dist/esm/common/LayoutControl/designer.js +6 -10
- package/dist/esm/common/ListControl/designer.js +6 -10
- package/dist/esm/framework/index.js +385 -363
- package/dist/index.umd.js +1 -1
- package/dist/types/framework/index.d.ts +12 -0
- 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,69 +554,79 @@ 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
|
+
/**
|
|
621
|
+
* 部门或者人员指定部门配置
|
|
622
|
+
* @defaultValue {}
|
|
623
|
+
* @public
|
|
624
|
+
*/ _define_property(this, "assignDepartment", void 0);
|
|
625
|
+
/**
|
|
626
|
+
* 部门或者人员指定部门配置是否开启
|
|
627
|
+
* @defaultValue {}
|
|
628
|
+
* @public
|
|
629
|
+
*/ _define_property(this, "openAssignDepartment", void 0);
|
|
620
630
|
var _props_dataCode;
|
|
621
631
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
622
632
|
var _props_appId;
|
|
@@ -638,20 +648,23 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
638
648
|
this.showOrder = (_props_showOrder = props === null || props === void 0 ? void 0 : props.showOrder) !== null && _props_showOrder !== void 0 ? _props_showOrder : true;
|
|
639
649
|
var _props_svcCode;
|
|
640
650
|
this.svcCode = (_props_svcCode = props === null || props === void 0 ? void 0 : props.svcCode) !== null && _props_svcCode !== void 0 ? _props_svcCode : '';
|
|
651
|
+
this.assignDepartment = new RightVariable(props === null || props === void 0 ? void 0 : props.assignDepartment);
|
|
652
|
+
var _props_openAssignDepartment;
|
|
653
|
+
this.openAssignDepartment = (_props_openAssignDepartment = props === null || props === void 0 ? void 0 : props.openAssignDepartment) !== null && _props_openAssignDepartment !== void 0 ? _props_openAssignDepartment : false;
|
|
641
654
|
callFiltersAndOrders.call(this, props);
|
|
642
655
|
};
|
|
643
656
|
export var SelectedContentConfig = function SelectedContentConfig(props) {
|
|
644
657
|
"use strict";
|
|
645
658
|
_class_call_check(this, SelectedContentConfig);
|
|
646
|
-
/**
|
|
647
|
-
* 展示已选内容
|
|
648
|
-
* @defaultValue ''
|
|
649
|
-
* @public
|
|
659
|
+
/**
|
|
660
|
+
* 展示已选内容
|
|
661
|
+
* @defaultValue ''
|
|
662
|
+
* @public
|
|
650
663
|
*/ _define_property(this, "dataCode", void 0);
|
|
651
|
-
/**
|
|
652
|
-
* 展示已选明细
|
|
653
|
-
* @defaultValue []
|
|
654
|
-
* @public
|
|
664
|
+
/**
|
|
665
|
+
* 展示已选明细
|
|
666
|
+
* @defaultValue []
|
|
667
|
+
* @public
|
|
655
668
|
*/ _define_property(this, "displayBoList", void 0);
|
|
656
669
|
var _props_dataCode;
|
|
657
670
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -768,14 +781,14 @@ var FillBind = function FillBind(props) {
|
|
|
768
781
|
"use strict";
|
|
769
782
|
_class_call_check(this, FillBind);
|
|
770
783
|
var _props_fillList;
|
|
771
|
-
/*
|
|
772
|
-
* 需要被填充的数据源
|
|
784
|
+
/*
|
|
785
|
+
* 需要被填充的数据源
|
|
773
786
|
* */ _define_property(this, "dataCode", void 0);
|
|
774
|
-
/*
|
|
775
|
-
* appId
|
|
787
|
+
/*
|
|
788
|
+
* appId
|
|
776
789
|
* */ _define_property(this, "appId", void 0);
|
|
777
|
-
/*
|
|
778
|
-
* 执行填充的数据项和控件
|
|
790
|
+
/*
|
|
791
|
+
* 执行填充的数据项和控件
|
|
779
792
|
* */ _define_property(this, "fillList", void 0);
|
|
780
793
|
var _props_dataCode;
|
|
781
794
|
this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
|
|
@@ -786,10 +799,10 @@ var FillBind = function FillBind(props) {
|
|
|
786
799
|
return new MultistageFillingItem(item);
|
|
787
800
|
})) !== null && _props_fillList_map !== void 0 ? _props_fillList_map : [];
|
|
788
801
|
};
|
|
789
|
-
/**
|
|
790
|
-
* FillPayloadBind 填充配置
|
|
791
|
-
* 填充的配置和需要携带的数据
|
|
792
|
-
* @public
|
|
802
|
+
/**
|
|
803
|
+
* FillPayloadBind 填充配置
|
|
804
|
+
* 填充的配置和需要携带的数据
|
|
805
|
+
* @public
|
|
793
806
|
* */ export var FillPayloadBind = /*#__PURE__*/ function(FillBind) {
|
|
794
807
|
"use strict";
|
|
795
808
|
_inherits(FillPayloadBind, FillBind);
|
|
@@ -798,27 +811,27 @@ var FillBind = function FillBind(props) {
|
|
|
798
811
|
var _this;
|
|
799
812
|
_this = _call_super(this, FillPayloadBind, [
|
|
800
813
|
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
|
|
814
|
+
]), /**
|
|
815
|
+
* 数据源过滤条件
|
|
816
|
+
* @defaultValue []
|
|
817
|
+
* @public
|
|
818
|
+
**/ _define_property(_this, "filters", void 0), /**
|
|
819
|
+
* 数据源过滤条件-查看
|
|
820
|
+
* @defaultValue []
|
|
821
|
+
* @public
|
|
822
|
+
**/ _define_property(_this, "viewFilters", void 0), /**
|
|
823
|
+
* 数据源排序条件
|
|
824
|
+
* @defaultValue []
|
|
825
|
+
* @public
|
|
813
826
|
**/ _define_property(_this, "orders", void 0);
|
|
814
827
|
callFiltersAndOrders.call(_this, props);
|
|
815
828
|
return _this;
|
|
816
829
|
}
|
|
817
830
|
return FillPayloadBind;
|
|
818
831
|
}(FillBind);
|
|
819
|
-
/**
|
|
820
|
-
* FillBackBind 回填需要的配置和参数
|
|
821
|
-
* @public
|
|
832
|
+
/**
|
|
833
|
+
* FillBackBind 回填需要的配置和参数
|
|
834
|
+
* @public
|
|
822
835
|
*/ export var FillBackBind = /*#__PURE__*/ function(FillBind) {
|
|
823
836
|
"use strict";
|
|
824
837
|
_inherits(FillBackBind, FillBind);
|
|
@@ -827,14 +840,14 @@ var FillBind = function FillBind(props) {
|
|
|
827
840
|
var _this;
|
|
828
841
|
_this = _call_super(this, FillBackBind, [
|
|
829
842
|
props
|
|
830
|
-
]), /**
|
|
831
|
-
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
832
|
-
* @defaultValue 'current'
|
|
833
|
-
* @public
|
|
834
|
-
* */ _define_property(_this, "mode", void 0), /**
|
|
835
|
-
* 多选
|
|
836
|
-
* @defaultValue false
|
|
837
|
-
* @public
|
|
843
|
+
]), /**
|
|
844
|
+
* 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
|
|
845
|
+
* @defaultValue 'current'
|
|
846
|
+
* @public
|
|
847
|
+
* */ _define_property(_this, "mode", void 0), /**
|
|
848
|
+
* 多选
|
|
849
|
+
* @defaultValue false
|
|
850
|
+
* @public
|
|
838
851
|
*/ _define_property(_this, "multiple", void 0);
|
|
839
852
|
var _props_mode;
|
|
840
853
|
_this.mode = (_props_mode = props === null || props === void 0 ? void 0 : props.mode) !== null && _props_mode !== void 0 ? _props_mode : 'current';
|
|
@@ -857,23 +870,23 @@ export var Language = function Language(props) {
|
|
|
857
870
|
var _props_ja;
|
|
858
871
|
this.ja = (_props_ja = props === null || props === void 0 ? void 0 : props.ja) !== null && _props_ja !== void 0 ? _props_ja : '';
|
|
859
872
|
};
|
|
860
|
-
/**
|
|
861
|
-
* 正则校验
|
|
862
|
-
* @public
|
|
873
|
+
/**
|
|
874
|
+
* 正则校验
|
|
875
|
+
* @public
|
|
863
876
|
*/ export var RegularRules = function RegularRules(props) {
|
|
864
877
|
"use strict";
|
|
865
878
|
_class_call_check(this, RegularRules);
|
|
866
|
-
/**
|
|
867
|
-
* 内置模版
|
|
868
|
-
* @defaultValue ''
|
|
879
|
+
/**
|
|
880
|
+
* 内置模版
|
|
881
|
+
* @defaultValue ''
|
|
869
882
|
*/ _define_property(this, "stencilName", void 0);
|
|
870
|
-
/**
|
|
871
|
-
* 正则表达式
|
|
872
|
-
* @defaultValue ''
|
|
883
|
+
/**
|
|
884
|
+
* 正则表达式
|
|
885
|
+
* @defaultValue ''
|
|
873
886
|
*/ _define_property(this, "expression", void 0);
|
|
874
|
-
/**
|
|
875
|
-
* 校验错误提示信息
|
|
876
|
-
* @defaultValue ''
|
|
887
|
+
/**
|
|
888
|
+
* 校验错误提示信息
|
|
889
|
+
* @defaultValue ''
|
|
877
890
|
*/ _define_property(this, "errMessage", void 0);
|
|
878
891
|
var _props_stencilName;
|
|
879
892
|
this.stencilName = (_props_stencilName = props === null || props === void 0 ? void 0 : props.stencilName) !== null && _props_stencilName !== void 0 ? _props_stencilName : '';
|
|
@@ -882,22 +895,22 @@ export var Language = function Language(props) {
|
|
|
882
895
|
var _props_errMessage;
|
|
883
896
|
this.errMessage = (_props_errMessage = props === null || props === void 0 ? void 0 : props.errMessage) !== null && _props_errMessage !== void 0 ? _props_errMessage : '';
|
|
884
897
|
};
|
|
885
|
-
/**
|
|
886
|
-
* 选项设置-自定义选项
|
|
887
|
-
* @public
|
|
898
|
+
/**
|
|
899
|
+
* 选项设置-自定义选项
|
|
900
|
+
* @public
|
|
888
901
|
*/ export var OptionSetting = function OptionSetting(props) {
|
|
889
902
|
"use strict";
|
|
890
903
|
_class_call_check(this, OptionSetting);
|
|
891
904
|
_define_property(this, "id", void 0);
|
|
892
|
-
/**
|
|
893
|
-
* 显示值
|
|
894
|
-
* @defaultValue ''
|
|
895
|
-
* @public
|
|
905
|
+
/**
|
|
906
|
+
* 显示值
|
|
907
|
+
* @defaultValue ''
|
|
908
|
+
* @public
|
|
896
909
|
*/ _define_property(this, "label", void 0);
|
|
897
|
-
/**
|
|
898
|
-
* 选项ID
|
|
899
|
-
* @defaultValue this.label
|
|
900
|
-
* @public
|
|
910
|
+
/**
|
|
911
|
+
* 选项ID
|
|
912
|
+
* @defaultValue this.label
|
|
913
|
+
* @public
|
|
901
914
|
*/ _define_property(this, "value", void 0);
|
|
902
915
|
var _props_id;
|
|
903
916
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
|
|
@@ -935,26 +948,26 @@ export function initImageOptions(options) {
|
|
|
935
948
|
return new ImageOptionSetting(item);
|
|
936
949
|
})) !== null && _options_map !== void 0 ? _options_map : [];
|
|
937
950
|
}
|
|
938
|
-
/**
|
|
939
|
-
* 对象类型数据绑定配置
|
|
940
|
-
* @public
|
|
951
|
+
/**
|
|
952
|
+
* 对象类型数据绑定配置
|
|
953
|
+
* @public
|
|
941
954
|
*/ export var ObjectDataBind = function ObjectDataBind() {
|
|
942
955
|
"use strict";
|
|
943
956
|
_class_call_check(this, ObjectDataBind);
|
|
944
957
|
};
|
|
945
|
-
/**
|
|
946
|
-
* 金额控件数据绑定配置
|
|
947
|
-
* @public
|
|
958
|
+
/**
|
|
959
|
+
* 金额控件数据绑定配置
|
|
960
|
+
* @public
|
|
948
961
|
*/ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
949
962
|
"use strict";
|
|
950
963
|
_inherits(AmountDataBind, ObjectDataBind);
|
|
951
964
|
function AmountDataBind(props) {
|
|
952
965
|
_class_call_check(this, AmountDataBind);
|
|
953
966
|
var _this;
|
|
954
|
-
_this = _call_super(this, AmountDataBind), /**
|
|
955
|
-
* 金额字段绑定配置
|
|
956
|
-
*/ _define_property(_this, "amount", void 0), /**
|
|
957
|
-
* 币种字段绑定配置
|
|
967
|
+
_this = _call_super(this, AmountDataBind), /**
|
|
968
|
+
* 金额字段绑定配置
|
|
969
|
+
*/ _define_property(_this, "amount", void 0), /**
|
|
970
|
+
* 币种字段绑定配置
|
|
958
971
|
*/ _define_property(_this, "currency", void 0);
|
|
959
972
|
_this.amount = new DataBind(props === null || props === void 0 ? void 0 : props.amount);
|
|
960
973
|
_this.currency = new DataBind(props === null || props === void 0 ? void 0 : props.currency);
|
|
@@ -962,38 +975,38 @@ export function initImageOptions(options) {
|
|
|
962
975
|
}
|
|
963
976
|
return AmountDataBind;
|
|
964
977
|
}(ObjectDataBind);
|
|
965
|
-
/**
|
|
966
|
-
* 金额控件值
|
|
967
|
-
* @public
|
|
978
|
+
/**
|
|
979
|
+
* 金额控件值
|
|
980
|
+
* @public
|
|
968
981
|
*/ export var AmountValue = function AmountValue(props) {
|
|
969
982
|
"use strict";
|
|
970
983
|
_class_call_check(this, AmountValue);
|
|
971
|
-
/**
|
|
972
|
-
* 金额值
|
|
973
|
-
* @defaultValue ''
|
|
984
|
+
/**
|
|
985
|
+
* 金额值
|
|
986
|
+
* @defaultValue ''
|
|
974
987
|
*/ _define_property(this, "amount", void 0);
|
|
975
|
-
/**
|
|
976
|
-
* 货币值
|
|
977
|
-
* @defaultValue 'CNY'
|
|
988
|
+
/**
|
|
989
|
+
* 货币值
|
|
990
|
+
* @defaultValue 'CNY'
|
|
978
991
|
*/ _define_property(this, "currency", void 0);
|
|
979
992
|
var _props_amount;
|
|
980
993
|
this.amount = (_props_amount = props === null || props === void 0 ? void 0 : props.amount) !== null && _props_amount !== void 0 ? _props_amount : '';
|
|
981
994
|
var _props_currency;
|
|
982
995
|
this.currency = (_props_currency = props === null || props === void 0 ? void 0 : props.currency) !== null && _props_currency !== void 0 ? _props_currency : "CNY";
|
|
983
996
|
};
|
|
984
|
-
/**
|
|
985
|
-
* 日期区间数据绑定项
|
|
986
|
-
* @public
|
|
997
|
+
/**
|
|
998
|
+
* 日期区间数据绑定项
|
|
999
|
+
* @public
|
|
987
1000
|
*/ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
988
1001
|
"use strict";
|
|
989
1002
|
_inherits(RangeDataBind, ObjectDataBind);
|
|
990
1003
|
function RangeDataBind(props) {
|
|
991
1004
|
_class_call_check(this, RangeDataBind);
|
|
992
1005
|
var _this;
|
|
993
|
-
_this = _call_super(this, RangeDataBind), /**
|
|
994
|
-
* 开始日期字段绑定项
|
|
995
|
-
*/ _define_property(_this, "min", void 0), /**
|
|
996
|
-
* 结束日期字段绑定项
|
|
1006
|
+
_this = _call_super(this, RangeDataBind), /**
|
|
1007
|
+
* 开始日期字段绑定项
|
|
1008
|
+
*/ _define_property(_this, "min", void 0), /**
|
|
1009
|
+
* 结束日期字段绑定项
|
|
997
1010
|
*/ _define_property(_this, "max", void 0);
|
|
998
1011
|
_this.min = new DataBind(props === null || props === void 0 ? void 0 : props.min);
|
|
999
1012
|
_this.max = new DataBind(props === null || props === void 0 ? void 0 : props.max);
|
|
@@ -1001,54 +1014,54 @@ export function initImageOptions(options) {
|
|
|
1001
1014
|
}
|
|
1002
1015
|
return RangeDataBind;
|
|
1003
1016
|
}(ObjectDataBind);
|
|
1004
|
-
/**
|
|
1005
|
-
* 日期区间值
|
|
1006
|
-
* @public
|
|
1017
|
+
/**
|
|
1018
|
+
* 日期区间值
|
|
1019
|
+
* @public
|
|
1007
1020
|
*/ export var RangeDateValue = function RangeDateValue(props) {
|
|
1008
1021
|
"use strict";
|
|
1009
1022
|
_class_call_check(this, RangeDateValue);
|
|
1010
|
-
/**
|
|
1011
|
-
* 开始日期值
|
|
1012
|
-
* @defaultValue ''
|
|
1023
|
+
/**
|
|
1024
|
+
* 开始日期值
|
|
1025
|
+
* @defaultValue ''
|
|
1013
1026
|
*/ _define_property(this, "min", void 0);
|
|
1014
|
-
/**
|
|
1015
|
-
* 结束日期值
|
|
1016
|
-
* @defaultValue ''
|
|
1027
|
+
/**
|
|
1028
|
+
* 结束日期值
|
|
1029
|
+
* @defaultValue ''
|
|
1017
1030
|
*/ _define_property(this, "max", void 0);
|
|
1018
1031
|
var _props_min;
|
|
1019
1032
|
this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : '';
|
|
1020
1033
|
var _props_max;
|
|
1021
1034
|
this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : '';
|
|
1022
1035
|
};
|
|
1023
|
-
/**
|
|
1024
|
-
* 地址值
|
|
1025
|
-
* @public
|
|
1036
|
+
/**
|
|
1037
|
+
* 地址值
|
|
1038
|
+
* @public
|
|
1026
1039
|
*/ export var AddressValue = function AddressValue(props) {
|
|
1027
1040
|
"use strict";
|
|
1028
1041
|
_class_call_check(this, AddressValue);
|
|
1029
|
-
/**
|
|
1030
|
-
* 市编码
|
|
1031
|
-
* @defaultValue ''
|
|
1042
|
+
/**
|
|
1043
|
+
* 市编码
|
|
1044
|
+
* @defaultValue ''
|
|
1032
1045
|
*/ _define_property(this, "city", void 0);
|
|
1033
|
-
/**
|
|
1034
|
-
* 市显示文字
|
|
1035
|
-
* @defaultValue ''
|
|
1046
|
+
/**
|
|
1047
|
+
* 市显示文字
|
|
1048
|
+
* @defaultValue ''
|
|
1036
1049
|
*/ _define_property(this, "cityDisplay", void 0);
|
|
1037
|
-
/**
|
|
1038
|
-
* 区编码
|
|
1039
|
-
* @defaultValue ''
|
|
1050
|
+
/**
|
|
1051
|
+
* 区编码
|
|
1052
|
+
* @defaultValue ''
|
|
1040
1053
|
*/ _define_property(this, "district", void 0);
|
|
1041
|
-
/**
|
|
1042
|
-
* 区显示文字
|
|
1043
|
-
* @defaultValue ''
|
|
1054
|
+
/**
|
|
1055
|
+
* 区显示文字
|
|
1056
|
+
* @defaultValue ''
|
|
1044
1057
|
*/ _define_property(this, "districtDisplay", void 0);
|
|
1045
|
-
/**
|
|
1046
|
-
* 省编码
|
|
1047
|
-
* @defaultValue ''
|
|
1058
|
+
/**
|
|
1059
|
+
* 省编码
|
|
1060
|
+
* @defaultValue ''
|
|
1048
1061
|
*/ _define_property(this, "province", void 0);
|
|
1049
|
-
/**
|
|
1050
|
-
* 省显示文字
|
|
1051
|
-
* @defaultValue ''
|
|
1062
|
+
/**
|
|
1063
|
+
* 省显示文字
|
|
1064
|
+
* @defaultValue ''
|
|
1052
1065
|
*/ _define_property(this, "provinceDisplay", void 0);
|
|
1053
1066
|
var _props_city;
|
|
1054
1067
|
this.city = (_props_city = props === null || props === void 0 ? void 0 : props.city) !== null && _props_city !== void 0 ? _props_city : '';
|
|
@@ -1063,19 +1076,19 @@ export function initImageOptions(options) {
|
|
|
1063
1076
|
var _props_provinceDisplay;
|
|
1064
1077
|
this.provinceDisplay = (_props_provinceDisplay = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && _props_provinceDisplay !== void 0 ? _props_provinceDisplay : '';
|
|
1065
1078
|
};
|
|
1066
|
-
/**
|
|
1067
|
-
* 计算公式数据绑定项
|
|
1068
|
-
* @public
|
|
1079
|
+
/**
|
|
1080
|
+
* 计算公式数据绑定项
|
|
1081
|
+
* @public
|
|
1069
1082
|
*/ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
1070
1083
|
"use strict";
|
|
1071
1084
|
_inherits(CalcDataBind, ObjectDataBind);
|
|
1072
1085
|
function CalcDataBind(props) {
|
|
1073
1086
|
_class_call_check(this, CalcDataBind);
|
|
1074
1087
|
var _this;
|
|
1075
|
-
_this = _call_super(this, CalcDataBind), /**
|
|
1076
|
-
* 计算结果字段绑定项
|
|
1077
|
-
*/ _define_property(_this, "result", void 0), /**
|
|
1078
|
-
* 单位字段绑定项
|
|
1088
|
+
_this = _call_super(this, CalcDataBind), /**
|
|
1089
|
+
* 计算结果字段绑定项
|
|
1090
|
+
*/ _define_property(_this, "result", void 0), /**
|
|
1091
|
+
* 单位字段绑定项
|
|
1079
1092
|
*/ _define_property(_this, "unit", void 0);
|
|
1080
1093
|
_this.result = new DataBind(props === null || props === void 0 ? void 0 : props.result);
|
|
1081
1094
|
_this.unit = new DataBind(props === null || props === void 0 ? void 0 : props.unit);
|
|
@@ -1083,27 +1096,27 @@ export function initImageOptions(options) {
|
|
|
1083
1096
|
}
|
|
1084
1097
|
return CalcDataBind;
|
|
1085
1098
|
}(ObjectDataBind);
|
|
1086
|
-
/**
|
|
1087
|
-
* 计算公式值
|
|
1088
|
-
* @public
|
|
1099
|
+
/**
|
|
1100
|
+
* 计算公式值
|
|
1101
|
+
* @public
|
|
1089
1102
|
*/ export var CalcValue = function CalcValue(props) {
|
|
1090
1103
|
"use strict";
|
|
1091
1104
|
_class_call_check(this, CalcValue);
|
|
1092
|
-
/**
|
|
1093
|
-
* 计算结果值
|
|
1094
|
-
* @defaultValue 0
|
|
1105
|
+
/**
|
|
1106
|
+
* 计算结果值
|
|
1107
|
+
* @defaultValue 0
|
|
1095
1108
|
*/ _define_property(this, "result", void 0);
|
|
1096
|
-
/**
|
|
1097
|
-
* 单位
|
|
1098
|
-
* @defaultValue ''
|
|
1109
|
+
/**
|
|
1110
|
+
* 单位
|
|
1111
|
+
* @defaultValue ''
|
|
1099
1112
|
*/ _define_property(this, "unit", void 0);
|
|
1100
1113
|
var _props_result;
|
|
1101
1114
|
this.result = (_props_result = props === null || props === void 0 ? void 0 : props.result) !== null && _props_result !== void 0 ? _props_result : 0;
|
|
1102
1115
|
var _props_unit;
|
|
1103
1116
|
this.unit = (_props_unit = props === null || props === void 0 ? void 0 : props.unit) !== null && _props_unit !== void 0 ? _props_unit : '';
|
|
1104
1117
|
};
|
|
1105
|
-
|
|
1106
|
-
|
|
1118
|
+
// 币种类型
|
|
1119
|
+
export var AMOUNT_TYPE = /*#__PURE__*/ function(AMOUNT_TYPE) {
|
|
1107
1120
|
AMOUNT_TYPE["CNY"] = "CNY";
|
|
1108
1121
|
AMOUNT_TYPE["USD"] = "USD";
|
|
1109
1122
|
AMOUNT_TYPE["JPY"] = "JPY";
|
|
@@ -1131,9 +1144,17 @@ export var AMOUNT_TYPE;
|
|
|
1131
1144
|
AMOUNT_TYPE["VND"] = "VND";
|
|
1132
1145
|
AMOUNT_TYPE["HKD"] = "HKD";
|
|
1133
1146
|
AMOUNT_TYPE["IEP"] = "IEP";
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1147
|
+
return AMOUNT_TYPE;
|
|
1148
|
+
}({});
|
|
1149
|
+
/**
|
|
1150
|
+
* 选项设置
|
|
1151
|
+
* REQUIRED: 必填
|
|
1152
|
+
* isHide: 隐藏
|
|
1153
|
+
* IS_SHOW_UNIT: 单位
|
|
1154
|
+
* CAN_SEARCH: 支持搜索
|
|
1155
|
+
* MULTIPLE: 允许选中多个日期
|
|
1156
|
+
* SUBMIT_SELECT_CURRENCY: 提交时选择币种
|
|
1157
|
+
*/ export var COMMON_SETTING_TYPE = /*#__PURE__*/ function(COMMON_SETTING_TYPE) {
|
|
1137
1158
|
COMMON_SETTING_TYPE["DEFAULT_DISPLAY"] = "defaultDisplay";
|
|
1138
1159
|
COMMON_SETTING_TYPE["REQUIRED"] = "required";
|
|
1139
1160
|
COMMON_SETTING_TYPE["IS_HIDE"] = "isHide";
|
|
@@ -1171,44 +1192,45 @@ export var COMMON_SETTING_TYPE;
|
|
|
1171
1192
|
COMMON_SETTING_TYPE["ONLY_ALLOW_TAKE_PHOTO"] = "onlyAllowTakePhoto";
|
|
1172
1193
|
COMMON_SETTING_TYPE["FORBID_DOWNLOAD"] = "forbidDownload";
|
|
1173
1194
|
COMMON_SETTING_TYPE["ACCESS_CONTROL"] = "accessControl";
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1195
|
+
return COMMON_SETTING_TYPE;
|
|
1196
|
+
}({});
|
|
1197
|
+
export var PAGE_STATUS = /*#__PURE__*/ function(PAGE_STATUS) {
|
|
1177
1198
|
PAGE_STATUS[PAGE_STATUS["UNKNOWN"] = 0] = "UNKNOWN";
|
|
1178
1199
|
PAGE_STATUS[PAGE_STATUS["READONLY"] = 1] = "READONLY";
|
|
1179
1200
|
PAGE_STATUS[PAGE_STATUS["EDITABLE"] = 2] = "EDITABLE";
|
|
1180
1201
|
PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
*
|
|
1202
|
+
return PAGE_STATUS;
|
|
1203
|
+
}({});
|
|
1204
|
+
/**
|
|
1205
|
+
* 操作按钮
|
|
1206
|
+
* @public
|
|
1185
1207
|
*/ export var OperationItem = function OperationItem(props) {
|
|
1186
1208
|
"use strict";
|
|
1187
1209
|
_class_call_check(this, OperationItem);
|
|
1188
|
-
/**
|
|
1189
|
-
* 是否显示
|
|
1190
|
-
* @defaultValue true
|
|
1191
|
-
* @public
|
|
1210
|
+
/**
|
|
1211
|
+
* 是否显示
|
|
1212
|
+
* @defaultValue true
|
|
1213
|
+
* @public
|
|
1192
1214
|
*/ _define_property(this, "isShow", void 0);
|
|
1193
|
-
/**
|
|
1194
|
-
* 优先访问流程表单
|
|
1195
|
-
* @defaultValue false
|
|
1196
|
-
* @public
|
|
1215
|
+
/**
|
|
1216
|
+
* 优先访问流程表单
|
|
1217
|
+
* @defaultValue false
|
|
1218
|
+
* @public
|
|
1197
1219
|
*/ _define_property(this, "priorityProcess", void 0);
|
|
1198
|
-
/**
|
|
1199
|
-
* 表单ID
|
|
1200
|
-
* @defaultValue ''
|
|
1201
|
-
* @public
|
|
1220
|
+
/**
|
|
1221
|
+
* 表单ID
|
|
1222
|
+
* @defaultValue ''
|
|
1223
|
+
* @public
|
|
1202
1224
|
*/ _define_property(this, "formKey", void 0);
|
|
1203
|
-
/**
|
|
1204
|
-
* 显示文字
|
|
1205
|
-
* @defaultValue ''
|
|
1206
|
-
* @public
|
|
1225
|
+
/**
|
|
1226
|
+
* 显示文字
|
|
1227
|
+
* @defaultValue ''
|
|
1228
|
+
* @public
|
|
1207
1229
|
*/ _define_property(this, "content", void 0);
|
|
1208
|
-
/**
|
|
1209
|
-
* 打开方式
|
|
1210
|
-
* @defaultValue 'modal'
|
|
1211
|
-
* @public
|
|
1230
|
+
/**
|
|
1231
|
+
* 打开方式
|
|
1232
|
+
* @defaultValue 'modal'
|
|
1233
|
+
* @public
|
|
1212
1234
|
*/ _define_property(this, "openType", void 0);
|
|
1213
1235
|
_define_property(this, "type", void 0);
|
|
1214
1236
|
var _props_isShow;
|
|
@@ -1243,16 +1265,16 @@ export var ViewOperationItem = function ViewOperationItem(props) {
|
|
|
1243
1265
|
})) !== null && _props_headers_map !== void 0 ? _props_headers_map : [];
|
|
1244
1266
|
callFiltersAndOrders.call(this, props);
|
|
1245
1267
|
};
|
|
1246
|
-
/**
|
|
1247
|
-
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1268
|
+
/**
|
|
1269
|
+
* 自定义权限项,用于Vue容器上,注册自定义的权限
|
|
1248
1270
|
*/ export var CustomPermissionItem = function CustomPermissionItem(props) {
|
|
1249
1271
|
"use strict";
|
|
1250
1272
|
_class_call_check(this, CustomPermissionItem);
|
|
1251
|
-
/**
|
|
1252
|
-
* 人工输入的权限key
|
|
1273
|
+
/**
|
|
1274
|
+
* 人工输入的权限key
|
|
1253
1275
|
*/ _define_property(this, "key", void 0);
|
|
1254
|
-
/**
|
|
1255
|
-
* 权限名称
|
|
1276
|
+
/**
|
|
1277
|
+
* 权限名称
|
|
1256
1278
|
*/ _define_property(this, "caption", void 0);
|
|
1257
1279
|
var _props_key;
|
|
1258
1280
|
this.key = (_props_key = props.key) !== null && _props_key !== void 0 ? _props_key : genNonDuplicateId(8);
|
|
@@ -1278,15 +1300,15 @@ export var BaseStyle = function BaseStyle(props) {
|
|
|
1278
1300
|
export var OptObject = function OptObject(props) {
|
|
1279
1301
|
"use strict";
|
|
1280
1302
|
_class_call_check(this, OptObject);
|
|
1281
|
-
/**
|
|
1282
|
-
* 操作项编码
|
|
1283
|
-
* @defaultValue ''
|
|
1284
|
-
* @public
|
|
1303
|
+
/**
|
|
1304
|
+
* 操作项编码
|
|
1305
|
+
* @defaultValue ''
|
|
1306
|
+
* @public
|
|
1285
1307
|
*/ _define_property(this, "optCode", void 0);
|
|
1286
|
-
/**
|
|
1287
|
-
* 操作项类型
|
|
1288
|
-
* @defaultValue ''
|
|
1289
|
-
* @public
|
|
1308
|
+
/**
|
|
1309
|
+
* 操作项类型
|
|
1310
|
+
* @defaultValue ''
|
|
1311
|
+
* @public
|
|
1290
1312
|
*/ _define_property(this, "optType", void 0);
|
|
1291
1313
|
var _props_optCode;
|
|
1292
1314
|
this.optCode = (_props_optCode = props === null || props === void 0 ? void 0 : props.optCode) !== null && _props_optCode !== void 0 ? _props_optCode : '';
|
|
@@ -1297,25 +1319,25 @@ export var RowStyleRule = function RowStyleRule(props) {
|
|
|
1297
1319
|
"use strict";
|
|
1298
1320
|
_class_call_check(this, RowStyleRule);
|
|
1299
1321
|
var _props_filters;
|
|
1300
|
-
/**
|
|
1301
|
-
* 规则编号
|
|
1302
|
-
* @defaultValue guid
|
|
1303
|
-
* @public
|
|
1322
|
+
/**
|
|
1323
|
+
* 规则编号
|
|
1324
|
+
* @defaultValue guid
|
|
1325
|
+
* @public
|
|
1304
1326
|
*/ _define_property(this, "id", void 0);
|
|
1305
|
-
/**
|
|
1306
|
-
* 规则名称
|
|
1307
|
-
* @defaultValue ''
|
|
1308
|
-
* @public
|
|
1327
|
+
/**
|
|
1328
|
+
* 规则名称
|
|
1329
|
+
* @defaultValue ''
|
|
1330
|
+
* @public
|
|
1309
1331
|
*/ _define_property(this, "name", void 0);
|
|
1310
|
-
/**
|
|
1311
|
-
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1312
|
-
* @defaultValue 'theme'
|
|
1313
|
-
* @public
|
|
1332
|
+
/**
|
|
1333
|
+
* 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
|
|
1334
|
+
* @defaultValue 'theme'
|
|
1335
|
+
* @public
|
|
1314
1336
|
*/ _define_property(this, "color", void 0);
|
|
1315
|
-
/**
|
|
1316
|
-
* 过滤条件
|
|
1317
|
-
* @defaultValue []
|
|
1318
|
-
* @public
|
|
1337
|
+
/**
|
|
1338
|
+
* 过滤条件
|
|
1339
|
+
* @defaultValue []
|
|
1340
|
+
* @public
|
|
1319
1341
|
*/ _define_property(this, "filters", void 0);
|
|
1320
1342
|
var _props_id;
|
|
1321
1343
|
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
|