@kengic/vue 0.26.8-beta.1 → 0.26.8-beta.2
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/index.css +1 -1
- package/dist/kengic-vue.js +8845 -8835
- package/dist/src/api/WMS/models.d.ts +35 -1
- package/dist/src/component/KgButton/index.event.d.ts +18 -3
- package/dist/src/component/KgButton/index.hooks.d.ts +15 -1
- package/dist/src/component/KgButton/index.store.d.ts +4 -2
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Select.d.ts +2 -0
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Select.service.d.ts +1 -2
- package/dist/src/component/KgTable/index.hooks.d.ts +1 -1
- package/dist/src/component/KgVar/index.hooks.d.ts +4 -6
- package/dist/src/component/KgVarConfig/index.hooks.d.ts +9 -0
- package/dist/src/const/index.vm.d.ts +97 -2
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.store.d.ts +60 -0
- package/dist/src/util/kg.util.d.ts +5 -3
- package/package.json +1 -1
@@ -2,7 +2,7 @@
|
|
2
2
|
export declare class CreateVarDdaQuery {
|
3
3
|
/** 界面标识(FormID). */
|
4
4
|
frmId?: string | null;
|
5
|
-
/**
|
5
|
+
/** 菜单. */
|
6
6
|
sysPermissions?: Array<SysPermission> | null;
|
7
7
|
/** 按钮. */
|
8
8
|
varButtons?: Array<VarButton> | null;
|
@@ -397,6 +397,8 @@ export declare class VarButton {
|
|
397
397
|
permission_code?: string | null;
|
398
398
|
/** 是否使用主要按钮样式(PrimaryFlag). */
|
399
399
|
primary_flg?: number | null;
|
400
|
+
/** 配置属性. */
|
401
|
+
props?: string | null;
|
400
402
|
/** 重新查询之后, 是否保持勾选. */
|
401
403
|
re_select_after_reload_flg?: number | null;
|
402
404
|
/** 执行成功之后, 是否重新查询. */
|
@@ -425,6 +427,8 @@ export declare class VarButtonConfig {
|
|
425
427
|
frm_id?: string | null;
|
426
428
|
/** 主键. */
|
427
429
|
id?: string | null;
|
430
|
+
/** 配置属性. */
|
431
|
+
props?: string | null;
|
428
432
|
constructor(obj?: VarButtonConfig);
|
429
433
|
}
|
430
434
|
/** 父子界面. */
|
@@ -439,6 +443,8 @@ export declare class VarChildDetail {
|
|
439
443
|
frm_id?: string | null;
|
440
444
|
/** 主键. */
|
441
445
|
id?: string | null;
|
446
|
+
/** 配置属性. */
|
447
|
+
props?: string | null;
|
442
448
|
/** 排序. */
|
443
449
|
sort?: number | null;
|
444
450
|
constructor(obj?: VarChildDetail);
|
@@ -461,6 +467,8 @@ export declare class VarConfigControl {
|
|
461
467
|
id?: string | null;
|
462
468
|
/** 语言(LocaleID). */
|
463
469
|
locale_id?: string | null;
|
470
|
+
/** 配置属性. */
|
471
|
+
props?: string | null;
|
464
472
|
/** 变量名称(VariableName). */
|
465
473
|
var_nam?: string | null;
|
466
474
|
constructor(obj?: VarConfigControl);
|
@@ -477,6 +485,8 @@ export declare class VarConfigDescription {
|
|
477
485
|
id?: string | null;
|
478
486
|
/** 语言(LocaleID). */
|
479
487
|
locale_id?: string | null;
|
488
|
+
/** 配置属性. */
|
489
|
+
props?: string | null;
|
480
490
|
/** 变量名称(VariableName). */
|
481
491
|
var_nam?: string | null;
|
482
492
|
/** 显示文本(Text). */
|
@@ -509,6 +519,8 @@ export declare class VarConfigInput {
|
|
509
519
|
min_include_flg?: number | null;
|
510
520
|
/** 最小长度. */
|
511
521
|
min_length?: number | null;
|
522
|
+
/** 配置属性. */
|
523
|
+
props?: string | null;
|
512
524
|
/** 正则表达式. */
|
513
525
|
regular_expression?: string | null;
|
514
526
|
/** 验证方式. */
|
@@ -533,6 +545,8 @@ export declare class VarConfigLookup {
|
|
533
545
|
locale_id?: string | null;
|
534
546
|
/** 是否支持多选(MultipleFlag). */
|
535
547
|
mult_flg?: number | null;
|
548
|
+
/** 配置属性. */
|
549
|
+
props?: string | null;
|
536
550
|
/** 返回字段(ReturnField). */
|
537
551
|
ret_fld?: string | null;
|
538
552
|
/** 变量名称(VariableName). */
|
@@ -561,6 +575,8 @@ export declare class VarConfigPossibility {
|
|
561
575
|
lbl_clm?: string | null;
|
562
576
|
/** 语言(LocaleID). */
|
563
577
|
locale_id?: string | null;
|
578
|
+
/** 配置属性. */
|
579
|
+
props?: string | null;
|
564
580
|
/** SQL. */
|
565
581
|
sql?: string | null;
|
566
582
|
/** 数据列(ValueColumn). */
|
@@ -583,6 +599,8 @@ export declare class VarConfigTip {
|
|
583
599
|
locale_id?: string | null;
|
584
600
|
/** 位置. */
|
585
601
|
placement?: string | null;
|
602
|
+
/** 配置属性. */
|
603
|
+
props?: string | null;
|
586
604
|
/** 提示文本. */
|
587
605
|
tip?: string | null;
|
588
606
|
/** 变量名称(VariableName). */
|
@@ -669,6 +687,8 @@ export declare class VarGridConfig {
|
|
669
687
|
pg_size_opts?: string | null;
|
670
688
|
/** 查询条件的界面标识. */
|
671
689
|
prf_frm_id?: string | null;
|
690
|
+
/** 配置属性. */
|
691
|
+
props?: string | null;
|
672
692
|
/** 是否显示表格底部边框. */
|
673
693
|
show_bottom_border_flg?: number | null;
|
674
694
|
/** 是否显示表格底部左侧. */
|
@@ -707,6 +727,8 @@ export declare class VarGridDetail {
|
|
707
727
|
ord?: number | null;
|
708
728
|
/** 是否支持排序(OrderByFlag). */
|
709
729
|
ord_flg?: number | null;
|
730
|
+
/** 配置属性. */
|
731
|
+
props?: string | null;
|
710
732
|
/** 显示顺序(SortSequence). */
|
711
733
|
srtseq?: number | null;
|
712
734
|
/** 列的变量名称(VariableName). */
|
@@ -731,6 +753,8 @@ export declare class VarGridMaster {
|
|
731
753
|
grp_nam?: string | null;
|
732
754
|
/** 主键. */
|
733
755
|
id?: string | null;
|
756
|
+
/** 配置属性. */
|
757
|
+
props?: string | null;
|
734
758
|
/** 用户(UserID). */
|
735
759
|
usr_id?: string | null;
|
736
760
|
constructor(obj?: VarGridMaster);
|
@@ -769,6 +793,8 @@ export declare class VarProfileConfig {
|
|
769
793
|
header_teleport_flg?: number | null;
|
770
794
|
/** 主键. */
|
771
795
|
id?: string | null;
|
796
|
+
/** 配置属性. */
|
797
|
+
props?: string | null;
|
772
798
|
/** 是否支持拖动高度. */
|
773
799
|
resizable_flg?: number | null;
|
774
800
|
/** 是否显示视图下拉列表以及配置按钮. */
|
@@ -791,6 +817,8 @@ export declare class VarProfileDetail {
|
|
791
817
|
id?: string | null;
|
792
818
|
/** 查询条件变量名称(ProfileVariableName). */
|
793
819
|
prf_var_nam?: string | null;
|
820
|
+
/** 配置属性. */
|
821
|
+
props?: string | null;
|
794
822
|
/** 显示顺序(SortSequence). */
|
795
823
|
srtseq?: number | null;
|
796
824
|
/** 高级查询时是否将字段转换为 underscore 命名方式. */
|
@@ -815,6 +843,8 @@ export declare class VarProfileMaster {
|
|
815
843
|
id?: string | null;
|
816
844
|
/** 查询条件视图的变量名称(ProfileVariableName). */
|
817
845
|
prf_var_nam?: string | null;
|
846
|
+
/** 配置属性. */
|
847
|
+
props?: string | null;
|
818
848
|
/** 用户(UserID). */
|
819
849
|
usr_id?: string | null;
|
820
850
|
constructor(obj?: VarProfileMaster);
|
@@ -909,6 +939,8 @@ export declare class VarSubmitDetail {
|
|
909
939
|
placeholder?: string | null;
|
910
940
|
/** 所属查询条件视图的变量名称. */
|
911
941
|
prf_var_nam?: string | null;
|
942
|
+
/** 配置属性. */
|
943
|
+
props?: string | null;
|
912
944
|
/** 是否必填. */
|
913
945
|
required_flag?: number | null;
|
914
946
|
/** 所属分组. */
|
@@ -931,6 +963,8 @@ export declare class VarVariable {
|
|
931
963
|
grp_nam?: string | null;
|
932
964
|
/** 主键. */
|
933
965
|
id?: string | null;
|
966
|
+
/** 配置属性. */
|
967
|
+
props?: string | null;
|
934
968
|
/** 变量名称(VariableName). */
|
935
969
|
var_nam?: string | null;
|
936
970
|
constructor(obj?: VarVariable);
|
@@ -1,13 +1,16 @@
|
|
1
1
|
import { IKgEventListener } from '@kengic/core.core';
|
2
2
|
import { VarButton } from '../../api/WMS/models';
|
3
|
+
import { IRequestConfig, IRequestOptions } from '../../service';
|
3
4
|
/**
|
4
5
|
* 事件类型.
|
5
6
|
* 'onClick': 点击按钮
|
6
7
|
* 'onImportOk': 导入成功, 导入接口调用成功
|
7
8
|
* 'onSubmitSave': 表格内编辑时, 点击保存按钮
|
8
9
|
* 'onSubmitCancel': 表格内编辑时, 点击取消按钮
|
10
|
+
* 'onBeforeRequest': 发起请求之前
|
11
|
+
* 'onAfterRequest': 发起请求之后, 请求成功返回
|
9
12
|
*/
|
10
|
-
export declare type IKgButtonEvent = 'onClick' | 'onImportOk' | 'onSubmitSave' | 'onSubmitCancel';
|
13
|
+
export declare type IKgButtonEvent = 'onClick' | 'onImportOk' | 'onSubmitSave' | 'onSubmitCancel' | 'onBeforeRequest' | 'onAfterRequest';
|
11
14
|
export declare type IKgButtonOnClickEventListenerParameter = {
|
12
15
|
/**
|
13
16
|
* 被点击的按钮.
|
@@ -23,5 +26,17 @@ export declare type IKgButtonOnSubmitSaveEventListenerParameter = {};
|
|
23
26
|
export declare type IKgButtonOnSubmitSaveEventListener = ((param: IKgButtonOnSubmitSaveEventListenerParameter) => Promise<boolean>) & IKgEventListener;
|
24
27
|
export declare type IKgButtonOnSubmitCancelEventListenerParameter = {};
|
25
28
|
export declare type IKgButtonOnSubmitCancelEventListener = ((param: IKgButtonOnSubmitCancelEventListenerParameter) => Promise<boolean>) & IKgEventListener;
|
26
|
-
export declare type
|
27
|
-
|
29
|
+
export declare type IKgButtonOnBeforeRequestEventListenerParameter = {
|
30
|
+
requestConfig: IRequestConfig;
|
31
|
+
requestOptions: IRequestOptions;
|
32
|
+
};
|
33
|
+
export declare type IKgButtonOnBeforeRequestEventListener = ((param: IKgButtonOnBeforeRequestEventListenerParameter) => Promise<boolean>) & IKgEventListener;
|
34
|
+
export declare type IKgButtonOnAfterRequestEventListenerParameter = {
|
35
|
+
/**
|
36
|
+
* 请求返回结果.
|
37
|
+
*/
|
38
|
+
result: any;
|
39
|
+
};
|
40
|
+
export declare type IKgButtonOnAfterRequestEventListener = ((param: IKgButtonOnAfterRequestEventListenerParameter) => Promise<boolean>) & IKgEventListener;
|
41
|
+
export declare type IKgButtonEventListenerParameter = IKgButtonOnClickEventListenerParameter | IKgButtonOnImportOkEventListenerParameter | IKgButtonOnSubmitSaveEventListenerParameter | IKgButtonOnSubmitCancelEventListenerParameter | IKgButtonOnBeforeRequestEventListenerParameter | IKgButtonOnAfterRequestEventListenerParameter;
|
42
|
+
export declare type IKgButtonEventListener = IKgButtonOnClickEventListener | IKgButtonOnImportOkEventListener | IKgButtonOnSubmitSaveEventListener | IKgButtonOnSubmitCancelEventListener | IKgButtonOnBeforeRequestEventListener | IKgButtonOnAfterRequestEventListener;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { IRemoveEventListener } from '@kengic/core.core';
|
2
2
|
import { ComputedRef } from 'vue';
|
3
3
|
import { KG__VAR_BUTTON__TYPE } from '../../const';
|
4
|
-
import { IKgButtonOnClickEventListener, IKgButtonOnImportOkEventListener, IKgButtonOnSubmitCancelEventListener, IKgButtonOnSubmitSaveEventListener } from './index.event';
|
4
|
+
import { IKgButtonOnAfterRequestEventListener, IKgButtonOnBeforeRequestEventListener, IKgButtonOnClickEventListener, IKgButtonOnImportOkEventListener, IKgButtonOnSubmitCancelEventListener, IKgButtonOnSubmitSaveEventListener } from './index.event';
|
5
5
|
import { IKgButtonStore } from './index.store';
|
6
6
|
export interface IUseKgButton {
|
7
7
|
/**
|
@@ -81,6 +81,20 @@ export interface IUseKgButton {
|
|
81
81
|
* <p>判断「当前按钮」是否正在请求后端接口.</p>
|
82
82
|
*/
|
83
83
|
isCurrentButtonRequesting: ComputedRef<ReturnType<IKgButtonStore['isCurrentButtonRequesting']>>;
|
84
|
+
/**
|
85
|
+
* 监听事件: 发起请求之后, 请求成功返回.
|
86
|
+
*
|
87
|
+
* @param listener 事件监听函数.
|
88
|
+
* @param isOnce 是否只会触发一次. 默认为 undefined.
|
89
|
+
*/
|
90
|
+
onAfterRequest(listener: IKgButtonOnAfterRequestEventListener, isOnce?: boolean): IRemoveEventListener;
|
91
|
+
/**
|
92
|
+
* 监听事件: 发起请求之前.
|
93
|
+
*
|
94
|
+
* @param listener 事件监听函数.
|
95
|
+
* @param isOnce 是否只会触发一次. 默认为 undefined.
|
96
|
+
*/
|
97
|
+
onBeforeRequest(listener: IKgButtonOnBeforeRequestEventListener, isOnce?: boolean): IRemoveEventListener;
|
84
98
|
/**
|
85
99
|
* 监听事件: 点击按钮.
|
86
100
|
*
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { StoreDefinition } from 'pinia';
|
2
2
|
import { VarButton, VarButtonConfig } from '../../api/WMS/models';
|
3
3
|
import { KG__VAR_BUTTON__TYPE } from '../../const';
|
4
|
-
import { IKgButtonEvent, IKgButtonEventListenerParameter, IKgButtonOnClickEventListener, IKgButtonOnImportOkEventListener, IKgButtonOnSubmitCancelEventListener, IKgButtonOnSubmitSaveEventListener } from './index.event';
|
4
|
+
import { IKgButtonEvent, IKgButtonEventListenerParameter, IKgButtonOnAfterRequestEventListener, IKgButtonOnBeforeRequestEventListener, IKgButtonOnClickEventListener, IKgButtonOnImportOkEventListener, IKgButtonOnSubmitCancelEventListener, IKgButtonOnSubmitSaveEventListener } from './index.event';
|
5
5
|
export interface IUseKgButtonStoreState {
|
6
6
|
/**
|
7
7
|
* <p>当前按钮.</p>
|
@@ -19,8 +19,10 @@ export interface IUseKgButtonStoreState {
|
|
19
19
|
* <p>比如点击了创建按钮, 打开了创建弹窗, 此时「当前按钮」指的就是创建按钮. 当点击弹窗中的保存按钮时, 表示正在请求后端接口.</p>
|
20
20
|
*/
|
21
21
|
isCurrentButtonRequestingMap: Map<string, boolean>;
|
22
|
+
onAfterRequest: Map<string, Array<IKgButtonOnAfterRequestEventListener>>;
|
23
|
+
onBeforeRequest: Map<string, Array<IKgButtonOnBeforeRequestEventListener>>;
|
22
24
|
onClick: Map<string, Array<IKgButtonOnClickEventListener>>;
|
23
|
-
|
25
|
+
onImportOk: Map<string, Array<IKgButtonOnImportOkEventListener>>;
|
24
26
|
onSubmitCancel: Map<string, Array<IKgButtonOnSubmitCancelEventListener>>;
|
25
27
|
onSubmitSave: Map<string, Array<IKgButtonOnSubmitSaveEventListener>>;
|
26
28
|
}
|
@@ -28,6 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
28
28
|
default: undefined;
|
29
29
|
};
|
30
30
|
kgPicker: {
|
31
|
+
/** 是否允许清空. */
|
31
32
|
type: import("vue").PropType<import("ant-design-vue/lib/vc-picker/interface").PickerMode>;
|
32
33
|
default: undefined;
|
33
34
|
};
|
@@ -69,6 +70,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
69
70
|
default: undefined;
|
70
71
|
};
|
71
72
|
kgPicker: {
|
73
|
+
/** 是否允许清空. */
|
72
74
|
type: import("vue").PropType<import("ant-design-vue/lib/vc-picker/interface").PickerMode>;
|
73
75
|
default: undefined;
|
74
76
|
};
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { ComputedRef } from 'vue';
|
2
|
-
import { VarConfigPossibility } from '../../../api/WMS/models';
|
3
2
|
import { KgFormItemProps } from '../index.vm';
|
4
3
|
export declare function useKgFormItemSelect(param: {
|
5
4
|
props: KgFormItemProps;
|
@@ -25,5 +24,5 @@ export declare function useKgFormItemSelect(param: {
|
|
25
24
|
/** 作为数据的列. */
|
26
25
|
val_clm: ComputedRef<string>;
|
27
26
|
/** VarConfigPossibility 配置. */
|
28
|
-
varConfigPossibility: ComputedRef<VarConfigPossibility | null>;
|
27
|
+
varConfigPossibility: ComputedRef<import("../../..").VarConfigPossibility | null>;
|
29
28
|
};
|
@@ -96,7 +96,7 @@ export interface IUseKgTable {
|
|
96
96
|
*/
|
97
97
|
onReady(listener: IKgTableOnReadyEventListener, isOnce?: boolean): IRemoveEventListener;
|
98
98
|
/**
|
99
|
-
* @deprecated 已废弃, 请使用
|
99
|
+
* @deprecated 已废弃, 请使用 onAfterRequest() 方法.
|
100
100
|
*/
|
101
101
|
onRetrieve(listener: IKgTableOnAfterRequestEventListener, isOnce?: boolean): IRemoveEventListener;
|
102
102
|
/**
|
@@ -72,11 +72,7 @@ export declare type IUseKgVar = {
|
|
72
72
|
buttonVarName?: string | null;
|
73
73
|
varName: string | null | undefined;
|
74
74
|
}): ReturnType<IKgVarStore['getVarConfigControl']>;
|
75
|
-
/**
|
76
|
-
* 获取「变量配置:列表数据」.
|
77
|
-
*
|
78
|
-
* @param param.varName 变量名称.
|
79
|
-
*/
|
75
|
+
/** @deprecated 已弃用, 请使用 kgVar.kgVarConfig.getVarConfigPossibility() */
|
80
76
|
getVarConfigPossibility(param: {
|
81
77
|
varName: string;
|
82
78
|
}): VarConfigPossibility | null;
|
@@ -90,7 +86,9 @@ export declare type IUseKgVar = {
|
|
90
86
|
* 是否正在创建.
|
91
87
|
*/
|
92
88
|
isCreating: ComputedRef<boolean>;
|
93
|
-
/**
|
89
|
+
/**
|
90
|
+
* 正在创建:正在调用接口.
|
91
|
+
*/
|
94
92
|
isCreatingRequesting: ComputedRef<ReturnType<IKgVarStore['isCreatingRequesting']>>;
|
95
93
|
/**
|
96
94
|
* 是否正在删除.
|
@@ -1,5 +1,14 @@
|
|
1
|
+
import { VarConfigPossibility } from '../../api/WMS/models';
|
1
2
|
import { IKgVarConfigStore } from './index.store';
|
2
3
|
export interface IUseKgVarConfig {
|
4
|
+
/**
|
5
|
+
* 获取「变量配置:列表数据」.
|
6
|
+
*
|
7
|
+
* @param param.varName 变量名称.
|
8
|
+
*/
|
9
|
+
getVarConfigPossibility(param: {
|
10
|
+
varName: string;
|
11
|
+
}): VarConfigPossibility | null;
|
3
12
|
/**
|
4
13
|
* 打开变量配置弹窗, 并使用传入的宿主界面标识.
|
5
14
|
*
|
@@ -529,8 +529,7 @@ export declare type IKgVarButtonModalProperties = ModalFuncProps & {
|
|
529
529
|
kgHideCancelButton?: boolean;
|
530
530
|
};
|
531
531
|
/**
|
532
|
-
* <p
|
533
|
-
* <p>对应于 {@link VarSubmitConfig#props} 字段.</p>
|
532
|
+
* <p>额外的配置属性. 对应 {@link VarSubmitConfig#props} 字段.</p>
|
534
533
|
*/
|
535
534
|
export interface IKgVarSubmitConfigProperties {
|
536
535
|
/** 确认按钮. */
|
@@ -546,6 +545,102 @@ export interface IKgVarSubmitConfigProperties {
|
|
546
545
|
};
|
547
546
|
};
|
548
547
|
}
|
548
|
+
/**
|
549
|
+
* <p>额外的配置属性. 对应 {@link VarButton#props} 字段.</p>
|
550
|
+
*/
|
551
|
+
export interface IKgVarButtonProperties {
|
552
|
+
}
|
553
|
+
/**
|
554
|
+
* <p>额外的配置属性. 对应 {@link VarButtonConfig#props} 字段.</p>
|
555
|
+
*/
|
556
|
+
export interface IKgVarButtonConfigProperties {
|
557
|
+
}
|
558
|
+
/**
|
559
|
+
* <p>额外的配置属性. 对应 {@link VarChildDetail#props} 字段.</p>
|
560
|
+
*/
|
561
|
+
export interface IKgVarChildDetailProperties {
|
562
|
+
}
|
563
|
+
/**
|
564
|
+
* <p>额外的配置属性. 对应 {@link VarConfigControl#props} 字段.</p>
|
565
|
+
*/
|
566
|
+
export interface IKgVarConfigControlProperties {
|
567
|
+
}
|
568
|
+
/**
|
569
|
+
* <p>额外的配置属性. 对应 {@link VarConfigDescription#props} 字段.</p>
|
570
|
+
*/
|
571
|
+
export interface IKgVarConfigDescriptionProperties {
|
572
|
+
}
|
573
|
+
/**
|
574
|
+
* <p>额外的配置属性. 对应 {@link VarConfigInput#props} 字段.</p>
|
575
|
+
*/
|
576
|
+
export interface IKgVarConfigInputProperties {
|
577
|
+
}
|
578
|
+
/**
|
579
|
+
* <p>额外的配置属性. 对应 {@link VarConfigLookup#props} 字段.</p>
|
580
|
+
*/
|
581
|
+
export interface IKgVarConfigLookupProperties {
|
582
|
+
}
|
583
|
+
/**
|
584
|
+
* <p>额外的配置属性. 对应 {@link VarConfigPossibility#props} 字段.</p>
|
585
|
+
*/
|
586
|
+
export interface IKgVarConfigPossibilityProperties {
|
587
|
+
/**
|
588
|
+
* 对于级联查询, 当上级为空时, 是否将列表数据设为空. 即必须先选择上级.
|
589
|
+
*
|
590
|
+
* @default true
|
591
|
+
*/
|
592
|
+
isEmptyIfParentIsNull?: boolean;
|
593
|
+
}
|
594
|
+
/**
|
595
|
+
* <p>额外的配置属性. 对应 {@link VarConfigTip#props} 字段.</p>
|
596
|
+
*/
|
597
|
+
export interface IKgVarConfigTipProperties {
|
598
|
+
}
|
599
|
+
/**
|
600
|
+
* <p>额外的配置属性. 对应 {@link VarDda#props} 字段.</p>
|
601
|
+
*/
|
602
|
+
export interface IKgVarDdaProperties {
|
603
|
+
}
|
604
|
+
/**
|
605
|
+
* <p>额外的配置属性. 对应 {@link VarGridConfig#props} 字段.</p>
|
606
|
+
*/
|
607
|
+
export interface IKgVarGridConfigProperties {
|
608
|
+
}
|
609
|
+
/**
|
610
|
+
* <p>额外的配置属性. 对应 {@link VarGridDetail#props} 字段.</p>
|
611
|
+
*/
|
612
|
+
export interface IKgVarGridDetailProperties {
|
613
|
+
}
|
614
|
+
/**
|
615
|
+
* <p>额外的配置属性. 对应 {@link VarGridMaster#props} 字段.</p>
|
616
|
+
*/
|
617
|
+
export interface IKgVarGridMasterProperties {
|
618
|
+
}
|
619
|
+
/**
|
620
|
+
* <p>额外的配置属性. 对应 {@link VarProfileConfig#props} 字段.</p>
|
621
|
+
*/
|
622
|
+
export interface IKgVarProfileConfigProperties {
|
623
|
+
}
|
624
|
+
/**
|
625
|
+
* <p>额外的配置属性. 对应 {@link VarProfileDetail#props} 字段.</p>
|
626
|
+
*/
|
627
|
+
export interface IKgVarProfileDetailProperties {
|
628
|
+
}
|
629
|
+
/**
|
630
|
+
* <p>额外的配置属性. 对应 {@link VarProfileMaster#props} 字段.</p>
|
631
|
+
*/
|
632
|
+
export interface IKgVarProfileMasterProperties {
|
633
|
+
}
|
634
|
+
/**
|
635
|
+
* <p>额外的配置属性. 对应 {@link VarSubmitDetail#props} 字段.</p>
|
636
|
+
*/
|
637
|
+
export interface IKgVarSubmitDetailProperties {
|
638
|
+
}
|
639
|
+
/**
|
640
|
+
* <p>额外的配置属性. 对应 {@link VarVariable#props} 字段.</p>
|
641
|
+
*/
|
642
|
+
export interface IKgVarVariableProperties {
|
643
|
+
}
|
549
644
|
/**
|
550
645
|
* <p>表单控件的参数.</p>
|
551
646
|
* <p>对应于 {@link VarConfigControl.ctrl_prop} 字段, 根据表单控件的类型, 设置额外的参数.</p>
|