star-horse-lowcode 2.8.47 → 2.8.48
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 +4 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +3 -3
- package/dist/types/index.d.ts +637 -233
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
import { AllowedComponentProps } from 'vue';
|
|
1
2
|
import { App } from 'vue';
|
|
2
3
|
import { AxiosInstance } from 'axios';
|
|
3
4
|
import { AxiosResponse } from 'axios';
|
|
5
|
+
import { ComponentCustomProperties } from 'vue';
|
|
6
|
+
import { ComponentCustomProps } from 'vue';
|
|
7
|
+
import { ComponentInternalInstance } from 'vue';
|
|
8
|
+
import { ComponentOptionsBase } from 'vue';
|
|
4
9
|
import { ComponentOptionsMixin } from 'vue';
|
|
5
10
|
import { ComponentProvideOptions } from 'vue';
|
|
11
|
+
import { ComponentPublicInstance } from 'vue';
|
|
6
12
|
import { ComputedRef } from 'vue';
|
|
7
13
|
import { CreateComponentPublicInstanceWithMixins } from 'vue';
|
|
8
14
|
import { CSSProperties } from 'vue';
|
|
15
|
+
import { DebuggerEvent } from 'vue';
|
|
9
16
|
import { DefineComponent } from 'vue';
|
|
10
17
|
import { EditorView } from '@codemirror/view';
|
|
11
18
|
import { ExtractPropTypes } from 'vue';
|
|
@@ -14,7 +21,9 @@ import { GlobalDirectives } from 'vue';
|
|
|
14
21
|
import { JSONEditorSelection } from 'vanilla-jsoneditor';
|
|
15
22
|
import { JSONParser } from 'vanilla-jsoneditor';
|
|
16
23
|
import { JSONPathParser } from 'vanilla-jsoneditor';
|
|
24
|
+
import { nextTick } from 'vue';
|
|
17
25
|
import { OnClassName } from 'vanilla-jsoneditor';
|
|
26
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
18
27
|
import { OnRenderMenu } from 'vanilla-jsoneditor';
|
|
19
28
|
import { OnRenderValue } from 'vanilla-jsoneditor';
|
|
20
29
|
import { Pinia } from 'pinia';
|
|
@@ -26,8 +35,13 @@ import { Ref } from 'vue';
|
|
|
26
35
|
import { RouteLocationNormalized } from 'vue-router';
|
|
27
36
|
import { Router } from 'vue-router';
|
|
28
37
|
import { ShallowRef } from 'vue';
|
|
38
|
+
import { ShallowUnwrapRef } from 'vue';
|
|
39
|
+
import { Slot } from 'vue';
|
|
29
40
|
import { StoreDefinition } from 'pinia';
|
|
30
41
|
import { Validator } from 'vanilla-jsoneditor';
|
|
42
|
+
import { VNodeProps } from 'vue';
|
|
43
|
+
import { WatchOptions } from 'vue';
|
|
44
|
+
import { WatchStopHandle } from 'vue';
|
|
31
45
|
import { WritableComputedRef } from 'vue';
|
|
32
46
|
|
|
33
47
|
declare const __VLS_component: DefineComponent<ExtractPropTypes< {
|
|
@@ -446,7 +460,144 @@ autoHide: boolean;
|
|
|
446
460
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
447
461
|
menu: HTMLDivElement;
|
|
448
462
|
buttons: HTMLDivElement;
|
|
449
|
-
subMenu:
|
|
463
|
+
subMenu: {
|
|
464
|
+
$: ComponentInternalInstance;
|
|
465
|
+
$data: {};
|
|
466
|
+
$props: Partial<{
|
|
467
|
+
active: string | number;
|
|
468
|
+
menuData: any;
|
|
469
|
+
isSubMenu: boolean;
|
|
470
|
+
autoHide: boolean;
|
|
471
|
+
}> & Omit<{
|
|
472
|
+
readonly active: string | number;
|
|
473
|
+
readonly menuData: any;
|
|
474
|
+
readonly isSubMenu: boolean;
|
|
475
|
+
readonly autoHide: boolean;
|
|
476
|
+
readonly onMouseenter?: () => any;
|
|
477
|
+
readonly onShow?: () => any;
|
|
478
|
+
readonly onHide?: () => any;
|
|
479
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "menuData" | "isSubMenu" | "autoHide">;
|
|
480
|
+
$attrs: {
|
|
481
|
+
[x: string]: unknown;
|
|
482
|
+
};
|
|
483
|
+
$refs: {
|
|
484
|
+
[x: string]: unknown;
|
|
485
|
+
};
|
|
486
|
+
$slots: Readonly<{
|
|
487
|
+
[name: string]: Slot<any>;
|
|
488
|
+
}>;
|
|
489
|
+
$root: ComponentPublicInstance | null;
|
|
490
|
+
$parent: ComponentPublicInstance | null;
|
|
491
|
+
$host: Element | null;
|
|
492
|
+
$emit: ((event: "mouseenter") => void) & ((event: "show") => void) & ((event: "hide") => void);
|
|
493
|
+
$el: any;
|
|
494
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
495
|
+
menuData: {
|
|
496
|
+
type: PropType<any>;
|
|
497
|
+
default: () => any[];
|
|
498
|
+
};
|
|
499
|
+
isSubMenu: {
|
|
500
|
+
type: BooleanConstructor;
|
|
501
|
+
default: boolean;
|
|
502
|
+
};
|
|
503
|
+
autoHide: {
|
|
504
|
+
type: BooleanConstructor;
|
|
505
|
+
default: boolean;
|
|
506
|
+
};
|
|
507
|
+
active: {
|
|
508
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
509
|
+
default: string;
|
|
510
|
+
};
|
|
511
|
+
}>> & Readonly<{
|
|
512
|
+
onMouseenter?: () => any;
|
|
513
|
+
onShow?: () => any;
|
|
514
|
+
onHide?: () => any;
|
|
515
|
+
}>, {
|
|
516
|
+
compKey: typeof compKey;
|
|
517
|
+
StarHorseIcon: typeof StarHorseIcon;
|
|
518
|
+
menu: typeof menu;
|
|
519
|
+
buttons: typeof buttons;
|
|
520
|
+
subMenu: typeof subMenu;
|
|
521
|
+
visible: typeof visible;
|
|
522
|
+
subMenuData: typeof subMenuData;
|
|
523
|
+
menuStyle: typeof menuStyle;
|
|
524
|
+
hide: typeof hide;
|
|
525
|
+
clickHandler: typeof clickHandler;
|
|
526
|
+
showSubMenu: typeof showSubMenu;
|
|
527
|
+
mouseenterHandler: typeof mouseenterHandler;
|
|
528
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
529
|
+
mouseenter: () => any;
|
|
530
|
+
show: () => any;
|
|
531
|
+
hide: () => any;
|
|
532
|
+
}, string, {
|
|
533
|
+
active: string | number;
|
|
534
|
+
menuData: any;
|
|
535
|
+
isSubMenu: boolean;
|
|
536
|
+
autoHide: boolean;
|
|
537
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
538
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
539
|
+
created?: (() => void) | (() => void)[];
|
|
540
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
541
|
+
mounted?: (() => void) | (() => void)[];
|
|
542
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
543
|
+
updated?: (() => void) | (() => void)[];
|
|
544
|
+
activated?: (() => void) | (() => void)[];
|
|
545
|
+
deactivated?: (() => void) | (() => void)[];
|
|
546
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
547
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
548
|
+
destroyed?: (() => void) | (() => void)[];
|
|
549
|
+
unmounted?: (() => void) | (() => void)[];
|
|
550
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
551
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
552
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
553
|
+
};
|
|
554
|
+
$forceUpdate: () => void;
|
|
555
|
+
$nextTick: typeof nextTick;
|
|
556
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
557
|
+
} & Readonly<{
|
|
558
|
+
active: string | number;
|
|
559
|
+
menuData: any;
|
|
560
|
+
isSubMenu: boolean;
|
|
561
|
+
autoHide: boolean;
|
|
562
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
563
|
+
menuData: {
|
|
564
|
+
type: PropType<any>;
|
|
565
|
+
default: () => any[];
|
|
566
|
+
};
|
|
567
|
+
isSubMenu: {
|
|
568
|
+
type: BooleanConstructor;
|
|
569
|
+
default: boolean;
|
|
570
|
+
};
|
|
571
|
+
autoHide: {
|
|
572
|
+
type: BooleanConstructor;
|
|
573
|
+
default: boolean;
|
|
574
|
+
};
|
|
575
|
+
active: {
|
|
576
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
577
|
+
default: string;
|
|
578
|
+
};
|
|
579
|
+
}>> & Readonly<{
|
|
580
|
+
onMouseenter?: () => any;
|
|
581
|
+
onShow?: () => any;
|
|
582
|
+
onHide?: () => any;
|
|
583
|
+
}>, "menu" | "visible" | "compKey" | "StarHorseIcon" | "hide" | "buttons" | "subMenu" | "subMenuData" | "menuStyle" | "clickHandler" | "showSubMenu" | "mouseenterHandler" | ("active" | "menuData" | "isSubMenu" | "autoHide")> & ShallowUnwrapRef< {
|
|
584
|
+
compKey: typeof compKey;
|
|
585
|
+
StarHorseIcon: typeof StarHorseIcon;
|
|
586
|
+
menu: typeof menu;
|
|
587
|
+
buttons: typeof buttons;
|
|
588
|
+
subMenu: typeof subMenu;
|
|
589
|
+
visible: typeof visible;
|
|
590
|
+
subMenuData: typeof subMenuData;
|
|
591
|
+
menuStyle: typeof menuStyle;
|
|
592
|
+
hide: typeof hide;
|
|
593
|
+
clickHandler: typeof clickHandler;
|
|
594
|
+
showSubMenu: typeof showSubMenu;
|
|
595
|
+
mouseenterHandler: typeof mouseenterHandler;
|
|
596
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
597
|
+
$slots: {
|
|
598
|
+
title?(_: {}): any;
|
|
599
|
+
};
|
|
600
|
+
};
|
|
450
601
|
}, any>;
|
|
451
602
|
|
|
452
603
|
declare const __VLS_component_6: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -525,6 +676,10 @@ declare type __VLS_Props_41 = ItemPreps;
|
|
|
525
676
|
|
|
526
677
|
declare type __VLS_Props_42 = ItemPreps;
|
|
527
678
|
|
|
679
|
+
declare type __VLS_Props_43 = ItemPreps;
|
|
680
|
+
|
|
681
|
+
declare type __VLS_Props_44 = ItemPreps;
|
|
682
|
+
|
|
528
683
|
declare type __VLS_Props_5 = ItemPreps;
|
|
529
684
|
|
|
530
685
|
declare type __VLS_Props_6 = ItemPreps;
|
|
@@ -683,6 +838,14 @@ declare type __VLS_PublicProps_42 = {
|
|
|
683
838
|
"formData"?: any;
|
|
684
839
|
} & __VLS_Props_42;
|
|
685
840
|
|
|
841
|
+
declare type __VLS_PublicProps_43 = {
|
|
842
|
+
"formData"?: any;
|
|
843
|
+
} & __VLS_Props_43;
|
|
844
|
+
|
|
845
|
+
declare type __VLS_PublicProps_44 = {
|
|
846
|
+
"formData"?: any;
|
|
847
|
+
} & __VLS_Props_44;
|
|
848
|
+
|
|
686
849
|
declare type __VLS_PublicProps_5 = {
|
|
687
850
|
"formData"?: any;
|
|
688
851
|
} & __VLS_Props_5;
|
|
@@ -762,7 +925,144 @@ declare function __VLS_template_5(): {
|
|
|
762
925
|
refs: {
|
|
763
926
|
menu: HTMLDivElement;
|
|
764
927
|
buttons: HTMLDivElement;
|
|
765
|
-
subMenu:
|
|
928
|
+
subMenu: {
|
|
929
|
+
$: ComponentInternalInstance;
|
|
930
|
+
$data: {};
|
|
931
|
+
$props: Partial<{
|
|
932
|
+
active: string | number;
|
|
933
|
+
menuData: any;
|
|
934
|
+
isSubMenu: boolean;
|
|
935
|
+
autoHide: boolean;
|
|
936
|
+
}> & Omit<{
|
|
937
|
+
readonly active: string | number;
|
|
938
|
+
readonly menuData: any;
|
|
939
|
+
readonly isSubMenu: boolean;
|
|
940
|
+
readonly autoHide: boolean;
|
|
941
|
+
readonly onMouseenter?: () => any;
|
|
942
|
+
readonly onShow?: () => any;
|
|
943
|
+
readonly onHide?: () => any;
|
|
944
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "menuData" | "isSubMenu" | "autoHide">;
|
|
945
|
+
$attrs: {
|
|
946
|
+
[x: string]: unknown;
|
|
947
|
+
};
|
|
948
|
+
$refs: {
|
|
949
|
+
[x: string]: unknown;
|
|
950
|
+
};
|
|
951
|
+
$slots: Readonly<{
|
|
952
|
+
[name: string]: Slot<any>;
|
|
953
|
+
}>;
|
|
954
|
+
$root: ComponentPublicInstance | null;
|
|
955
|
+
$parent: ComponentPublicInstance | null;
|
|
956
|
+
$host: Element | null;
|
|
957
|
+
$emit: ((event: "mouseenter") => void) & ((event: "show") => void) & ((event: "hide") => void);
|
|
958
|
+
$el: any;
|
|
959
|
+
$options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
960
|
+
menuData: {
|
|
961
|
+
type: PropType<any>;
|
|
962
|
+
default: () => any[];
|
|
963
|
+
};
|
|
964
|
+
isSubMenu: {
|
|
965
|
+
type: BooleanConstructor;
|
|
966
|
+
default: boolean;
|
|
967
|
+
};
|
|
968
|
+
autoHide: {
|
|
969
|
+
type: BooleanConstructor;
|
|
970
|
+
default: boolean;
|
|
971
|
+
};
|
|
972
|
+
active: {
|
|
973
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
974
|
+
default: string;
|
|
975
|
+
};
|
|
976
|
+
}>> & Readonly<{
|
|
977
|
+
onMouseenter?: () => any;
|
|
978
|
+
onShow?: () => any;
|
|
979
|
+
onHide?: () => any;
|
|
980
|
+
}>, {
|
|
981
|
+
compKey: typeof compKey;
|
|
982
|
+
StarHorseIcon: typeof StarHorseIcon;
|
|
983
|
+
menu: typeof menu;
|
|
984
|
+
buttons: typeof buttons;
|
|
985
|
+
subMenu: typeof subMenu;
|
|
986
|
+
visible: typeof visible;
|
|
987
|
+
subMenuData: typeof subMenuData;
|
|
988
|
+
menuStyle: typeof menuStyle;
|
|
989
|
+
hide: typeof hide;
|
|
990
|
+
clickHandler: typeof clickHandler;
|
|
991
|
+
showSubMenu: typeof showSubMenu;
|
|
992
|
+
mouseenterHandler: typeof mouseenterHandler;
|
|
993
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
994
|
+
mouseenter: () => any;
|
|
995
|
+
show: () => any;
|
|
996
|
+
hide: () => any;
|
|
997
|
+
}, string, {
|
|
998
|
+
active: string | number;
|
|
999
|
+
menuData: any;
|
|
1000
|
+
isSubMenu: boolean;
|
|
1001
|
+
autoHide: boolean;
|
|
1002
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1003
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1004
|
+
created?: (() => void) | (() => void)[];
|
|
1005
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1006
|
+
mounted?: (() => void) | (() => void)[];
|
|
1007
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1008
|
+
updated?: (() => void) | (() => void)[];
|
|
1009
|
+
activated?: (() => void) | (() => void)[];
|
|
1010
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1011
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1012
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1013
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1014
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1015
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1016
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1017
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1018
|
+
};
|
|
1019
|
+
$forceUpdate: () => void;
|
|
1020
|
+
$nextTick: typeof nextTick;
|
|
1021
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1022
|
+
} & Readonly<{
|
|
1023
|
+
active: string | number;
|
|
1024
|
+
menuData: any;
|
|
1025
|
+
isSubMenu: boolean;
|
|
1026
|
+
autoHide: boolean;
|
|
1027
|
+
}> & Omit<Readonly<ExtractPropTypes< {
|
|
1028
|
+
menuData: {
|
|
1029
|
+
type: PropType<any>;
|
|
1030
|
+
default: () => any[];
|
|
1031
|
+
};
|
|
1032
|
+
isSubMenu: {
|
|
1033
|
+
type: BooleanConstructor;
|
|
1034
|
+
default: boolean;
|
|
1035
|
+
};
|
|
1036
|
+
autoHide: {
|
|
1037
|
+
type: BooleanConstructor;
|
|
1038
|
+
default: boolean;
|
|
1039
|
+
};
|
|
1040
|
+
active: {
|
|
1041
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1042
|
+
default: string;
|
|
1043
|
+
};
|
|
1044
|
+
}>> & Readonly<{
|
|
1045
|
+
onMouseenter?: () => any;
|
|
1046
|
+
onShow?: () => any;
|
|
1047
|
+
onHide?: () => any;
|
|
1048
|
+
}>, "menu" | "visible" | "compKey" | "StarHorseIcon" | "hide" | "buttons" | "subMenu" | "subMenuData" | "menuStyle" | "clickHandler" | "showSubMenu" | "mouseenterHandler" | ("active" | "menuData" | "isSubMenu" | "autoHide")> & ShallowUnwrapRef< {
|
|
1049
|
+
compKey: typeof compKey;
|
|
1050
|
+
StarHorseIcon: typeof StarHorseIcon;
|
|
1051
|
+
menu: typeof menu;
|
|
1052
|
+
buttons: typeof buttons;
|
|
1053
|
+
subMenu: typeof subMenu;
|
|
1054
|
+
visible: typeof visible;
|
|
1055
|
+
subMenuData: typeof subMenuData;
|
|
1056
|
+
menuStyle: typeof menuStyle;
|
|
1057
|
+
hide: typeof hide;
|
|
1058
|
+
clickHandler: typeof clickHandler;
|
|
1059
|
+
showSubMenu: typeof showSubMenu;
|
|
1060
|
+
mouseenterHandler: typeof mouseenterHandler;
|
|
1061
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
1062
|
+
$slots: {
|
|
1063
|
+
title?(_: {}): any;
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
766
1066
|
};
|
|
767
1067
|
rootEl: any;
|
|
768
1068
|
};
|
|
@@ -1048,12 +1348,14 @@ showFormItem: boolean;
|
|
|
1048
1348
|
*/
|
|
1049
1349
|
export declare function ascOrDesc(): SelectOption[];
|
|
1050
1350
|
|
|
1051
|
-
export declare const audioItem: DefineComponent<
|
|
1351
|
+
export declare const audioItem: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1052
1352
|
selectItem: (...args: any[]) => void;
|
|
1053
1353
|
selfFunc: (...args: any[]) => void;
|
|
1054
|
-
|
|
1354
|
+
"update:formData": (value: any) => void;
|
|
1355
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
1055
1356
|
onSelectItem?: (...args: any[]) => any;
|
|
1056
1357
|
onSelfFunc?: (...args: any[]) => any;
|
|
1358
|
+
"onUpdate:formData"?: (value: any) => any;
|
|
1057
1359
|
}>, {
|
|
1058
1360
|
disabled: boolean;
|
|
1059
1361
|
isDesign: boolean;
|
|
@@ -1064,11 +1366,11 @@ showFormItem: boolean;
|
|
|
1064
1366
|
audio: HTMLAudioElement;
|
|
1065
1367
|
}, any>;
|
|
1066
1368
|
|
|
1067
|
-
export declare const autocompleteItem: DefineComponent<
|
|
1369
|
+
export declare const autocompleteItem: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1068
1370
|
selectItem: (...args: any[]) => void;
|
|
1069
1371
|
selfFunc: (...args: any[]) => void;
|
|
1070
1372
|
"update:formData": (value: any) => void;
|
|
1071
|
-
}, string, PublicProps, Readonly<
|
|
1373
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
1072
1374
|
onSelectItem?: (...args: any[]) => any;
|
|
1073
1375
|
onSelfFunc?: (...args: any[]) => any;
|
|
1074
1376
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -1080,11 +1382,11 @@ isSearch: boolean;
|
|
|
1080
1382
|
showFormItem: boolean;
|
|
1081
1383
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1082
1384
|
|
|
1083
|
-
export declare const barcodeItem: DefineComponent<
|
|
1385
|
+
export declare const barcodeItem: DefineComponent<__VLS_PublicProps_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1084
1386
|
selectItem: (...args: any[]) => void;
|
|
1085
1387
|
selfFunc: (...args: any[]) => void;
|
|
1086
1388
|
"update:formData": (value: any) => void;
|
|
1087
|
-
}, string, PublicProps, Readonly<
|
|
1389
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_43> & Readonly<{
|
|
1088
1390
|
onSelectItem?: (...args: any[]) => any;
|
|
1089
1391
|
onSelfFunc?: (...args: any[]) => any;
|
|
1090
1392
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -1339,11 +1641,11 @@ export declare interface BtnHideCondition {
|
|
|
1339
1641
|
visible: boolean;
|
|
1340
1642
|
}
|
|
1341
1643
|
|
|
1342
|
-
export declare const buttonItem: DefineComponent<
|
|
1644
|
+
export declare const buttonItem: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1343
1645
|
selectItem: (...args: any[]) => void;
|
|
1344
1646
|
selfFunc: (...args: any[]) => void;
|
|
1345
1647
|
"update:formData": (value: any) => void;
|
|
1346
|
-
}, string, PublicProps, Readonly<
|
|
1648
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
1347
1649
|
onSelectItem?: (...args: any[]) => any;
|
|
1348
1650
|
onSelfFunc?: (...args: any[]) => any;
|
|
1349
1651
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -1358,6 +1660,8 @@ btnFormRef: unknown;
|
|
|
1358
1660
|
btnCompRef: unknown;
|
|
1359
1661
|
}, any>;
|
|
1360
1662
|
|
|
1663
|
+
declare const buttons: Ref<any[], any[]>;
|
|
1664
|
+
|
|
1361
1665
|
/**
|
|
1362
1666
|
* 驼峰转下划线
|
|
1363
1667
|
* @param str
|
|
@@ -1434,11 +1738,11 @@ export declare interface CardFieldInfo extends TabFieldInfo {
|
|
|
1434
1738
|
headerFieldList?: FieldInfo[];
|
|
1435
1739
|
}
|
|
1436
1740
|
|
|
1437
|
-
export declare const cascadeItem: DefineComponent<
|
|
1741
|
+
export declare const cascadeItem: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1438
1742
|
selectItem: (...args: any[]) => void;
|
|
1439
1743
|
selfFunc: (...args: any[]) => void;
|
|
1440
1744
|
"update:formData": (value: any) => void;
|
|
1441
|
-
}, string, PublicProps, Readonly<
|
|
1745
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
1442
1746
|
onSelectItem?: (...args: any[]) => any;
|
|
1443
1747
|
onSelfFunc?: (...args: any[]) => any;
|
|
1444
1748
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -1450,11 +1754,11 @@ isSearch: boolean;
|
|
|
1450
1754
|
showFormItem: boolean;
|
|
1451
1755
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1452
1756
|
|
|
1453
|
-
export declare const checkboxItem: DefineComponent<
|
|
1757
|
+
export declare const checkboxItem: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1454
1758
|
selectItem: (...args: any[]) => void;
|
|
1455
1759
|
selfFunc: (...args: any[]) => void;
|
|
1456
1760
|
"update:formData": (value: any) => void;
|
|
1457
|
-
}, string, PublicProps, Readonly<
|
|
1761
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
1458
1762
|
onSelectItem?: (...args: any[]) => any;
|
|
1459
1763
|
onSelfFunc?: (...args: any[]) => any;
|
|
1460
1764
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -1483,6 +1787,8 @@ export declare function checkObject(dataForm: any, item: any, index: number, par
|
|
|
1483
1787
|
*/
|
|
1484
1788
|
export declare function checkVisible(item: any, dataForm: any): any;
|
|
1485
1789
|
|
|
1790
|
+
declare const clickHandler: (item: any) => void;
|
|
1791
|
+
|
|
1486
1792
|
/**
|
|
1487
1793
|
* 关闭加载框
|
|
1488
1794
|
*/
|
|
@@ -1554,11 +1860,11 @@ showFormItem: boolean;
|
|
|
1554
1860
|
export declare interface CollapseList extends TabFieldInfo {
|
|
1555
1861
|
}
|
|
1556
1862
|
|
|
1557
|
-
export declare const colorItem: DefineComponent<
|
|
1863
|
+
export declare const colorItem: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1558
1864
|
selectItem: (...args: any[]) => void;
|
|
1559
1865
|
selfFunc: (...args: any[]) => void;
|
|
1560
1866
|
"update:formData": (value: any) => void;
|
|
1561
|
-
}, string, PublicProps, Readonly<
|
|
1867
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
1562
1868
|
onSelectItem?: (...args: any[]) => any;
|
|
1563
1869
|
onSelfFunc?: (...args: any[]) => any;
|
|
1564
1870
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -1864,11 +2170,11 @@ export declare function createJoinCondition(leftFieldName: string, rightFieldNam
|
|
|
1864
2170
|
*/
|
|
1865
2171
|
export declare function createTree(data: any, valField: string, name: string, val: string): SelectOption[];
|
|
1866
2172
|
|
|
1867
|
-
export declare const cronItem: DefineComponent<
|
|
2173
|
+
export declare const cronItem: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1868
2174
|
selectItem: (...args: any[]) => void;
|
|
1869
2175
|
selfFunc: (...args: any[]) => void;
|
|
1870
2176
|
"update:formData": (value: any) => void;
|
|
1871
|
-
}, string, PublicProps, Readonly<
|
|
2177
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
1872
2178
|
onSelectItem?: (...args: any[]) => any;
|
|
1873
2179
|
onSelfFunc?: (...args: any[]) => any;
|
|
1874
2180
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2426,11 +2732,11 @@ export declare function dateCompList(): string[];
|
|
|
2426
2732
|
*/
|
|
2427
2733
|
export declare function dateParse(date: Date, needTime?: boolean, split?: string, needSecond?: boolean): string;
|
|
2428
2734
|
|
|
2429
|
-
export declare const datetimeItem: DefineComponent<
|
|
2735
|
+
export declare const datetimeItem: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2430
2736
|
selectItem: (...args: any[]) => void;
|
|
2431
2737
|
selfFunc: (...args: any[]) => void;
|
|
2432
2738
|
"update:formData": (value: any) => void;
|
|
2433
|
-
}, string, PublicProps, Readonly<
|
|
2739
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
2434
2740
|
onSelectItem?: (...args: any[]) => any;
|
|
2435
2741
|
onSelfFunc?: (...args: any[]) => any;
|
|
2436
2742
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2485,11 +2791,11 @@ isSearch: boolean;
|
|
|
2485
2791
|
showFormItem: boolean;
|
|
2486
2792
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2487
2793
|
|
|
2488
|
-
export declare const dialogInputItem: DefineComponent<
|
|
2794
|
+
export declare const dialogInputItem: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2489
2795
|
selectItem: (...args: any[]) => void;
|
|
2490
2796
|
selfFunc: (...args: any[]) => void;
|
|
2491
2797
|
"update:formData": (value: any) => void;
|
|
2492
|
-
}, string, PublicProps, Readonly<
|
|
2798
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
|
|
2493
2799
|
onSelectItem?: (...args: any[]) => any;
|
|
2494
2800
|
onSelfFunc?: (...args: any[]) => any;
|
|
2495
2801
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2503,11 +2809,11 @@ showFormItem: boolean;
|
|
|
2503
2809
|
dialogInputTableRef: unknown;
|
|
2504
2810
|
}, any>;
|
|
2505
2811
|
|
|
2506
|
-
export declare const dialogItem: DefineComponent<
|
|
2812
|
+
export declare const dialogItem: DefineComponent<__VLS_PublicProps_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2507
2813
|
selectItem: (...args: any[]) => void;
|
|
2508
2814
|
selfFunc: (...args: any[]) => void;
|
|
2509
2815
|
"update:formData": (value: any) => void;
|
|
2510
|
-
}, string, PublicProps, Readonly<
|
|
2816
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_44> & Readonly<{
|
|
2511
2817
|
onSelectItem?: (...args: any[]) => any;
|
|
2512
2818
|
onSelfFunc?: (...args: any[]) => any;
|
|
2513
2819
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2586,11 +2892,11 @@ export declare type DialogProps = {
|
|
|
2586
2892
|
*/
|
|
2587
2893
|
export declare function dictData(dictType: string, exclusion?: Array<string>, userUrl?: string): Promise<SelectOption[]>;
|
|
2588
2894
|
|
|
2589
|
-
export declare const dividerItem: DefineComponent<
|
|
2895
|
+
export declare const dividerItem: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2590
2896
|
selectItem: (...args: any[]) => void;
|
|
2591
2897
|
selfFunc: (...args: any[]) => void;
|
|
2592
2898
|
"update:formData": (value: any) => void;
|
|
2593
|
-
}, string, PublicProps, Readonly<
|
|
2899
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
|
|
2594
2900
|
onSelectItem?: (...args: any[]) => any;
|
|
2595
2901
|
onSelfFunc?: (...args: any[]) => any;
|
|
2596
2902
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3068,11 +3374,13 @@ export declare function getRequest(url: string): Promise<AxiosResponse<any, any,
|
|
|
3068
3374
|
*/
|
|
3069
3375
|
export declare function getValidType(type: any, options?: any): any;
|
|
3070
3376
|
|
|
3071
|
-
|
|
3377
|
+
declare const hide: () => void;
|
|
3378
|
+
|
|
3379
|
+
export declare const htmleditorItem: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3072
3380
|
selectItem: (...args: any[]) => void;
|
|
3073
3381
|
selfFunc: (...args: any[]) => void;
|
|
3074
3382
|
"update:formData": (value: any) => void;
|
|
3075
|
-
}, string, PublicProps, Readonly<
|
|
3383
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
|
|
3076
3384
|
onSelectItem?: (...args: any[]) => any;
|
|
3077
3385
|
onSelfFunc?: (...args: any[]) => any;
|
|
3078
3386
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3084,11 +3392,11 @@ isSearch: boolean;
|
|
|
3084
3392
|
showFormItem: boolean;
|
|
3085
3393
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3086
3394
|
|
|
3087
|
-
export declare const htmlItem: DefineComponent<
|
|
3395
|
+
export declare const htmlItem: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3088
3396
|
selectItem: (...args: any[]) => void;
|
|
3089
3397
|
selfFunc: (...args: any[]) => void;
|
|
3090
3398
|
"update:formData": (value: any) => void;
|
|
3091
|
-
}, string, PublicProps, Readonly<
|
|
3399
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
|
|
3092
3400
|
onSelectItem?: (...args: any[]) => any;
|
|
3093
3401
|
onSelfFunc?: (...args: any[]) => any;
|
|
3094
3402
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3113,11 +3421,11 @@ export declare function httpMethod(): SelectOption[];
|
|
|
3113
3421
|
*/
|
|
3114
3422
|
export declare function httpRequest(url: string, method: string, data: any): Promise<AxiosResponse<any, any, {}>>;
|
|
3115
3423
|
|
|
3116
|
-
export declare const iconItem: DefineComponent<
|
|
3424
|
+
export declare const iconItem: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3117
3425
|
selectItem: (...args: any[]) => void;
|
|
3118
3426
|
selfFunc: (...args: any[]) => void;
|
|
3119
3427
|
"update:formData": (value: any) => void;
|
|
3120
|
-
}, string, PublicProps, Readonly<
|
|
3428
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
|
|
3121
3429
|
onSelectItem?: (...args: any[]) => any;
|
|
3122
3430
|
onSelfFunc?: (...args: any[]) => any;
|
|
3123
3431
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3131,11 +3439,11 @@ showFormItem: boolean;
|
|
|
3131
3439
|
popoverRef: unknown;
|
|
3132
3440
|
}, any>;
|
|
3133
3441
|
|
|
3134
|
-
export declare const imageItem: DefineComponent<
|
|
3442
|
+
export declare const imageItem: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3135
3443
|
selectItem: (...args: any[]) => void;
|
|
3136
3444
|
selfFunc: (...args: any[]) => void;
|
|
3137
3445
|
"update:formData": (value: any) => void;
|
|
3138
|
-
}, string, PublicProps, Readonly<
|
|
3446
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
|
|
3139
3447
|
onSelectItem?: (...args: any[]) => any;
|
|
3140
3448
|
onSelfFunc?: (...args: any[]) => any;
|
|
3141
3449
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3177,11 +3485,11 @@ export declare interface ImportInfo {
|
|
|
3177
3485
|
*/
|
|
3178
3486
|
export declare function inputCompList(): string[];
|
|
3179
3487
|
|
|
3180
|
-
export declare const inputItem: DefineComponent<
|
|
3488
|
+
export declare const inputItem: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3181
3489
|
selectItem: (...args: any[]) => void;
|
|
3182
3490
|
selfFunc: (...args: any[]) => void;
|
|
3183
3491
|
"update:formData": (value: any) => void;
|
|
3184
|
-
}, string, PublicProps, Readonly<
|
|
3492
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
|
|
3185
3493
|
onSelectItem?: (...args: any[]) => any;
|
|
3186
3494
|
onSelfFunc?: (...args: any[]) => any;
|
|
3187
3495
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3280,11 +3588,11 @@ export declare interface ItemType {
|
|
|
3280
3588
|
/**
|
|
3281
3589
|
* 字段类型
|
|
3282
3590
|
*/
|
|
3283
|
-
fieldType
|
|
3591
|
+
fieldType?: string;
|
|
3284
3592
|
/**
|
|
3285
3593
|
* 是否必填
|
|
3286
3594
|
*/
|
|
3287
|
-
required
|
|
3595
|
+
required?: boolean;
|
|
3288
3596
|
/**
|
|
3289
3597
|
* 分类
|
|
3290
3598
|
*/
|
|
@@ -3301,6 +3609,10 @@ export declare interface ItemType {
|
|
|
3301
3609
|
* 备注
|
|
3302
3610
|
*/
|
|
3303
3611
|
remark?: string;
|
|
3612
|
+
/**
|
|
3613
|
+
* 帮助
|
|
3614
|
+
*/
|
|
3615
|
+
helpMsg?: string;
|
|
3304
3616
|
/**
|
|
3305
3617
|
* 配置参数
|
|
3306
3618
|
*/
|
|
@@ -3329,11 +3641,11 @@ export declare interface JoinSearchParams {
|
|
|
3329
3641
|
or?: JoinSearchParams[];
|
|
3330
3642
|
}
|
|
3331
3643
|
|
|
3332
|
-
export declare const jsonArrayItem: DefineComponent<
|
|
3644
|
+
export declare const jsonArrayItem: DefineComponent<__VLS_PublicProps_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3333
3645
|
selectItem: (...args: any[]) => void;
|
|
3334
3646
|
selfFunc: (...args: any[]) => void;
|
|
3335
3647
|
"update:formData": (value: any) => void;
|
|
3336
|
-
}, string, PublicProps, Readonly<
|
|
3648
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_18> & Readonly<{
|
|
3337
3649
|
onSelectItem?: (...args: any[]) => any;
|
|
3338
3650
|
onSelfFunc?: (...args: any[]) => any;
|
|
3339
3651
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3345,11 +3657,11 @@ isSearch: boolean;
|
|
|
3345
3657
|
showFormItem: boolean;
|
|
3346
3658
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3347
3659
|
|
|
3348
|
-
export declare const jsonItem: DefineComponent<
|
|
3660
|
+
export declare const jsonItem: DefineComponent<__VLS_PublicProps_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3349
3661
|
selectItem: (...args: any[]) => void;
|
|
3350
3662
|
selfFunc: (...args: any[]) => void;
|
|
3351
3663
|
"update:formData": (value: any) => void;
|
|
3352
|
-
}, string, PublicProps, Readonly<
|
|
3664
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_19> & Readonly<{
|
|
3353
3665
|
onSelectItem?: (...args: any[]) => any;
|
|
3354
3666
|
onSelfFunc?: (...args: any[]) => any;
|
|
3355
3667
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3411,11 +3723,11 @@ export declare function loadGetData(url: string): Promise<{
|
|
|
3411
3723
|
*/
|
|
3412
3724
|
export declare function loadProp(prefix: string, fieldName: string, parentIndex: number, currentIndex: number): string;
|
|
3413
3725
|
|
|
3414
|
-
export declare const markdownItem: DefineComponent<
|
|
3726
|
+
export declare const markdownItem: DefineComponent<__VLS_PublicProps_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3415
3727
|
selectItem: (...args: any[]) => void;
|
|
3416
3728
|
selfFunc: (...args: any[]) => void;
|
|
3417
3729
|
"update:formData": (value: any) => void;
|
|
3418
|
-
}, string, PublicProps, Readonly<
|
|
3730
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_20> & Readonly<{
|
|
3419
3731
|
onSelectItem?: (...args: any[]) => any;
|
|
3420
3732
|
onSelfFunc?: (...args: any[]) => any;
|
|
3421
3733
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3427,6 +3739,8 @@ isSearch: boolean;
|
|
|
3427
3739
|
showFormItem: boolean;
|
|
3428
3740
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3429
3741
|
|
|
3742
|
+
declare const menu: Ref<HTMLDivElement, HTMLDivElement>;
|
|
3743
|
+
|
|
3430
3744
|
/**
|
|
3431
3745
|
* 菜单信息
|
|
3432
3746
|
*/
|
|
@@ -3450,6 +3764,12 @@ export declare interface MenusInfo {
|
|
|
3450
3764
|
meta: Meta;
|
|
3451
3765
|
}
|
|
3452
3766
|
|
|
3767
|
+
declare const menuStyle: ComputedRef< {
|
|
3768
|
+
top: string;
|
|
3769
|
+
left: string;
|
|
3770
|
+
zIndex: number;
|
|
3771
|
+
}>;
|
|
3772
|
+
|
|
3453
3773
|
/**
|
|
3454
3774
|
* 消息提
|
|
3455
3775
|
* @param msg 消息内容
|
|
@@ -3507,6 +3827,8 @@ export declare function monthRange(date: Date): {
|
|
|
3507
3827
|
lastDateStr: string;
|
|
3508
3828
|
};
|
|
3509
3829
|
|
|
3830
|
+
declare const mouseenterHandler: () => void;
|
|
3831
|
+
|
|
3510
3832
|
export declare function moveDownItem(isEdit: boolean, formItem: any, parentField: any): void;
|
|
3511
3833
|
|
|
3512
3834
|
/**
|
|
@@ -3536,11 +3858,11 @@ export declare interface NodeInfo {
|
|
|
3536
3858
|
items?: Array<any>;
|
|
3537
3859
|
}
|
|
3538
3860
|
|
|
3539
|
-
export declare const numberItem: DefineComponent<
|
|
3861
|
+
export declare const numberItem: DefineComponent<__VLS_PublicProps_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3540
3862
|
selectItem: (...args: any[]) => void;
|
|
3541
3863
|
selfFunc: (...args: any[]) => void;
|
|
3542
3864
|
"update:formData": (value: any) => void;
|
|
3543
|
-
}, string, PublicProps, Readonly<
|
|
3865
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_21> & Readonly<{
|
|
3544
3866
|
onSelectItem?: (...args: any[]) => any;
|
|
3545
3867
|
onSelfFunc?: (...args: any[]) => any;
|
|
3546
3868
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3552,11 +3874,11 @@ isSearch: boolean;
|
|
|
3552
3874
|
showFormItem: boolean;
|
|
3553
3875
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3554
3876
|
|
|
3555
|
-
export declare const numberRangeItem: DefineComponent<
|
|
3877
|
+
export declare const numberRangeItem: DefineComponent<__VLS_PublicProps_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3556
3878
|
selectItem: (...args: any[]) => void;
|
|
3557
3879
|
selfFunc: (...args: any[]) => void;
|
|
3558
3880
|
"update:formData": (value: any) => void;
|
|
3559
|
-
}, string, PublicProps, Readonly<
|
|
3881
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_22> & Readonly<{
|
|
3560
3882
|
onSelectItem?: (...args: any[]) => any;
|
|
3561
3883
|
onSelfFunc?: (...args: any[]) => any;
|
|
3562
3884
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3675,11 +3997,11 @@ export declare interface PageProps {
|
|
|
3675
3997
|
dataList?: Array<any> | null;
|
|
3676
3998
|
}
|
|
3677
3999
|
|
|
3678
|
-
export declare const pageSelectItem: DefineComponent<
|
|
4000
|
+
export declare const pageSelectItem: DefineComponent<__VLS_PublicProps_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3679
4001
|
selectItem: (...args: any[]) => void;
|
|
3680
4002
|
selfFunc: (...args: any[]) => void;
|
|
3681
4003
|
"update:formData": (value: any) => void;
|
|
3682
|
-
}, string, PublicProps, Readonly<
|
|
4004
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_23> & Readonly<{
|
|
3683
4005
|
onSelectItem?: (...args: any[]) => any;
|
|
3684
4006
|
onSelfFunc?: (...args: any[]) => any;
|
|
3685
4007
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3702,11 +4024,11 @@ export declare function parseDateByType(val: any, type: string, needSecond?: boo
|
|
|
3702
4024
|
*/
|
|
3703
4025
|
export declare function parseListData(item: any, val: any): any;
|
|
3704
4026
|
|
|
3705
|
-
export declare const passwordItem: DefineComponent<
|
|
4027
|
+
export declare const passwordItem: DefineComponent<__VLS_PublicProps_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3706
4028
|
selectItem: (...args: any[]) => void;
|
|
3707
4029
|
selfFunc: (...args: any[]) => void;
|
|
3708
4030
|
"update:formData": (value: any) => void;
|
|
3709
|
-
}, string, PublicProps, Readonly<
|
|
4031
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_24> & Readonly<{
|
|
3710
4032
|
onSelectItem?: (...args: any[]) => any;
|
|
3711
4033
|
onSelfFunc?: (...args: any[]) => any;
|
|
3712
4034
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3744,11 +4066,11 @@ export declare interface PreValid {
|
|
|
3744
4066
|
msg?: string;
|
|
3745
4067
|
}
|
|
3746
4068
|
|
|
3747
|
-
export declare const qrcodeItem: DefineComponent<
|
|
4069
|
+
export declare const qrcodeItem: DefineComponent<__VLS_PublicProps_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3748
4070
|
selectItem: (...args: any[]) => void;
|
|
3749
4071
|
selfFunc: (...args: any[]) => void;
|
|
3750
4072
|
"update:formData": (value: any) => void;
|
|
3751
|
-
}, string, PublicProps, Readonly<
|
|
4073
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_42> & Readonly<{
|
|
3752
4074
|
onSelectItem?: (...args: any[]) => any;
|
|
3753
4075
|
onSelfFunc?: (...args: any[]) => any;
|
|
3754
4076
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3760,11 +4082,11 @@ isSearch: boolean;
|
|
|
3760
4082
|
showFormItem: boolean;
|
|
3761
4083
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3762
4084
|
|
|
3763
|
-
export declare const radioItem: DefineComponent<
|
|
4085
|
+
export declare const radioItem: DefineComponent<__VLS_PublicProps_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3764
4086
|
selectItem: (...args: any[]) => void;
|
|
3765
4087
|
selfFunc: (...args: any[]) => void;
|
|
3766
4088
|
"update:formData": (value: any) => void;
|
|
3767
|
-
}, string, PublicProps, Readonly<
|
|
4089
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_25> & Readonly<{
|
|
3768
4090
|
onSelectItem?: (...args: any[]) => any;
|
|
3769
4091
|
onSelfFunc?: (...args: any[]) => any;
|
|
3770
4092
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3776,11 +4098,11 @@ isSearch: boolean;
|
|
|
3776
4098
|
showFormItem: boolean;
|
|
3777
4099
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3778
4100
|
|
|
3779
|
-
export declare const rateItem: DefineComponent<
|
|
4101
|
+
export declare const rateItem: DefineComponent<__VLS_PublicProps_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3780
4102
|
selectItem: (...args: any[]) => void;
|
|
3781
4103
|
selfFunc: (...args: any[]) => void;
|
|
3782
4104
|
"update:formData": (value: any) => void;
|
|
3783
|
-
}, string, PublicProps, Readonly<
|
|
4105
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_26> & Readonly<{
|
|
3784
4106
|
onSelectItem?: (...args: any[]) => any;
|
|
3785
4107
|
onSelfFunc?: (...args: any[]) => any;
|
|
3786
4108
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -4018,11 +4340,11 @@ export declare type SearchProps = {
|
|
|
4018
4340
|
*/
|
|
4019
4341
|
export declare function selectCompList(): string[];
|
|
4020
4342
|
|
|
4021
|
-
export declare const selectItem: DefineComponent<
|
|
4343
|
+
export declare const selectItem: DefineComponent<__VLS_PublicProps_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4022
4344
|
selectItem: (...args: any[]) => void;
|
|
4023
4345
|
selfFunc: (...args: any[]) => void;
|
|
4024
4346
|
"update:formData": (value: any) => void;
|
|
4025
|
-
}, string, PublicProps, Readonly<
|
|
4347
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_27> & Readonly<{
|
|
4026
4348
|
onSelectItem?: (...args: any[]) => any;
|
|
4027
4349
|
onSelfFunc?: (...args: any[]) => any;
|
|
4028
4350
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -4137,6 +4459,8 @@ export declare type ShortKey = {
|
|
|
4137
4459
|
handler?: Function;
|
|
4138
4460
|
};
|
|
4139
4461
|
|
|
4462
|
+
declare const showSubMenu: (item: any, index: number) => void;
|
|
4463
|
+
|
|
4140
4464
|
export declare const ShTableListColumn: DefineComponent<ExtractPropTypes< {
|
|
4141
4465
|
dataForm: {
|
|
4142
4466
|
type: ObjectConstructor;
|
|
@@ -4214,12 +4538,14 @@ size: string;
|
|
|
4214
4538
|
staticColumn: string;
|
|
4215
4539
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4216
4540
|
|
|
4217
|
-
export declare const signatureItem: DefineComponent<
|
|
4541
|
+
export declare const signatureItem: DefineComponent<__VLS_PublicProps_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4218
4542
|
selectItem: (...args: any[]) => void;
|
|
4219
4543
|
selfFunc: (...args: any[]) => void;
|
|
4220
|
-
|
|
4544
|
+
"update:formData": (value: any) => void;
|
|
4545
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_28> & Readonly<{
|
|
4221
4546
|
onSelectItem?: (...args: any[]) => any;
|
|
4222
4547
|
onSelfFunc?: (...args: any[]) => any;
|
|
4548
|
+
"onUpdate:formData"?: (value: any) => any;
|
|
4223
4549
|
}>, {
|
|
4224
4550
|
disabled: boolean;
|
|
4225
4551
|
isDesign: boolean;
|
|
@@ -4230,11 +4556,11 @@ showFormItem: boolean;
|
|
|
4230
4556
|
signatureCanvas: HTMLCanvasElement;
|
|
4231
4557
|
}, any>;
|
|
4232
4558
|
|
|
4233
|
-
export declare const sliderItem: DefineComponent<
|
|
4559
|
+
export declare const sliderItem: DefineComponent<__VLS_PublicProps_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4234
4560
|
selectItem: (...args: any[]) => void;
|
|
4235
4561
|
selfFunc: (...args: any[]) => void;
|
|
4236
4562
|
"update:formData": (value: any) => void;
|
|
4237
|
-
}, string, PublicProps, Readonly<
|
|
4563
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_29> & Readonly<{
|
|
4238
4564
|
onSelectItem?: (...args: any[]) => any;
|
|
4239
4565
|
onSelfFunc?: (...args: any[]) => any;
|
|
4240
4566
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -5986,8 +6312,8 @@ height: number;
|
|
|
5986
6312
|
width: number;
|
|
5987
6313
|
color: string;
|
|
5988
6314
|
cursor: string;
|
|
5989
|
-
backgroundColor: string;
|
|
5990
6315
|
borderOffset: number;
|
|
6316
|
+
backgroundColor: string;
|
|
5991
6317
|
borderColor: string;
|
|
5992
6318
|
borderWidth: number;
|
|
5993
6319
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -6686,6 +7012,10 @@ export declare interface SubFieldInfo {
|
|
|
6686
7012
|
subFormFlag?: string;
|
|
6687
7013
|
}
|
|
6688
7014
|
|
|
7015
|
+
declare const subMenu: Ref<any, any>;
|
|
7016
|
+
|
|
7017
|
+
declare const subMenuData: Ref<any[], any[]>;
|
|
7018
|
+
|
|
6689
7019
|
/**
|
|
6690
7020
|
* 成功提示
|
|
6691
7021
|
* @param msg 消息内容
|
|
@@ -6752,11 +7082,11 @@ marginRight: string;
|
|
|
6752
7082
|
svgContainer: HTMLDivElement;
|
|
6753
7083
|
}, HTMLDivElement>;
|
|
6754
7084
|
|
|
6755
|
-
export declare const switchItem: DefineComponent<
|
|
7085
|
+
export declare const switchItem: DefineComponent<__VLS_PublicProps_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6756
7086
|
selectItem: (...args: any[]) => void;
|
|
6757
7087
|
selfFunc: (...args: any[]) => void;
|
|
6758
7088
|
"update:formData": (value: any) => void;
|
|
6759
|
-
}, string, PublicProps, Readonly<
|
|
7089
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_30> & Readonly<{
|
|
6760
7090
|
onSelectItem?: (...args: any[]) => any;
|
|
6761
7091
|
onSelfFunc?: (...args: any[]) => any;
|
|
6762
7092
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -6939,11 +7269,11 @@ showFormItem: boolean;
|
|
|
6939
7269
|
containerTableRef: HTMLTableElement;
|
|
6940
7270
|
}, any>;
|
|
6941
7271
|
|
|
6942
|
-
export declare const tagItem: DefineComponent<
|
|
7272
|
+
export declare const tagItem: DefineComponent<__VLS_PublicProps_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6943
7273
|
selectItem: (...args: any[]) => void;
|
|
6944
7274
|
selfFunc: (...args: any[]) => void;
|
|
6945
7275
|
"update:formData": (value: any) => void;
|
|
6946
|
-
}, string, PublicProps, Readonly<
|
|
7276
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_31> & Readonly<{
|
|
6947
7277
|
onSelectItem?: (...args: any[]) => any;
|
|
6948
7278
|
onSelfFunc?: (...args: any[]) => any;
|
|
6949
7279
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -6974,11 +7304,11 @@ export declare interface Tags {
|
|
|
6974
7304
|
menuIcon: string;
|
|
6975
7305
|
}
|
|
6976
7306
|
|
|
6977
|
-
export declare const textareaItem: DefineComponent<
|
|
7307
|
+
export declare const textareaItem: DefineComponent<__VLS_PublicProps_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6978
7308
|
selectItem: (...args: any[]) => void;
|
|
6979
7309
|
selfFunc: (...args: any[]) => void;
|
|
6980
7310
|
"update:formData": (value: any) => void;
|
|
6981
|
-
}, string, PublicProps, Readonly<
|
|
7311
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_33> & Readonly<{
|
|
6982
7312
|
onSelectItem?: (...args: any[]) => any;
|
|
6983
7313
|
onSelfFunc?: (...args: any[]) => any;
|
|
6984
7314
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -6990,11 +7320,11 @@ isSearch: boolean;
|
|
|
6990
7320
|
showFormItem: boolean;
|
|
6991
7321
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6992
7322
|
|
|
6993
|
-
export declare const textItem: DefineComponent<
|
|
7323
|
+
export declare const textItem: DefineComponent<__VLS_PublicProps_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6994
7324
|
selectItem: (...args: any[]) => void;
|
|
6995
7325
|
selfFunc: (...args: any[]) => void;
|
|
6996
7326
|
"update:formData": (value: any) => void;
|
|
6997
|
-
}, string, PublicProps, Readonly<
|
|
7327
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_32> & Readonly<{
|
|
6998
7328
|
onSelectItem?: (...args: any[]) => any;
|
|
6999
7329
|
onSelfFunc?: (...args: any[]) => any;
|
|
7000
7330
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7006,11 +7336,11 @@ isSearch: boolean;
|
|
|
7006
7336
|
showFormItem: boolean;
|
|
7007
7337
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7008
7338
|
|
|
7009
|
-
export declare const timeItem: DefineComponent<
|
|
7339
|
+
export declare const timeItem: DefineComponent<__VLS_PublicProps_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7010
7340
|
selectItem: (...args: any[]) => void;
|
|
7011
7341
|
selfFunc: (...args: any[]) => void;
|
|
7012
7342
|
"update:formData": (value: any) => void;
|
|
7013
|
-
}, string, PublicProps, Readonly<
|
|
7343
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_34> & Readonly<{
|
|
7014
7344
|
onSelectItem?: (...args: any[]) => any;
|
|
7015
7345
|
onSelfFunc?: (...args: any[]) => any;
|
|
7016
7346
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7022,11 +7352,11 @@ isSearch: boolean;
|
|
|
7022
7352
|
showFormItem: boolean;
|
|
7023
7353
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7024
7354
|
|
|
7025
|
-
export declare const timePickerItem: DefineComponent<
|
|
7355
|
+
export declare const timePickerItem: DefineComponent<__VLS_PublicProps_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7026
7356
|
selectItem: (...args: any[]) => void;
|
|
7027
7357
|
selfFunc: (...args: any[]) => void;
|
|
7028
7358
|
"update:formData": (value: any) => void;
|
|
7029
|
-
}, string, PublicProps, Readonly<
|
|
7359
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_35> & Readonly<{
|
|
7030
7360
|
onSelectItem?: (...args: any[]) => any;
|
|
7031
7361
|
onSelfFunc?: (...args: any[]) => any;
|
|
7032
7362
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7040,11 +7370,11 @@ showFormItem: boolean;
|
|
|
7040
7370
|
|
|
7041
7371
|
export declare const toggle: (value?: boolean) => boolean;
|
|
7042
7372
|
|
|
7043
|
-
export declare const transferItem: DefineComponent<
|
|
7373
|
+
export declare const transferItem: DefineComponent<__VLS_PublicProps_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7044
7374
|
selectItem: (...args: any[]) => void;
|
|
7045
7375
|
selfFunc: (...args: any[]) => void;
|
|
7046
7376
|
"update:formData": (value: any) => void;
|
|
7047
|
-
}, string, PublicProps, Readonly<
|
|
7377
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_36> & Readonly<{
|
|
7048
7378
|
onSelectItem?: (...args: any[]) => any;
|
|
7049
7379
|
onSelfFunc?: (...args: any[]) => any;
|
|
7050
7380
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7062,11 +7392,11 @@ showFormItem: boolean;
|
|
|
7062
7392
|
*/
|
|
7063
7393
|
export declare function trim(data: string): string;
|
|
7064
7394
|
|
|
7065
|
-
export declare const tselectItem: DefineComponent<
|
|
7395
|
+
export declare const tselectItem: DefineComponent<__VLS_PublicProps_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7066
7396
|
selectItem: (...args: any[]) => void;
|
|
7067
7397
|
selfFunc: (...args: any[]) => void;
|
|
7068
7398
|
"update:formData": (value: any) => void;
|
|
7069
|
-
}, string, PublicProps, Readonly<
|
|
7399
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_37> & Readonly<{
|
|
7070
7400
|
onSelectItem?: (...args: any[]) => any;
|
|
7071
7401
|
onSelfFunc?: (...args: any[]) => any;
|
|
7072
7402
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7092,11 +7422,11 @@ isSearch: boolean;
|
|
|
7092
7422
|
showFormItem: boolean;
|
|
7093
7423
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7094
7424
|
|
|
7095
|
-
export declare const uploadItem: DefineComponent<
|
|
7425
|
+
export declare const uploadItem: DefineComponent<__VLS_PublicProps_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7096
7426
|
selectItem: (...args: any[]) => void;
|
|
7097
7427
|
selfFunc: (...args: any[]) => void;
|
|
7098
7428
|
"update:formData": (value: any) => void;
|
|
7099
|
-
}, string, PublicProps, Readonly<
|
|
7429
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_38> & Readonly<{
|
|
7100
7430
|
onSelectItem?: (...args: any[]) => any;
|
|
7101
7431
|
onSelfFunc?: (...args: any[]) => any;
|
|
7102
7432
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7230,8 +7560,8 @@ remark?: string;
|
|
|
7230
7560
|
fields: {
|
|
7231
7561
|
label: string;
|
|
7232
7562
|
fieldName: string;
|
|
7233
|
-
fieldType
|
|
7234
|
-
required
|
|
7563
|
+
fieldType?: string;
|
|
7564
|
+
required?: boolean;
|
|
7235
7565
|
category: 1 | 2 | 3 | 4;
|
|
7236
7566
|
selectValues?: string | number | {
|
|
7237
7567
|
name?: string;
|
|
@@ -7241,13 +7571,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7241
7571
|
}[];
|
|
7242
7572
|
defaultValues?: any;
|
|
7243
7573
|
remark?: string;
|
|
7574
|
+
helpMsg?: string;
|
|
7244
7575
|
configParams?: Array<any>;
|
|
7245
7576
|
}[];
|
|
7246
7577
|
advancedFields: {
|
|
7247
7578
|
label: string;
|
|
7248
7579
|
fieldName: string;
|
|
7249
|
-
fieldType
|
|
7250
|
-
required
|
|
7580
|
+
fieldType?: string;
|
|
7581
|
+
required?: boolean;
|
|
7251
7582
|
category: 1 | 2 | 3 | 4;
|
|
7252
7583
|
selectValues?: string | number | {
|
|
7253
7584
|
name?: string;
|
|
@@ -7257,13 +7588,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7257
7588
|
}[];
|
|
7258
7589
|
defaultValues?: any;
|
|
7259
7590
|
remark?: string;
|
|
7591
|
+
helpMsg?: string;
|
|
7260
7592
|
configParams?: Array<any>;
|
|
7261
7593
|
}[];
|
|
7262
7594
|
selfFields: {
|
|
7263
7595
|
label: string;
|
|
7264
7596
|
fieldName: string;
|
|
7265
|
-
fieldType
|
|
7266
|
-
required
|
|
7597
|
+
fieldType?: string;
|
|
7598
|
+
required?: boolean;
|
|
7267
7599
|
category: 1 | 2 | 3 | 4;
|
|
7268
7600
|
selectValues?: string | number | {
|
|
7269
7601
|
name?: string;
|
|
@@ -7273,6 +7605,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7273
7605
|
}[];
|
|
7274
7606
|
defaultValues?: any;
|
|
7275
7607
|
remark?: string;
|
|
7608
|
+
helpMsg?: string;
|
|
7276
7609
|
configParams?: Array<any>;
|
|
7277
7610
|
}[];
|
|
7278
7611
|
actions: {
|
|
@@ -7285,8 +7618,8 @@ funcCode?: Function | string;
|
|
|
7285
7618
|
preps: {
|
|
7286
7619
|
label: string;
|
|
7287
7620
|
fieldName: string;
|
|
7288
|
-
fieldType
|
|
7289
|
-
required
|
|
7621
|
+
fieldType?: string;
|
|
7622
|
+
required?: boolean;
|
|
7290
7623
|
category: 1 | 2 | 3 | 4;
|
|
7291
7624
|
selectValues?: string | number | {
|
|
7292
7625
|
name?: string;
|
|
@@ -7296,6 +7629,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7296
7629
|
}[];
|
|
7297
7630
|
defaultValues?: any;
|
|
7298
7631
|
remark?: string;
|
|
7632
|
+
helpMsg?: string;
|
|
7299
7633
|
configParams?: Array<any>;
|
|
7300
7634
|
}[];
|
|
7301
7635
|
}[], CompType[] | {
|
|
@@ -7307,8 +7641,8 @@ remark?: string;
|
|
|
7307
7641
|
fields: {
|
|
7308
7642
|
label: string;
|
|
7309
7643
|
fieldName: string;
|
|
7310
|
-
fieldType
|
|
7311
|
-
required
|
|
7644
|
+
fieldType?: string;
|
|
7645
|
+
required?: boolean;
|
|
7312
7646
|
category: 1 | 2 | 3 | 4;
|
|
7313
7647
|
selectValues?: string | number | {
|
|
7314
7648
|
name?: string;
|
|
@@ -7318,13 +7652,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7318
7652
|
}[];
|
|
7319
7653
|
defaultValues?: any;
|
|
7320
7654
|
remark?: string;
|
|
7655
|
+
helpMsg?: string;
|
|
7321
7656
|
configParams?: Array<any>;
|
|
7322
7657
|
}[];
|
|
7323
7658
|
advancedFields: {
|
|
7324
7659
|
label: string;
|
|
7325
7660
|
fieldName: string;
|
|
7326
|
-
fieldType
|
|
7327
|
-
required
|
|
7661
|
+
fieldType?: string;
|
|
7662
|
+
required?: boolean;
|
|
7328
7663
|
category: 1 | 2 | 3 | 4;
|
|
7329
7664
|
selectValues?: string | number | {
|
|
7330
7665
|
name?: string;
|
|
@@ -7334,13 +7669,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7334
7669
|
}[];
|
|
7335
7670
|
defaultValues?: any;
|
|
7336
7671
|
remark?: string;
|
|
7672
|
+
helpMsg?: string;
|
|
7337
7673
|
configParams?: Array<any>;
|
|
7338
7674
|
}[];
|
|
7339
7675
|
selfFields: {
|
|
7340
7676
|
label: string;
|
|
7341
7677
|
fieldName: string;
|
|
7342
|
-
fieldType
|
|
7343
|
-
required
|
|
7678
|
+
fieldType?: string;
|
|
7679
|
+
required?: boolean;
|
|
7344
7680
|
category: 1 | 2 | 3 | 4;
|
|
7345
7681
|
selectValues?: string | number | {
|
|
7346
7682
|
name?: string;
|
|
@@ -7350,6 +7686,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7350
7686
|
}[];
|
|
7351
7687
|
defaultValues?: any;
|
|
7352
7688
|
remark?: string;
|
|
7689
|
+
helpMsg?: string;
|
|
7353
7690
|
configParams?: Array<any>;
|
|
7354
7691
|
}[];
|
|
7355
7692
|
actions: {
|
|
@@ -7362,8 +7699,8 @@ funcCode?: Function | string;
|
|
|
7362
7699
|
preps: {
|
|
7363
7700
|
label: string;
|
|
7364
7701
|
fieldName: string;
|
|
7365
|
-
fieldType
|
|
7366
|
-
required
|
|
7702
|
+
fieldType?: string;
|
|
7703
|
+
required?: boolean;
|
|
7367
7704
|
category: 1 | 2 | 3 | 4;
|
|
7368
7705
|
selectValues?: string | number | {
|
|
7369
7706
|
name?: string;
|
|
@@ -7373,6 +7710,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7373
7710
|
}[];
|
|
7374
7711
|
defaultValues?: any;
|
|
7375
7712
|
remark?: string;
|
|
7713
|
+
helpMsg?: string;
|
|
7376
7714
|
configParams?: Array<any>;
|
|
7377
7715
|
}[];
|
|
7378
7716
|
}[]>;
|
|
@@ -7385,8 +7723,8 @@ remark?: string;
|
|
|
7385
7723
|
fields: {
|
|
7386
7724
|
label: string;
|
|
7387
7725
|
fieldName: string;
|
|
7388
|
-
fieldType
|
|
7389
|
-
required
|
|
7726
|
+
fieldType?: string;
|
|
7727
|
+
required?: boolean;
|
|
7390
7728
|
category: 1 | 2 | 3 | 4;
|
|
7391
7729
|
selectValues?: string | number | {
|
|
7392
7730
|
name?: string;
|
|
@@ -7396,13 +7734,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7396
7734
|
}[];
|
|
7397
7735
|
defaultValues?: any;
|
|
7398
7736
|
remark?: string;
|
|
7737
|
+
helpMsg?: string;
|
|
7399
7738
|
configParams?: Array<any>;
|
|
7400
7739
|
}[];
|
|
7401
7740
|
advancedFields: {
|
|
7402
7741
|
label: string;
|
|
7403
7742
|
fieldName: string;
|
|
7404
|
-
fieldType
|
|
7405
|
-
required
|
|
7743
|
+
fieldType?: string;
|
|
7744
|
+
required?: boolean;
|
|
7406
7745
|
category: 1 | 2 | 3 | 4;
|
|
7407
7746
|
selectValues?: string | number | {
|
|
7408
7747
|
name?: string;
|
|
@@ -7412,13 +7751,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7412
7751
|
}[];
|
|
7413
7752
|
defaultValues?: any;
|
|
7414
7753
|
remark?: string;
|
|
7754
|
+
helpMsg?: string;
|
|
7415
7755
|
configParams?: Array<any>;
|
|
7416
7756
|
}[];
|
|
7417
7757
|
selfFields: {
|
|
7418
7758
|
label: string;
|
|
7419
7759
|
fieldName: string;
|
|
7420
|
-
fieldType
|
|
7421
|
-
required
|
|
7760
|
+
fieldType?: string;
|
|
7761
|
+
required?: boolean;
|
|
7422
7762
|
category: 1 | 2 | 3 | 4;
|
|
7423
7763
|
selectValues?: string | number | {
|
|
7424
7764
|
name?: string;
|
|
@@ -7428,6 +7768,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7428
7768
|
}[];
|
|
7429
7769
|
defaultValues?: any;
|
|
7430
7770
|
remark?: string;
|
|
7771
|
+
helpMsg?: string;
|
|
7431
7772
|
configParams?: Array<any>;
|
|
7432
7773
|
}[];
|
|
7433
7774
|
actions: {
|
|
@@ -7440,8 +7781,8 @@ funcCode?: Function | string;
|
|
|
7440
7781
|
preps: {
|
|
7441
7782
|
label: string;
|
|
7442
7783
|
fieldName: string;
|
|
7443
|
-
fieldType
|
|
7444
|
-
required
|
|
7784
|
+
fieldType?: string;
|
|
7785
|
+
required?: boolean;
|
|
7445
7786
|
category: 1 | 2 | 3 | 4;
|
|
7446
7787
|
selectValues?: string | number | {
|
|
7447
7788
|
name?: string;
|
|
@@ -7451,6 +7792,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7451
7792
|
}[];
|
|
7452
7793
|
defaultValues?: any;
|
|
7453
7794
|
remark?: string;
|
|
7795
|
+
helpMsg?: string;
|
|
7454
7796
|
configParams?: Array<any>;
|
|
7455
7797
|
}[];
|
|
7456
7798
|
}[], CompType[] | {
|
|
@@ -7462,8 +7804,8 @@ remark?: string;
|
|
|
7462
7804
|
fields: {
|
|
7463
7805
|
label: string;
|
|
7464
7806
|
fieldName: string;
|
|
7465
|
-
fieldType
|
|
7466
|
-
required
|
|
7807
|
+
fieldType?: string;
|
|
7808
|
+
required?: boolean;
|
|
7467
7809
|
category: 1 | 2 | 3 | 4;
|
|
7468
7810
|
selectValues?: string | number | {
|
|
7469
7811
|
name?: string;
|
|
@@ -7473,13 +7815,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7473
7815
|
}[];
|
|
7474
7816
|
defaultValues?: any;
|
|
7475
7817
|
remark?: string;
|
|
7818
|
+
helpMsg?: string;
|
|
7476
7819
|
configParams?: Array<any>;
|
|
7477
7820
|
}[];
|
|
7478
7821
|
advancedFields: {
|
|
7479
7822
|
label: string;
|
|
7480
7823
|
fieldName: string;
|
|
7481
|
-
fieldType
|
|
7482
|
-
required
|
|
7824
|
+
fieldType?: string;
|
|
7825
|
+
required?: boolean;
|
|
7483
7826
|
category: 1 | 2 | 3 | 4;
|
|
7484
7827
|
selectValues?: string | number | {
|
|
7485
7828
|
name?: string;
|
|
@@ -7489,13 +7832,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7489
7832
|
}[];
|
|
7490
7833
|
defaultValues?: any;
|
|
7491
7834
|
remark?: string;
|
|
7835
|
+
helpMsg?: string;
|
|
7492
7836
|
configParams?: Array<any>;
|
|
7493
7837
|
}[];
|
|
7494
7838
|
selfFields: {
|
|
7495
7839
|
label: string;
|
|
7496
7840
|
fieldName: string;
|
|
7497
|
-
fieldType
|
|
7498
|
-
required
|
|
7841
|
+
fieldType?: string;
|
|
7842
|
+
required?: boolean;
|
|
7499
7843
|
category: 1 | 2 | 3 | 4;
|
|
7500
7844
|
selectValues?: string | number | {
|
|
7501
7845
|
name?: string;
|
|
@@ -7505,6 +7849,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7505
7849
|
}[];
|
|
7506
7850
|
defaultValues?: any;
|
|
7507
7851
|
remark?: string;
|
|
7852
|
+
helpMsg?: string;
|
|
7508
7853
|
configParams?: Array<any>;
|
|
7509
7854
|
}[];
|
|
7510
7855
|
actions: {
|
|
@@ -7517,8 +7862,8 @@ funcCode?: Function | string;
|
|
|
7517
7862
|
preps: {
|
|
7518
7863
|
label: string;
|
|
7519
7864
|
fieldName: string;
|
|
7520
|
-
fieldType
|
|
7521
|
-
required
|
|
7865
|
+
fieldType?: string;
|
|
7866
|
+
required?: boolean;
|
|
7522
7867
|
category: 1 | 2 | 3 | 4;
|
|
7523
7868
|
selectValues?: string | number | {
|
|
7524
7869
|
name?: string;
|
|
@@ -7528,6 +7873,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7528
7873
|
}[];
|
|
7529
7874
|
defaultValues?: any;
|
|
7530
7875
|
remark?: string;
|
|
7876
|
+
helpMsg?: string;
|
|
7531
7877
|
configParams?: Array<any>;
|
|
7532
7878
|
}[];
|
|
7533
7879
|
}[]>;
|
|
@@ -7540,8 +7886,8 @@ remark?: string;
|
|
|
7540
7886
|
fields: {
|
|
7541
7887
|
label: string;
|
|
7542
7888
|
fieldName: string;
|
|
7543
|
-
fieldType
|
|
7544
|
-
required
|
|
7889
|
+
fieldType?: string;
|
|
7890
|
+
required?: boolean;
|
|
7545
7891
|
category: 1 | 2 | 3 | 4;
|
|
7546
7892
|
selectValues?: string | number | {
|
|
7547
7893
|
name?: string;
|
|
@@ -7551,13 +7897,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7551
7897
|
}[];
|
|
7552
7898
|
defaultValues?: any;
|
|
7553
7899
|
remark?: string;
|
|
7900
|
+
helpMsg?: string;
|
|
7554
7901
|
configParams?: Array<any>;
|
|
7555
7902
|
}[];
|
|
7556
7903
|
advancedFields: {
|
|
7557
7904
|
label: string;
|
|
7558
7905
|
fieldName: string;
|
|
7559
|
-
fieldType
|
|
7560
|
-
required
|
|
7906
|
+
fieldType?: string;
|
|
7907
|
+
required?: boolean;
|
|
7561
7908
|
category: 1 | 2 | 3 | 4;
|
|
7562
7909
|
selectValues?: string | number | {
|
|
7563
7910
|
name?: string;
|
|
@@ -7567,13 +7914,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7567
7914
|
}[];
|
|
7568
7915
|
defaultValues?: any;
|
|
7569
7916
|
remark?: string;
|
|
7917
|
+
helpMsg?: string;
|
|
7570
7918
|
configParams?: Array<any>;
|
|
7571
7919
|
}[];
|
|
7572
7920
|
selfFields: {
|
|
7573
7921
|
label: string;
|
|
7574
7922
|
fieldName: string;
|
|
7575
|
-
fieldType
|
|
7576
|
-
required
|
|
7923
|
+
fieldType?: string;
|
|
7924
|
+
required?: boolean;
|
|
7577
7925
|
category: 1 | 2 | 3 | 4;
|
|
7578
7926
|
selectValues?: string | number | {
|
|
7579
7927
|
name?: string;
|
|
@@ -7583,6 +7931,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7583
7931
|
}[];
|
|
7584
7932
|
defaultValues?: any;
|
|
7585
7933
|
remark?: string;
|
|
7934
|
+
helpMsg?: string;
|
|
7586
7935
|
configParams?: Array<any>;
|
|
7587
7936
|
}[];
|
|
7588
7937
|
actions: {
|
|
@@ -7595,8 +7944,8 @@ funcCode?: Function | string;
|
|
|
7595
7944
|
preps: {
|
|
7596
7945
|
label: string;
|
|
7597
7946
|
fieldName: string;
|
|
7598
|
-
fieldType
|
|
7599
|
-
required
|
|
7947
|
+
fieldType?: string;
|
|
7948
|
+
required?: boolean;
|
|
7600
7949
|
category: 1 | 2 | 3 | 4;
|
|
7601
7950
|
selectValues?: string | number | {
|
|
7602
7951
|
name?: string;
|
|
@@ -7606,6 +7955,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7606
7955
|
}[];
|
|
7607
7956
|
defaultValues?: any;
|
|
7608
7957
|
remark?: string;
|
|
7958
|
+
helpMsg?: string;
|
|
7609
7959
|
configParams?: Array<any>;
|
|
7610
7960
|
}[];
|
|
7611
7961
|
}[], CompType[] | {
|
|
@@ -7617,8 +7967,8 @@ remark?: string;
|
|
|
7617
7967
|
fields: {
|
|
7618
7968
|
label: string;
|
|
7619
7969
|
fieldName: string;
|
|
7620
|
-
fieldType
|
|
7621
|
-
required
|
|
7970
|
+
fieldType?: string;
|
|
7971
|
+
required?: boolean;
|
|
7622
7972
|
category: 1 | 2 | 3 | 4;
|
|
7623
7973
|
selectValues?: string | number | {
|
|
7624
7974
|
name?: string;
|
|
@@ -7628,13 +7978,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7628
7978
|
}[];
|
|
7629
7979
|
defaultValues?: any;
|
|
7630
7980
|
remark?: string;
|
|
7981
|
+
helpMsg?: string;
|
|
7631
7982
|
configParams?: Array<any>;
|
|
7632
7983
|
}[];
|
|
7633
7984
|
advancedFields: {
|
|
7634
7985
|
label: string;
|
|
7635
7986
|
fieldName: string;
|
|
7636
|
-
fieldType
|
|
7637
|
-
required
|
|
7987
|
+
fieldType?: string;
|
|
7988
|
+
required?: boolean;
|
|
7638
7989
|
category: 1 | 2 | 3 | 4;
|
|
7639
7990
|
selectValues?: string | number | {
|
|
7640
7991
|
name?: string;
|
|
@@ -7644,13 +7995,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7644
7995
|
}[];
|
|
7645
7996
|
defaultValues?: any;
|
|
7646
7997
|
remark?: string;
|
|
7998
|
+
helpMsg?: string;
|
|
7647
7999
|
configParams?: Array<any>;
|
|
7648
8000
|
}[];
|
|
7649
8001
|
selfFields: {
|
|
7650
8002
|
label: string;
|
|
7651
8003
|
fieldName: string;
|
|
7652
|
-
fieldType
|
|
7653
|
-
required
|
|
8004
|
+
fieldType?: string;
|
|
8005
|
+
required?: boolean;
|
|
7654
8006
|
category: 1 | 2 | 3 | 4;
|
|
7655
8007
|
selectValues?: string | number | {
|
|
7656
8008
|
name?: string;
|
|
@@ -7660,6 +8012,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7660
8012
|
}[];
|
|
7661
8013
|
defaultValues?: any;
|
|
7662
8014
|
remark?: string;
|
|
8015
|
+
helpMsg?: string;
|
|
7663
8016
|
configParams?: Array<any>;
|
|
7664
8017
|
}[];
|
|
7665
8018
|
actions: {
|
|
@@ -7672,8 +8025,8 @@ funcCode?: Function | string;
|
|
|
7672
8025
|
preps: {
|
|
7673
8026
|
label: string;
|
|
7674
8027
|
fieldName: string;
|
|
7675
|
-
fieldType
|
|
7676
|
-
required
|
|
8028
|
+
fieldType?: string;
|
|
8029
|
+
required?: boolean;
|
|
7677
8030
|
category: 1 | 2 | 3 | 4;
|
|
7678
8031
|
selectValues?: string | number | {
|
|
7679
8032
|
name?: string;
|
|
@@ -7683,6 +8036,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7683
8036
|
}[];
|
|
7684
8037
|
defaultValues?: any;
|
|
7685
8038
|
remark?: string;
|
|
8039
|
+
helpMsg?: string;
|
|
7686
8040
|
configParams?: Array<any>;
|
|
7687
8041
|
}[];
|
|
7688
8042
|
}[]>;
|
|
@@ -7751,8 +8105,8 @@ remark?: string;
|
|
|
7751
8105
|
fields: {
|
|
7752
8106
|
label: string;
|
|
7753
8107
|
fieldName: string;
|
|
7754
|
-
fieldType
|
|
7755
|
-
required
|
|
8108
|
+
fieldType?: string;
|
|
8109
|
+
required?: boolean;
|
|
7756
8110
|
category: 1 | 2 | 3 | 4;
|
|
7757
8111
|
selectValues?: string | number | {
|
|
7758
8112
|
name?: string;
|
|
@@ -7762,13 +8116,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7762
8116
|
}[];
|
|
7763
8117
|
defaultValues?: any;
|
|
7764
8118
|
remark?: string;
|
|
8119
|
+
helpMsg?: string;
|
|
7765
8120
|
configParams?: Array<any>;
|
|
7766
8121
|
}[];
|
|
7767
8122
|
advancedFields: {
|
|
7768
8123
|
label: string;
|
|
7769
8124
|
fieldName: string;
|
|
7770
|
-
fieldType
|
|
7771
|
-
required
|
|
8125
|
+
fieldType?: string;
|
|
8126
|
+
required?: boolean;
|
|
7772
8127
|
category: 1 | 2 | 3 | 4;
|
|
7773
8128
|
selectValues?: string | number | {
|
|
7774
8129
|
name?: string;
|
|
@@ -7778,13 +8133,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7778
8133
|
}[];
|
|
7779
8134
|
defaultValues?: any;
|
|
7780
8135
|
remark?: string;
|
|
8136
|
+
helpMsg?: string;
|
|
7781
8137
|
configParams?: Array<any>;
|
|
7782
8138
|
}[];
|
|
7783
8139
|
selfFields: {
|
|
7784
8140
|
label: string;
|
|
7785
8141
|
fieldName: string;
|
|
7786
|
-
fieldType
|
|
7787
|
-
required
|
|
8142
|
+
fieldType?: string;
|
|
8143
|
+
required?: boolean;
|
|
7788
8144
|
category: 1 | 2 | 3 | 4;
|
|
7789
8145
|
selectValues?: string | number | {
|
|
7790
8146
|
name?: string;
|
|
@@ -7794,6 +8150,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7794
8150
|
}[];
|
|
7795
8151
|
defaultValues?: any;
|
|
7796
8152
|
remark?: string;
|
|
8153
|
+
helpMsg?: string;
|
|
7797
8154
|
configParams?: Array<any>;
|
|
7798
8155
|
}[];
|
|
7799
8156
|
actions: {
|
|
@@ -7806,8 +8163,8 @@ funcCode?: Function | string;
|
|
|
7806
8163
|
preps: {
|
|
7807
8164
|
label: string;
|
|
7808
8165
|
fieldName: string;
|
|
7809
|
-
fieldType
|
|
7810
|
-
required
|
|
8166
|
+
fieldType?: string;
|
|
8167
|
+
required?: boolean;
|
|
7811
8168
|
category: 1 | 2 | 3 | 4;
|
|
7812
8169
|
selectValues?: string | number | {
|
|
7813
8170
|
name?: string;
|
|
@@ -7817,6 +8174,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7817
8174
|
}[];
|
|
7818
8175
|
defaultValues?: any;
|
|
7819
8176
|
remark?: string;
|
|
8177
|
+
helpMsg?: string;
|
|
7820
8178
|
configParams?: Array<any>;
|
|
7821
8179
|
}[];
|
|
7822
8180
|
}[], CompType[] | {
|
|
@@ -7828,8 +8186,8 @@ remark?: string;
|
|
|
7828
8186
|
fields: {
|
|
7829
8187
|
label: string;
|
|
7830
8188
|
fieldName: string;
|
|
7831
|
-
fieldType
|
|
7832
|
-
required
|
|
8189
|
+
fieldType?: string;
|
|
8190
|
+
required?: boolean;
|
|
7833
8191
|
category: 1 | 2 | 3 | 4;
|
|
7834
8192
|
selectValues?: string | number | {
|
|
7835
8193
|
name?: string;
|
|
@@ -7839,13 +8197,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7839
8197
|
}[];
|
|
7840
8198
|
defaultValues?: any;
|
|
7841
8199
|
remark?: string;
|
|
8200
|
+
helpMsg?: string;
|
|
7842
8201
|
configParams?: Array<any>;
|
|
7843
8202
|
}[];
|
|
7844
8203
|
advancedFields: {
|
|
7845
8204
|
label: string;
|
|
7846
8205
|
fieldName: string;
|
|
7847
|
-
fieldType
|
|
7848
|
-
required
|
|
8206
|
+
fieldType?: string;
|
|
8207
|
+
required?: boolean;
|
|
7849
8208
|
category: 1 | 2 | 3 | 4;
|
|
7850
8209
|
selectValues?: string | number | {
|
|
7851
8210
|
name?: string;
|
|
@@ -7855,13 +8214,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7855
8214
|
}[];
|
|
7856
8215
|
defaultValues?: any;
|
|
7857
8216
|
remark?: string;
|
|
8217
|
+
helpMsg?: string;
|
|
7858
8218
|
configParams?: Array<any>;
|
|
7859
8219
|
}[];
|
|
7860
8220
|
selfFields: {
|
|
7861
8221
|
label: string;
|
|
7862
8222
|
fieldName: string;
|
|
7863
|
-
fieldType
|
|
7864
|
-
required
|
|
8223
|
+
fieldType?: string;
|
|
8224
|
+
required?: boolean;
|
|
7865
8225
|
category: 1 | 2 | 3 | 4;
|
|
7866
8226
|
selectValues?: string | number | {
|
|
7867
8227
|
name?: string;
|
|
@@ -7871,6 +8231,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7871
8231
|
}[];
|
|
7872
8232
|
defaultValues?: any;
|
|
7873
8233
|
remark?: string;
|
|
8234
|
+
helpMsg?: string;
|
|
7874
8235
|
configParams?: Array<any>;
|
|
7875
8236
|
}[];
|
|
7876
8237
|
actions: {
|
|
@@ -7883,8 +8244,8 @@ funcCode?: Function | string;
|
|
|
7883
8244
|
preps: {
|
|
7884
8245
|
label: string;
|
|
7885
8246
|
fieldName: string;
|
|
7886
|
-
fieldType
|
|
7887
|
-
required
|
|
8247
|
+
fieldType?: string;
|
|
8248
|
+
required?: boolean;
|
|
7888
8249
|
category: 1 | 2 | 3 | 4;
|
|
7889
8250
|
selectValues?: string | number | {
|
|
7890
8251
|
name?: string;
|
|
@@ -7894,6 +8255,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7894
8255
|
}[];
|
|
7895
8256
|
defaultValues?: any;
|
|
7896
8257
|
remark?: string;
|
|
8258
|
+
helpMsg?: string;
|
|
7897
8259
|
configParams?: Array<any>;
|
|
7898
8260
|
}[];
|
|
7899
8261
|
}[]>;
|
|
@@ -7906,8 +8268,8 @@ remark?: string;
|
|
|
7906
8268
|
fields: {
|
|
7907
8269
|
label: string;
|
|
7908
8270
|
fieldName: string;
|
|
7909
|
-
fieldType
|
|
7910
|
-
required
|
|
8271
|
+
fieldType?: string;
|
|
8272
|
+
required?: boolean;
|
|
7911
8273
|
category: 1 | 2 | 3 | 4;
|
|
7912
8274
|
selectValues?: string | number | {
|
|
7913
8275
|
name?: string;
|
|
@@ -7917,13 +8279,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7917
8279
|
}[];
|
|
7918
8280
|
defaultValues?: any;
|
|
7919
8281
|
remark?: string;
|
|
8282
|
+
helpMsg?: string;
|
|
7920
8283
|
configParams?: Array<any>;
|
|
7921
8284
|
}[];
|
|
7922
8285
|
advancedFields: {
|
|
7923
8286
|
label: string;
|
|
7924
8287
|
fieldName: string;
|
|
7925
|
-
fieldType
|
|
7926
|
-
required
|
|
8288
|
+
fieldType?: string;
|
|
8289
|
+
required?: boolean;
|
|
7927
8290
|
category: 1 | 2 | 3 | 4;
|
|
7928
8291
|
selectValues?: string | number | {
|
|
7929
8292
|
name?: string;
|
|
@@ -7933,13 +8296,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7933
8296
|
}[];
|
|
7934
8297
|
defaultValues?: any;
|
|
7935
8298
|
remark?: string;
|
|
8299
|
+
helpMsg?: string;
|
|
7936
8300
|
configParams?: Array<any>;
|
|
7937
8301
|
}[];
|
|
7938
8302
|
selfFields: {
|
|
7939
8303
|
label: string;
|
|
7940
8304
|
fieldName: string;
|
|
7941
|
-
fieldType
|
|
7942
|
-
required
|
|
8305
|
+
fieldType?: string;
|
|
8306
|
+
required?: boolean;
|
|
7943
8307
|
category: 1 | 2 | 3 | 4;
|
|
7944
8308
|
selectValues?: string | number | {
|
|
7945
8309
|
name?: string;
|
|
@@ -7949,6 +8313,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7949
8313
|
}[];
|
|
7950
8314
|
defaultValues?: any;
|
|
7951
8315
|
remark?: string;
|
|
8316
|
+
helpMsg?: string;
|
|
7952
8317
|
configParams?: Array<any>;
|
|
7953
8318
|
}[];
|
|
7954
8319
|
actions: {
|
|
@@ -7961,8 +8326,8 @@ funcCode?: Function | string;
|
|
|
7961
8326
|
preps: {
|
|
7962
8327
|
label: string;
|
|
7963
8328
|
fieldName: string;
|
|
7964
|
-
fieldType
|
|
7965
|
-
required
|
|
8329
|
+
fieldType?: string;
|
|
8330
|
+
required?: boolean;
|
|
7966
8331
|
category: 1 | 2 | 3 | 4;
|
|
7967
8332
|
selectValues?: string | number | {
|
|
7968
8333
|
name?: string;
|
|
@@ -7972,6 +8337,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7972
8337
|
}[];
|
|
7973
8338
|
defaultValues?: any;
|
|
7974
8339
|
remark?: string;
|
|
8340
|
+
helpMsg?: string;
|
|
7975
8341
|
configParams?: Array<any>;
|
|
7976
8342
|
}[];
|
|
7977
8343
|
}[], CompType[] | {
|
|
@@ -7983,8 +8349,8 @@ remark?: string;
|
|
|
7983
8349
|
fields: {
|
|
7984
8350
|
label: string;
|
|
7985
8351
|
fieldName: string;
|
|
7986
|
-
fieldType
|
|
7987
|
-
required
|
|
8352
|
+
fieldType?: string;
|
|
8353
|
+
required?: boolean;
|
|
7988
8354
|
category: 1 | 2 | 3 | 4;
|
|
7989
8355
|
selectValues?: string | number | {
|
|
7990
8356
|
name?: string;
|
|
@@ -7994,13 +8360,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7994
8360
|
}[];
|
|
7995
8361
|
defaultValues?: any;
|
|
7996
8362
|
remark?: string;
|
|
8363
|
+
helpMsg?: string;
|
|
7997
8364
|
configParams?: Array<any>;
|
|
7998
8365
|
}[];
|
|
7999
8366
|
advancedFields: {
|
|
8000
8367
|
label: string;
|
|
8001
8368
|
fieldName: string;
|
|
8002
|
-
fieldType
|
|
8003
|
-
required
|
|
8369
|
+
fieldType?: string;
|
|
8370
|
+
required?: boolean;
|
|
8004
8371
|
category: 1 | 2 | 3 | 4;
|
|
8005
8372
|
selectValues?: string | number | {
|
|
8006
8373
|
name?: string;
|
|
@@ -8010,13 +8377,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8010
8377
|
}[];
|
|
8011
8378
|
defaultValues?: any;
|
|
8012
8379
|
remark?: string;
|
|
8380
|
+
helpMsg?: string;
|
|
8013
8381
|
configParams?: Array<any>;
|
|
8014
8382
|
}[];
|
|
8015
8383
|
selfFields: {
|
|
8016
8384
|
label: string;
|
|
8017
8385
|
fieldName: string;
|
|
8018
|
-
fieldType
|
|
8019
|
-
required
|
|
8386
|
+
fieldType?: string;
|
|
8387
|
+
required?: boolean;
|
|
8020
8388
|
category: 1 | 2 | 3 | 4;
|
|
8021
8389
|
selectValues?: string | number | {
|
|
8022
8390
|
name?: string;
|
|
@@ -8026,6 +8394,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8026
8394
|
}[];
|
|
8027
8395
|
defaultValues?: any;
|
|
8028
8396
|
remark?: string;
|
|
8397
|
+
helpMsg?: string;
|
|
8029
8398
|
configParams?: Array<any>;
|
|
8030
8399
|
}[];
|
|
8031
8400
|
actions: {
|
|
@@ -8038,8 +8407,8 @@ funcCode?: Function | string;
|
|
|
8038
8407
|
preps: {
|
|
8039
8408
|
label: string;
|
|
8040
8409
|
fieldName: string;
|
|
8041
|
-
fieldType
|
|
8042
|
-
required
|
|
8410
|
+
fieldType?: string;
|
|
8411
|
+
required?: boolean;
|
|
8043
8412
|
category: 1 | 2 | 3 | 4;
|
|
8044
8413
|
selectValues?: string | number | {
|
|
8045
8414
|
name?: string;
|
|
@@ -8049,6 +8418,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8049
8418
|
}[];
|
|
8050
8419
|
defaultValues?: any;
|
|
8051
8420
|
remark?: string;
|
|
8421
|
+
helpMsg?: string;
|
|
8052
8422
|
configParams?: Array<any>;
|
|
8053
8423
|
}[];
|
|
8054
8424
|
}[]>;
|
|
@@ -8061,8 +8431,8 @@ remark?: string;
|
|
|
8061
8431
|
fields: {
|
|
8062
8432
|
label: string;
|
|
8063
8433
|
fieldName: string;
|
|
8064
|
-
fieldType
|
|
8065
|
-
required
|
|
8434
|
+
fieldType?: string;
|
|
8435
|
+
required?: boolean;
|
|
8066
8436
|
category: 1 | 2 | 3 | 4;
|
|
8067
8437
|
selectValues?: string | number | {
|
|
8068
8438
|
name?: string;
|
|
@@ -8072,13 +8442,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8072
8442
|
}[];
|
|
8073
8443
|
defaultValues?: any;
|
|
8074
8444
|
remark?: string;
|
|
8445
|
+
helpMsg?: string;
|
|
8075
8446
|
configParams?: Array<any>;
|
|
8076
8447
|
}[];
|
|
8077
8448
|
advancedFields: {
|
|
8078
8449
|
label: string;
|
|
8079
8450
|
fieldName: string;
|
|
8080
|
-
fieldType
|
|
8081
|
-
required
|
|
8451
|
+
fieldType?: string;
|
|
8452
|
+
required?: boolean;
|
|
8082
8453
|
category: 1 | 2 | 3 | 4;
|
|
8083
8454
|
selectValues?: string | number | {
|
|
8084
8455
|
name?: string;
|
|
@@ -8088,13 +8459,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8088
8459
|
}[];
|
|
8089
8460
|
defaultValues?: any;
|
|
8090
8461
|
remark?: string;
|
|
8462
|
+
helpMsg?: string;
|
|
8091
8463
|
configParams?: Array<any>;
|
|
8092
8464
|
}[];
|
|
8093
8465
|
selfFields: {
|
|
8094
8466
|
label: string;
|
|
8095
8467
|
fieldName: string;
|
|
8096
|
-
fieldType
|
|
8097
|
-
required
|
|
8468
|
+
fieldType?: string;
|
|
8469
|
+
required?: boolean;
|
|
8098
8470
|
category: 1 | 2 | 3 | 4;
|
|
8099
8471
|
selectValues?: string | number | {
|
|
8100
8472
|
name?: string;
|
|
@@ -8104,6 +8476,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8104
8476
|
}[];
|
|
8105
8477
|
defaultValues?: any;
|
|
8106
8478
|
remark?: string;
|
|
8479
|
+
helpMsg?: string;
|
|
8107
8480
|
configParams?: Array<any>;
|
|
8108
8481
|
}[];
|
|
8109
8482
|
actions: {
|
|
@@ -8116,8 +8489,8 @@ funcCode?: Function | string;
|
|
|
8116
8489
|
preps: {
|
|
8117
8490
|
label: string;
|
|
8118
8491
|
fieldName: string;
|
|
8119
|
-
fieldType
|
|
8120
|
-
required
|
|
8492
|
+
fieldType?: string;
|
|
8493
|
+
required?: boolean;
|
|
8121
8494
|
category: 1 | 2 | 3 | 4;
|
|
8122
8495
|
selectValues?: string | number | {
|
|
8123
8496
|
name?: string;
|
|
@@ -8127,6 +8500,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8127
8500
|
}[];
|
|
8128
8501
|
defaultValues?: any;
|
|
8129
8502
|
remark?: string;
|
|
8503
|
+
helpMsg?: string;
|
|
8130
8504
|
configParams?: Array<any>;
|
|
8131
8505
|
}[];
|
|
8132
8506
|
}[], CompType[] | {
|
|
@@ -8138,8 +8512,8 @@ remark?: string;
|
|
|
8138
8512
|
fields: {
|
|
8139
8513
|
label: string;
|
|
8140
8514
|
fieldName: string;
|
|
8141
|
-
fieldType
|
|
8142
|
-
required
|
|
8515
|
+
fieldType?: string;
|
|
8516
|
+
required?: boolean;
|
|
8143
8517
|
category: 1 | 2 | 3 | 4;
|
|
8144
8518
|
selectValues?: string | number | {
|
|
8145
8519
|
name?: string;
|
|
@@ -8149,13 +8523,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8149
8523
|
}[];
|
|
8150
8524
|
defaultValues?: any;
|
|
8151
8525
|
remark?: string;
|
|
8526
|
+
helpMsg?: string;
|
|
8152
8527
|
configParams?: Array<any>;
|
|
8153
8528
|
}[];
|
|
8154
8529
|
advancedFields: {
|
|
8155
8530
|
label: string;
|
|
8156
8531
|
fieldName: string;
|
|
8157
|
-
fieldType
|
|
8158
|
-
required
|
|
8532
|
+
fieldType?: string;
|
|
8533
|
+
required?: boolean;
|
|
8159
8534
|
category: 1 | 2 | 3 | 4;
|
|
8160
8535
|
selectValues?: string | number | {
|
|
8161
8536
|
name?: string;
|
|
@@ -8165,13 +8540,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8165
8540
|
}[];
|
|
8166
8541
|
defaultValues?: any;
|
|
8167
8542
|
remark?: string;
|
|
8543
|
+
helpMsg?: string;
|
|
8168
8544
|
configParams?: Array<any>;
|
|
8169
8545
|
}[];
|
|
8170
8546
|
selfFields: {
|
|
8171
8547
|
label: string;
|
|
8172
8548
|
fieldName: string;
|
|
8173
|
-
fieldType
|
|
8174
|
-
required
|
|
8549
|
+
fieldType?: string;
|
|
8550
|
+
required?: boolean;
|
|
8175
8551
|
category: 1 | 2 | 3 | 4;
|
|
8176
8552
|
selectValues?: string | number | {
|
|
8177
8553
|
name?: string;
|
|
@@ -8181,6 +8557,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8181
8557
|
}[];
|
|
8182
8558
|
defaultValues?: any;
|
|
8183
8559
|
remark?: string;
|
|
8560
|
+
helpMsg?: string;
|
|
8184
8561
|
configParams?: Array<any>;
|
|
8185
8562
|
}[];
|
|
8186
8563
|
actions: {
|
|
@@ -8193,8 +8570,8 @@ funcCode?: Function | string;
|
|
|
8193
8570
|
preps: {
|
|
8194
8571
|
label: string;
|
|
8195
8572
|
fieldName: string;
|
|
8196
|
-
fieldType
|
|
8197
|
-
required
|
|
8573
|
+
fieldType?: string;
|
|
8574
|
+
required?: boolean;
|
|
8198
8575
|
category: 1 | 2 | 3 | 4;
|
|
8199
8576
|
selectValues?: string | number | {
|
|
8200
8577
|
name?: string;
|
|
@@ -8204,6 +8581,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8204
8581
|
}[];
|
|
8205
8582
|
defaultValues?: any;
|
|
8206
8583
|
remark?: string;
|
|
8584
|
+
helpMsg?: string;
|
|
8207
8585
|
configParams?: Array<any>;
|
|
8208
8586
|
}[];
|
|
8209
8587
|
}[]>;
|
|
@@ -8272,8 +8650,8 @@ remark?: string;
|
|
|
8272
8650
|
fields: {
|
|
8273
8651
|
label: string;
|
|
8274
8652
|
fieldName: string;
|
|
8275
|
-
fieldType
|
|
8276
|
-
required
|
|
8653
|
+
fieldType?: string;
|
|
8654
|
+
required?: boolean;
|
|
8277
8655
|
category: 1 | 2 | 3 | 4;
|
|
8278
8656
|
selectValues?: string | number | {
|
|
8279
8657
|
name?: string;
|
|
@@ -8283,13 +8661,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8283
8661
|
}[];
|
|
8284
8662
|
defaultValues?: any;
|
|
8285
8663
|
remark?: string;
|
|
8664
|
+
helpMsg?: string;
|
|
8286
8665
|
configParams?: Array<any>;
|
|
8287
8666
|
}[];
|
|
8288
8667
|
advancedFields: {
|
|
8289
8668
|
label: string;
|
|
8290
8669
|
fieldName: string;
|
|
8291
|
-
fieldType
|
|
8292
|
-
required
|
|
8670
|
+
fieldType?: string;
|
|
8671
|
+
required?: boolean;
|
|
8293
8672
|
category: 1 | 2 | 3 | 4;
|
|
8294
8673
|
selectValues?: string | number | {
|
|
8295
8674
|
name?: string;
|
|
@@ -8299,13 +8678,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8299
8678
|
}[];
|
|
8300
8679
|
defaultValues?: any;
|
|
8301
8680
|
remark?: string;
|
|
8681
|
+
helpMsg?: string;
|
|
8302
8682
|
configParams?: Array<any>;
|
|
8303
8683
|
}[];
|
|
8304
8684
|
selfFields: {
|
|
8305
8685
|
label: string;
|
|
8306
8686
|
fieldName: string;
|
|
8307
|
-
fieldType
|
|
8308
|
-
required
|
|
8687
|
+
fieldType?: string;
|
|
8688
|
+
required?: boolean;
|
|
8309
8689
|
category: 1 | 2 | 3 | 4;
|
|
8310
8690
|
selectValues?: string | number | {
|
|
8311
8691
|
name?: string;
|
|
@@ -8315,6 +8695,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8315
8695
|
}[];
|
|
8316
8696
|
defaultValues?: any;
|
|
8317
8697
|
remark?: string;
|
|
8698
|
+
helpMsg?: string;
|
|
8318
8699
|
configParams?: Array<any>;
|
|
8319
8700
|
}[];
|
|
8320
8701
|
actions: {
|
|
@@ -8327,8 +8708,8 @@ funcCode?: Function | string;
|
|
|
8327
8708
|
preps: {
|
|
8328
8709
|
label: string;
|
|
8329
8710
|
fieldName: string;
|
|
8330
|
-
fieldType
|
|
8331
|
-
required
|
|
8711
|
+
fieldType?: string;
|
|
8712
|
+
required?: boolean;
|
|
8332
8713
|
category: 1 | 2 | 3 | 4;
|
|
8333
8714
|
selectValues?: string | number | {
|
|
8334
8715
|
name?: string;
|
|
@@ -8338,6 +8719,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8338
8719
|
}[];
|
|
8339
8720
|
defaultValues?: any;
|
|
8340
8721
|
remark?: string;
|
|
8722
|
+
helpMsg?: string;
|
|
8341
8723
|
configParams?: Array<any>;
|
|
8342
8724
|
}[];
|
|
8343
8725
|
}[], CompType[] | {
|
|
@@ -8349,8 +8731,8 @@ remark?: string;
|
|
|
8349
8731
|
fields: {
|
|
8350
8732
|
label: string;
|
|
8351
8733
|
fieldName: string;
|
|
8352
|
-
fieldType
|
|
8353
|
-
required
|
|
8734
|
+
fieldType?: string;
|
|
8735
|
+
required?: boolean;
|
|
8354
8736
|
category: 1 | 2 | 3 | 4;
|
|
8355
8737
|
selectValues?: string | number | {
|
|
8356
8738
|
name?: string;
|
|
@@ -8360,13 +8742,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8360
8742
|
}[];
|
|
8361
8743
|
defaultValues?: any;
|
|
8362
8744
|
remark?: string;
|
|
8745
|
+
helpMsg?: string;
|
|
8363
8746
|
configParams?: Array<any>;
|
|
8364
8747
|
}[];
|
|
8365
8748
|
advancedFields: {
|
|
8366
8749
|
label: string;
|
|
8367
8750
|
fieldName: string;
|
|
8368
|
-
fieldType
|
|
8369
|
-
required
|
|
8751
|
+
fieldType?: string;
|
|
8752
|
+
required?: boolean;
|
|
8370
8753
|
category: 1 | 2 | 3 | 4;
|
|
8371
8754
|
selectValues?: string | number | {
|
|
8372
8755
|
name?: string;
|
|
@@ -8376,13 +8759,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8376
8759
|
}[];
|
|
8377
8760
|
defaultValues?: any;
|
|
8378
8761
|
remark?: string;
|
|
8762
|
+
helpMsg?: string;
|
|
8379
8763
|
configParams?: Array<any>;
|
|
8380
8764
|
}[];
|
|
8381
8765
|
selfFields: {
|
|
8382
8766
|
label: string;
|
|
8383
8767
|
fieldName: string;
|
|
8384
|
-
fieldType
|
|
8385
|
-
required
|
|
8768
|
+
fieldType?: string;
|
|
8769
|
+
required?: boolean;
|
|
8386
8770
|
category: 1 | 2 | 3 | 4;
|
|
8387
8771
|
selectValues?: string | number | {
|
|
8388
8772
|
name?: string;
|
|
@@ -8392,6 +8776,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8392
8776
|
}[];
|
|
8393
8777
|
defaultValues?: any;
|
|
8394
8778
|
remark?: string;
|
|
8779
|
+
helpMsg?: string;
|
|
8395
8780
|
configParams?: Array<any>;
|
|
8396
8781
|
}[];
|
|
8397
8782
|
actions: {
|
|
@@ -8404,8 +8789,8 @@ funcCode?: Function | string;
|
|
|
8404
8789
|
preps: {
|
|
8405
8790
|
label: string;
|
|
8406
8791
|
fieldName: string;
|
|
8407
|
-
fieldType
|
|
8408
|
-
required
|
|
8792
|
+
fieldType?: string;
|
|
8793
|
+
required?: boolean;
|
|
8409
8794
|
category: 1 | 2 | 3 | 4;
|
|
8410
8795
|
selectValues?: string | number | {
|
|
8411
8796
|
name?: string;
|
|
@@ -8415,6 +8800,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8415
8800
|
}[];
|
|
8416
8801
|
defaultValues?: any;
|
|
8417
8802
|
remark?: string;
|
|
8803
|
+
helpMsg?: string;
|
|
8418
8804
|
configParams?: Array<any>;
|
|
8419
8805
|
}[];
|
|
8420
8806
|
}[]>;
|
|
@@ -8427,8 +8813,8 @@ remark?: string;
|
|
|
8427
8813
|
fields: {
|
|
8428
8814
|
label: string;
|
|
8429
8815
|
fieldName: string;
|
|
8430
|
-
fieldType
|
|
8431
|
-
required
|
|
8816
|
+
fieldType?: string;
|
|
8817
|
+
required?: boolean;
|
|
8432
8818
|
category: 1 | 2 | 3 | 4;
|
|
8433
8819
|
selectValues?: string | number | {
|
|
8434
8820
|
name?: string;
|
|
@@ -8438,13 +8824,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8438
8824
|
}[];
|
|
8439
8825
|
defaultValues?: any;
|
|
8440
8826
|
remark?: string;
|
|
8827
|
+
helpMsg?: string;
|
|
8441
8828
|
configParams?: Array<any>;
|
|
8442
8829
|
}[];
|
|
8443
8830
|
advancedFields: {
|
|
8444
8831
|
label: string;
|
|
8445
8832
|
fieldName: string;
|
|
8446
|
-
fieldType
|
|
8447
|
-
required
|
|
8833
|
+
fieldType?: string;
|
|
8834
|
+
required?: boolean;
|
|
8448
8835
|
category: 1 | 2 | 3 | 4;
|
|
8449
8836
|
selectValues?: string | number | {
|
|
8450
8837
|
name?: string;
|
|
@@ -8454,13 +8841,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8454
8841
|
}[];
|
|
8455
8842
|
defaultValues?: any;
|
|
8456
8843
|
remark?: string;
|
|
8844
|
+
helpMsg?: string;
|
|
8457
8845
|
configParams?: Array<any>;
|
|
8458
8846
|
}[];
|
|
8459
8847
|
selfFields: {
|
|
8460
8848
|
label: string;
|
|
8461
8849
|
fieldName: string;
|
|
8462
|
-
fieldType
|
|
8463
|
-
required
|
|
8850
|
+
fieldType?: string;
|
|
8851
|
+
required?: boolean;
|
|
8464
8852
|
category: 1 | 2 | 3 | 4;
|
|
8465
8853
|
selectValues?: string | number | {
|
|
8466
8854
|
name?: string;
|
|
@@ -8470,6 +8858,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8470
8858
|
}[];
|
|
8471
8859
|
defaultValues?: any;
|
|
8472
8860
|
remark?: string;
|
|
8861
|
+
helpMsg?: string;
|
|
8473
8862
|
configParams?: Array<any>;
|
|
8474
8863
|
}[];
|
|
8475
8864
|
actions: {
|
|
@@ -8482,8 +8871,8 @@ funcCode?: Function | string;
|
|
|
8482
8871
|
preps: {
|
|
8483
8872
|
label: string;
|
|
8484
8873
|
fieldName: string;
|
|
8485
|
-
fieldType
|
|
8486
|
-
required
|
|
8874
|
+
fieldType?: string;
|
|
8875
|
+
required?: boolean;
|
|
8487
8876
|
category: 1 | 2 | 3 | 4;
|
|
8488
8877
|
selectValues?: string | number | {
|
|
8489
8878
|
name?: string;
|
|
@@ -8493,6 +8882,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8493
8882
|
}[];
|
|
8494
8883
|
defaultValues?: any;
|
|
8495
8884
|
remark?: string;
|
|
8885
|
+
helpMsg?: string;
|
|
8496
8886
|
configParams?: Array<any>;
|
|
8497
8887
|
}[];
|
|
8498
8888
|
}[], CompType[] | {
|
|
@@ -8504,8 +8894,8 @@ remark?: string;
|
|
|
8504
8894
|
fields: {
|
|
8505
8895
|
label: string;
|
|
8506
8896
|
fieldName: string;
|
|
8507
|
-
fieldType
|
|
8508
|
-
required
|
|
8897
|
+
fieldType?: string;
|
|
8898
|
+
required?: boolean;
|
|
8509
8899
|
category: 1 | 2 | 3 | 4;
|
|
8510
8900
|
selectValues?: string | number | {
|
|
8511
8901
|
name?: string;
|
|
@@ -8515,13 +8905,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8515
8905
|
}[];
|
|
8516
8906
|
defaultValues?: any;
|
|
8517
8907
|
remark?: string;
|
|
8908
|
+
helpMsg?: string;
|
|
8518
8909
|
configParams?: Array<any>;
|
|
8519
8910
|
}[];
|
|
8520
8911
|
advancedFields: {
|
|
8521
8912
|
label: string;
|
|
8522
8913
|
fieldName: string;
|
|
8523
|
-
fieldType
|
|
8524
|
-
required
|
|
8914
|
+
fieldType?: string;
|
|
8915
|
+
required?: boolean;
|
|
8525
8916
|
category: 1 | 2 | 3 | 4;
|
|
8526
8917
|
selectValues?: string | number | {
|
|
8527
8918
|
name?: string;
|
|
@@ -8531,13 +8922,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8531
8922
|
}[];
|
|
8532
8923
|
defaultValues?: any;
|
|
8533
8924
|
remark?: string;
|
|
8925
|
+
helpMsg?: string;
|
|
8534
8926
|
configParams?: Array<any>;
|
|
8535
8927
|
}[];
|
|
8536
8928
|
selfFields: {
|
|
8537
8929
|
label: string;
|
|
8538
8930
|
fieldName: string;
|
|
8539
|
-
fieldType
|
|
8540
|
-
required
|
|
8931
|
+
fieldType?: string;
|
|
8932
|
+
required?: boolean;
|
|
8541
8933
|
category: 1 | 2 | 3 | 4;
|
|
8542
8934
|
selectValues?: string | number | {
|
|
8543
8935
|
name?: string;
|
|
@@ -8547,6 +8939,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8547
8939
|
}[];
|
|
8548
8940
|
defaultValues?: any;
|
|
8549
8941
|
remark?: string;
|
|
8942
|
+
helpMsg?: string;
|
|
8550
8943
|
configParams?: Array<any>;
|
|
8551
8944
|
}[];
|
|
8552
8945
|
actions: {
|
|
@@ -8559,8 +8952,8 @@ funcCode?: Function | string;
|
|
|
8559
8952
|
preps: {
|
|
8560
8953
|
label: string;
|
|
8561
8954
|
fieldName: string;
|
|
8562
|
-
fieldType
|
|
8563
|
-
required
|
|
8955
|
+
fieldType?: string;
|
|
8956
|
+
required?: boolean;
|
|
8564
8957
|
category: 1 | 2 | 3 | 4;
|
|
8565
8958
|
selectValues?: string | number | {
|
|
8566
8959
|
name?: string;
|
|
@@ -8570,6 +8963,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8570
8963
|
}[];
|
|
8571
8964
|
defaultValues?: any;
|
|
8572
8965
|
remark?: string;
|
|
8966
|
+
helpMsg?: string;
|
|
8573
8967
|
configParams?: Array<any>;
|
|
8574
8968
|
}[];
|
|
8575
8969
|
}[]>;
|
|
@@ -8582,8 +8976,8 @@ remark?: string;
|
|
|
8582
8976
|
fields: {
|
|
8583
8977
|
label: string;
|
|
8584
8978
|
fieldName: string;
|
|
8585
|
-
fieldType
|
|
8586
|
-
required
|
|
8979
|
+
fieldType?: string;
|
|
8980
|
+
required?: boolean;
|
|
8587
8981
|
category: 1 | 2 | 3 | 4;
|
|
8588
8982
|
selectValues?: string | number | {
|
|
8589
8983
|
name?: string;
|
|
@@ -8593,13 +8987,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8593
8987
|
}[];
|
|
8594
8988
|
defaultValues?: any;
|
|
8595
8989
|
remark?: string;
|
|
8990
|
+
helpMsg?: string;
|
|
8596
8991
|
configParams?: Array<any>;
|
|
8597
8992
|
}[];
|
|
8598
8993
|
advancedFields: {
|
|
8599
8994
|
label: string;
|
|
8600
8995
|
fieldName: string;
|
|
8601
|
-
fieldType
|
|
8602
|
-
required
|
|
8996
|
+
fieldType?: string;
|
|
8997
|
+
required?: boolean;
|
|
8603
8998
|
category: 1 | 2 | 3 | 4;
|
|
8604
8999
|
selectValues?: string | number | {
|
|
8605
9000
|
name?: string;
|
|
@@ -8609,13 +9004,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8609
9004
|
}[];
|
|
8610
9005
|
defaultValues?: any;
|
|
8611
9006
|
remark?: string;
|
|
9007
|
+
helpMsg?: string;
|
|
8612
9008
|
configParams?: Array<any>;
|
|
8613
9009
|
}[];
|
|
8614
9010
|
selfFields: {
|
|
8615
9011
|
label: string;
|
|
8616
9012
|
fieldName: string;
|
|
8617
|
-
fieldType
|
|
8618
|
-
required
|
|
9013
|
+
fieldType?: string;
|
|
9014
|
+
required?: boolean;
|
|
8619
9015
|
category: 1 | 2 | 3 | 4;
|
|
8620
9016
|
selectValues?: string | number | {
|
|
8621
9017
|
name?: string;
|
|
@@ -8625,6 +9021,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8625
9021
|
}[];
|
|
8626
9022
|
defaultValues?: any;
|
|
8627
9023
|
remark?: string;
|
|
9024
|
+
helpMsg?: string;
|
|
8628
9025
|
configParams?: Array<any>;
|
|
8629
9026
|
}[];
|
|
8630
9027
|
actions: {
|
|
@@ -8637,8 +9034,8 @@ funcCode?: Function | string;
|
|
|
8637
9034
|
preps: {
|
|
8638
9035
|
label: string;
|
|
8639
9036
|
fieldName: string;
|
|
8640
|
-
fieldType
|
|
8641
|
-
required
|
|
9037
|
+
fieldType?: string;
|
|
9038
|
+
required?: boolean;
|
|
8642
9039
|
category: 1 | 2 | 3 | 4;
|
|
8643
9040
|
selectValues?: string | number | {
|
|
8644
9041
|
name?: string;
|
|
@@ -8648,6 +9045,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8648
9045
|
}[];
|
|
8649
9046
|
defaultValues?: any;
|
|
8650
9047
|
remark?: string;
|
|
9048
|
+
helpMsg?: string;
|
|
8651
9049
|
configParams?: Array<any>;
|
|
8652
9050
|
}[];
|
|
8653
9051
|
}[], CompType[] | {
|
|
@@ -8659,8 +9057,8 @@ remark?: string;
|
|
|
8659
9057
|
fields: {
|
|
8660
9058
|
label: string;
|
|
8661
9059
|
fieldName: string;
|
|
8662
|
-
fieldType
|
|
8663
|
-
required
|
|
9060
|
+
fieldType?: string;
|
|
9061
|
+
required?: boolean;
|
|
8664
9062
|
category: 1 | 2 | 3 | 4;
|
|
8665
9063
|
selectValues?: string | number | {
|
|
8666
9064
|
name?: string;
|
|
@@ -8670,13 +9068,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8670
9068
|
}[];
|
|
8671
9069
|
defaultValues?: any;
|
|
8672
9070
|
remark?: string;
|
|
9071
|
+
helpMsg?: string;
|
|
8673
9072
|
configParams?: Array<any>;
|
|
8674
9073
|
}[];
|
|
8675
9074
|
advancedFields: {
|
|
8676
9075
|
label: string;
|
|
8677
9076
|
fieldName: string;
|
|
8678
|
-
fieldType
|
|
8679
|
-
required
|
|
9077
|
+
fieldType?: string;
|
|
9078
|
+
required?: boolean;
|
|
8680
9079
|
category: 1 | 2 | 3 | 4;
|
|
8681
9080
|
selectValues?: string | number | {
|
|
8682
9081
|
name?: string;
|
|
@@ -8686,13 +9085,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8686
9085
|
}[];
|
|
8687
9086
|
defaultValues?: any;
|
|
8688
9087
|
remark?: string;
|
|
9088
|
+
helpMsg?: string;
|
|
8689
9089
|
configParams?: Array<any>;
|
|
8690
9090
|
}[];
|
|
8691
9091
|
selfFields: {
|
|
8692
9092
|
label: string;
|
|
8693
9093
|
fieldName: string;
|
|
8694
|
-
fieldType
|
|
8695
|
-
required
|
|
9094
|
+
fieldType?: string;
|
|
9095
|
+
required?: boolean;
|
|
8696
9096
|
category: 1 | 2 | 3 | 4;
|
|
8697
9097
|
selectValues?: string | number | {
|
|
8698
9098
|
name?: string;
|
|
@@ -8702,6 +9102,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8702
9102
|
}[];
|
|
8703
9103
|
defaultValues?: any;
|
|
8704
9104
|
remark?: string;
|
|
9105
|
+
helpMsg?: string;
|
|
8705
9106
|
configParams?: Array<any>;
|
|
8706
9107
|
}[];
|
|
8707
9108
|
actions: {
|
|
@@ -8714,8 +9115,8 @@ funcCode?: Function | string;
|
|
|
8714
9115
|
preps: {
|
|
8715
9116
|
label: string;
|
|
8716
9117
|
fieldName: string;
|
|
8717
|
-
fieldType
|
|
8718
|
-
required
|
|
9118
|
+
fieldType?: string;
|
|
9119
|
+
required?: boolean;
|
|
8719
9120
|
category: 1 | 2 | 3 | 4;
|
|
8720
9121
|
selectValues?: string | number | {
|
|
8721
9122
|
name?: string;
|
|
@@ -8725,6 +9126,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8725
9126
|
}[];
|
|
8726
9127
|
defaultValues?: any;
|
|
8727
9128
|
remark?: string;
|
|
9129
|
+
helpMsg?: string;
|
|
8728
9130
|
configParams?: Array<any>;
|
|
8729
9131
|
}[];
|
|
8730
9132
|
}[]>;
|
|
@@ -9006,11 +9408,11 @@ clearAll: (isDark?: string) => void;
|
|
|
9006
9408
|
*/
|
|
9007
9409
|
export declare function userAction(tableRef: Ref, primaryKey: string, datas: Array<any>): Array<UserFuncInfo>;
|
|
9008
9410
|
|
|
9009
|
-
export declare const usercompItem: DefineComponent<
|
|
9411
|
+
export declare const usercompItem: DefineComponent<__VLS_PublicProps_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9010
9412
|
selectItem: (...args: any[]) => void;
|
|
9011
9413
|
selfFunc: (...args: any[]) => void;
|
|
9012
9414
|
"update:formData": (value: any) => void;
|
|
9013
|
-
}, string, PublicProps, Readonly<
|
|
9415
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_40> & Readonly<{
|
|
9014
9416
|
onSelectItem?: (...args: any[]) => any;
|
|
9015
9417
|
onSelfFunc?: (...args: any[]) => any;
|
|
9016
9418
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -9074,11 +9476,11 @@ export declare interface UserFuncInfo {
|
|
|
9074
9476
|
*/
|
|
9075
9477
|
export declare const userFunction: (code: string, context: any, formData: any) => void;
|
|
9076
9478
|
|
|
9077
|
-
export declare const userItem: DefineComponent<
|
|
9479
|
+
export declare const userItem: DefineComponent<__VLS_PublicProps_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9078
9480
|
selectItem: (...args: any[]) => void;
|
|
9079
9481
|
selfFunc: (...args: any[]) => void;
|
|
9080
9482
|
"update:formData": (value: any) => void;
|
|
9081
|
-
}, string, PublicProps, Readonly<
|
|
9483
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_39> & Readonly<{
|
|
9082
9484
|
onSelectItem?: (...args: any[]) => any;
|
|
9083
9485
|
onSelfFunc?: (...args: any[]) => any;
|
|
9084
9486
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -9800,11 +10202,11 @@ export declare function validMsg(item: any, dataForm: any): any[];
|
|
|
9800
10202
|
|
|
9801
10203
|
export declare const validRulesList: Array<SelectOption>;
|
|
9802
10204
|
|
|
9803
|
-
export declare const viewMarkdownItem: DefineComponent<
|
|
10205
|
+
export declare const viewMarkdownItem: DefineComponent<__VLS_PublicProps_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9804
10206
|
selectItem: (...args: any[]) => void;
|
|
9805
10207
|
selfFunc: (...args: any[]) => void;
|
|
9806
10208
|
"update:formData": (value: any) => void;
|
|
9807
|
-
}, string, PublicProps, Readonly<
|
|
10209
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_41> & Readonly<{
|
|
9808
10210
|
onSelectItem?: (...args: any[]) => any;
|
|
9809
10211
|
onSelfFunc?: (...args: any[]) => any;
|
|
9810
10212
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -9818,6 +10220,8 @@ showFormItem: boolean;
|
|
|
9818
10220
|
markdownEditor: HTMLDivElement;
|
|
9819
10221
|
}, any>;
|
|
9820
10222
|
|
|
10223
|
+
declare const visible: Ref<boolean, boolean>;
|
|
10224
|
+
|
|
9821
10225
|
/**
|
|
9822
10226
|
* 警告提示
|
|
9823
10227
|
* @param msg 消息内容
|