star-horse-lowcode 2.8.47 → 2.8.49
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 +40 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +8 -8
- package/dist/types/index.d.ts +697 -233
- package/package.json +10 -8
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;
|
|
@@ -2404,6 +2710,8 @@ declare interface DataSelectorProps {
|
|
|
2404
2710
|
* 样式
|
|
2405
2711
|
*/
|
|
2406
2712
|
style?: CSSProperties;
|
|
2713
|
+
tagType: "" | "primary" | "secondary" | "success" | "info" | "warning";
|
|
2714
|
+
tagEffect: "" | "light" | "dark" | "plain";
|
|
2407
2715
|
}
|
|
2408
2716
|
|
|
2409
2717
|
/**
|
|
@@ -2426,11 +2734,11 @@ export declare function dateCompList(): string[];
|
|
|
2426
2734
|
*/
|
|
2427
2735
|
export declare function dateParse(date: Date, needTime?: boolean, split?: string, needSecond?: boolean): string;
|
|
2428
2736
|
|
|
2429
|
-
export declare const datetimeItem: DefineComponent<
|
|
2737
|
+
export declare const datetimeItem: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2430
2738
|
selectItem: (...args: any[]) => void;
|
|
2431
2739
|
selfFunc: (...args: any[]) => void;
|
|
2432
2740
|
"update:formData": (value: any) => void;
|
|
2433
|
-
}, string, PublicProps, Readonly<
|
|
2741
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
2434
2742
|
onSelectItem?: (...args: any[]) => any;
|
|
2435
2743
|
onSelfFunc?: (...args: any[]) => any;
|
|
2436
2744
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2485,11 +2793,11 @@ isSearch: boolean;
|
|
|
2485
2793
|
showFormItem: boolean;
|
|
2486
2794
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2487
2795
|
|
|
2488
|
-
export declare const dialogInputItem: DefineComponent<
|
|
2796
|
+
export declare const dialogInputItem: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2489
2797
|
selectItem: (...args: any[]) => void;
|
|
2490
2798
|
selfFunc: (...args: any[]) => void;
|
|
2491
2799
|
"update:formData": (value: any) => void;
|
|
2492
|
-
}, string, PublicProps, Readonly<
|
|
2800
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
|
|
2493
2801
|
onSelectItem?: (...args: any[]) => any;
|
|
2494
2802
|
onSelfFunc?: (...args: any[]) => any;
|
|
2495
2803
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2503,11 +2811,11 @@ showFormItem: boolean;
|
|
|
2503
2811
|
dialogInputTableRef: unknown;
|
|
2504
2812
|
}, any>;
|
|
2505
2813
|
|
|
2506
|
-
export declare const dialogItem: DefineComponent<
|
|
2814
|
+
export declare const dialogItem: DefineComponent<__VLS_PublicProps_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2507
2815
|
selectItem: (...args: any[]) => void;
|
|
2508
2816
|
selfFunc: (...args: any[]) => void;
|
|
2509
2817
|
"update:formData": (value: any) => void;
|
|
2510
|
-
}, string, PublicProps, Readonly<
|
|
2818
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_44> & Readonly<{
|
|
2511
2819
|
onSelectItem?: (...args: any[]) => any;
|
|
2512
2820
|
onSelfFunc?: (...args: any[]) => any;
|
|
2513
2821
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -2586,11 +2894,11 @@ export declare type DialogProps = {
|
|
|
2586
2894
|
*/
|
|
2587
2895
|
export declare function dictData(dictType: string, exclusion?: Array<string>, userUrl?: string): Promise<SelectOption[]>;
|
|
2588
2896
|
|
|
2589
|
-
export declare const dividerItem: DefineComponent<
|
|
2897
|
+
export declare const dividerItem: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2590
2898
|
selectItem: (...args: any[]) => void;
|
|
2591
2899
|
selfFunc: (...args: any[]) => void;
|
|
2592
2900
|
"update:formData": (value: any) => void;
|
|
2593
|
-
}, string, PublicProps, Readonly<
|
|
2901
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
|
|
2594
2902
|
onSelectItem?: (...args: any[]) => any;
|
|
2595
2903
|
onSelfFunc?: (...args: any[]) => any;
|
|
2596
2904
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3068,11 +3376,13 @@ export declare function getRequest(url: string): Promise<AxiosResponse<any, any,
|
|
|
3068
3376
|
*/
|
|
3069
3377
|
export declare function getValidType(type: any, options?: any): any;
|
|
3070
3378
|
|
|
3071
|
-
|
|
3379
|
+
declare const hide: () => void;
|
|
3380
|
+
|
|
3381
|
+
export declare const htmleditorItem: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3072
3382
|
selectItem: (...args: any[]) => void;
|
|
3073
3383
|
selfFunc: (...args: any[]) => void;
|
|
3074
3384
|
"update:formData": (value: any) => void;
|
|
3075
|
-
}, string, PublicProps, Readonly<
|
|
3385
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
|
|
3076
3386
|
onSelectItem?: (...args: any[]) => any;
|
|
3077
3387
|
onSelfFunc?: (...args: any[]) => any;
|
|
3078
3388
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3084,11 +3394,11 @@ isSearch: boolean;
|
|
|
3084
3394
|
showFormItem: boolean;
|
|
3085
3395
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3086
3396
|
|
|
3087
|
-
export declare const htmlItem: DefineComponent<
|
|
3397
|
+
export declare const htmlItem: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3088
3398
|
selectItem: (...args: any[]) => void;
|
|
3089
3399
|
selfFunc: (...args: any[]) => void;
|
|
3090
3400
|
"update:formData": (value: any) => void;
|
|
3091
|
-
}, string, PublicProps, Readonly<
|
|
3401
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
|
|
3092
3402
|
onSelectItem?: (...args: any[]) => any;
|
|
3093
3403
|
onSelfFunc?: (...args: any[]) => any;
|
|
3094
3404
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3113,11 +3423,11 @@ export declare function httpMethod(): SelectOption[];
|
|
|
3113
3423
|
*/
|
|
3114
3424
|
export declare function httpRequest(url: string, method: string, data: any): Promise<AxiosResponse<any, any, {}>>;
|
|
3115
3425
|
|
|
3116
|
-
export declare const iconItem: DefineComponent<
|
|
3426
|
+
export declare const iconItem: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3117
3427
|
selectItem: (...args: any[]) => void;
|
|
3118
3428
|
selfFunc: (...args: any[]) => void;
|
|
3119
3429
|
"update:formData": (value: any) => void;
|
|
3120
|
-
}, string, PublicProps, Readonly<
|
|
3430
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
|
|
3121
3431
|
onSelectItem?: (...args: any[]) => any;
|
|
3122
3432
|
onSelfFunc?: (...args: any[]) => any;
|
|
3123
3433
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3131,11 +3441,11 @@ showFormItem: boolean;
|
|
|
3131
3441
|
popoverRef: unknown;
|
|
3132
3442
|
}, any>;
|
|
3133
3443
|
|
|
3134
|
-
export declare const imageItem: DefineComponent<
|
|
3444
|
+
export declare const imageItem: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3135
3445
|
selectItem: (...args: any[]) => void;
|
|
3136
3446
|
selfFunc: (...args: any[]) => void;
|
|
3137
3447
|
"update:formData": (value: any) => void;
|
|
3138
|
-
}, string, PublicProps, Readonly<
|
|
3448
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
|
|
3139
3449
|
onSelectItem?: (...args: any[]) => any;
|
|
3140
3450
|
onSelfFunc?: (...args: any[]) => any;
|
|
3141
3451
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3177,11 +3487,11 @@ export declare interface ImportInfo {
|
|
|
3177
3487
|
*/
|
|
3178
3488
|
export declare function inputCompList(): string[];
|
|
3179
3489
|
|
|
3180
|
-
export declare const inputItem: DefineComponent<
|
|
3490
|
+
export declare const inputItem: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3181
3491
|
selectItem: (...args: any[]) => void;
|
|
3182
3492
|
selfFunc: (...args: any[]) => void;
|
|
3183
3493
|
"update:formData": (value: any) => void;
|
|
3184
|
-
}, string, PublicProps, Readonly<
|
|
3494
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
|
|
3185
3495
|
onSelectItem?: (...args: any[]) => any;
|
|
3186
3496
|
onSelfFunc?: (...args: any[]) => any;
|
|
3187
3497
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3280,11 +3590,11 @@ export declare interface ItemType {
|
|
|
3280
3590
|
/**
|
|
3281
3591
|
* 字段类型
|
|
3282
3592
|
*/
|
|
3283
|
-
fieldType
|
|
3593
|
+
fieldType?: string;
|
|
3284
3594
|
/**
|
|
3285
3595
|
* 是否必填
|
|
3286
3596
|
*/
|
|
3287
|
-
required
|
|
3597
|
+
required?: boolean;
|
|
3288
3598
|
/**
|
|
3289
3599
|
* 分类
|
|
3290
3600
|
*/
|
|
@@ -3301,6 +3611,10 @@ export declare interface ItemType {
|
|
|
3301
3611
|
* 备注
|
|
3302
3612
|
*/
|
|
3303
3613
|
remark?: string;
|
|
3614
|
+
/**
|
|
3615
|
+
* 帮助
|
|
3616
|
+
*/
|
|
3617
|
+
helpMsg?: string;
|
|
3304
3618
|
/**
|
|
3305
3619
|
* 配置参数
|
|
3306
3620
|
*/
|
|
@@ -3329,11 +3643,11 @@ export declare interface JoinSearchParams {
|
|
|
3329
3643
|
or?: JoinSearchParams[];
|
|
3330
3644
|
}
|
|
3331
3645
|
|
|
3332
|
-
export declare const jsonArrayItem: DefineComponent<
|
|
3646
|
+
export declare const jsonArrayItem: DefineComponent<__VLS_PublicProps_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3333
3647
|
selectItem: (...args: any[]) => void;
|
|
3334
3648
|
selfFunc: (...args: any[]) => void;
|
|
3335
3649
|
"update:formData": (value: any) => void;
|
|
3336
|
-
}, string, PublicProps, Readonly<
|
|
3650
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_18> & Readonly<{
|
|
3337
3651
|
onSelectItem?: (...args: any[]) => any;
|
|
3338
3652
|
onSelfFunc?: (...args: any[]) => any;
|
|
3339
3653
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3345,11 +3659,11 @@ isSearch: boolean;
|
|
|
3345
3659
|
showFormItem: boolean;
|
|
3346
3660
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3347
3661
|
|
|
3348
|
-
export declare const jsonItem: DefineComponent<
|
|
3662
|
+
export declare const jsonItem: DefineComponent<__VLS_PublicProps_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3349
3663
|
selectItem: (...args: any[]) => void;
|
|
3350
3664
|
selfFunc: (...args: any[]) => void;
|
|
3351
3665
|
"update:formData": (value: any) => void;
|
|
3352
|
-
}, string, PublicProps, Readonly<
|
|
3666
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_19> & Readonly<{
|
|
3353
3667
|
onSelectItem?: (...args: any[]) => any;
|
|
3354
3668
|
onSelfFunc?: (...args: any[]) => any;
|
|
3355
3669
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3411,11 +3725,11 @@ export declare function loadGetData(url: string): Promise<{
|
|
|
3411
3725
|
*/
|
|
3412
3726
|
export declare function loadProp(prefix: string, fieldName: string, parentIndex: number, currentIndex: number): string;
|
|
3413
3727
|
|
|
3414
|
-
export declare const markdownItem: DefineComponent<
|
|
3728
|
+
export declare const markdownItem: DefineComponent<__VLS_PublicProps_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3415
3729
|
selectItem: (...args: any[]) => void;
|
|
3416
3730
|
selfFunc: (...args: any[]) => void;
|
|
3417
3731
|
"update:formData": (value: any) => void;
|
|
3418
|
-
}, string, PublicProps, Readonly<
|
|
3732
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_20> & Readonly<{
|
|
3419
3733
|
onSelectItem?: (...args: any[]) => any;
|
|
3420
3734
|
onSelfFunc?: (...args: any[]) => any;
|
|
3421
3735
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3427,6 +3741,8 @@ isSearch: boolean;
|
|
|
3427
3741
|
showFormItem: boolean;
|
|
3428
3742
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3429
3743
|
|
|
3744
|
+
declare const menu: Ref<HTMLDivElement, HTMLDivElement>;
|
|
3745
|
+
|
|
3430
3746
|
/**
|
|
3431
3747
|
* 菜单信息
|
|
3432
3748
|
*/
|
|
@@ -3450,6 +3766,12 @@ export declare interface MenusInfo {
|
|
|
3450
3766
|
meta: Meta;
|
|
3451
3767
|
}
|
|
3452
3768
|
|
|
3769
|
+
declare const menuStyle: ComputedRef< {
|
|
3770
|
+
top: string;
|
|
3771
|
+
left: string;
|
|
3772
|
+
zIndex: number;
|
|
3773
|
+
}>;
|
|
3774
|
+
|
|
3453
3775
|
/**
|
|
3454
3776
|
* 消息提
|
|
3455
3777
|
* @param msg 消息内容
|
|
@@ -3507,6 +3829,8 @@ export declare function monthRange(date: Date): {
|
|
|
3507
3829
|
lastDateStr: string;
|
|
3508
3830
|
};
|
|
3509
3831
|
|
|
3832
|
+
declare const mouseenterHandler: () => void;
|
|
3833
|
+
|
|
3510
3834
|
export declare function moveDownItem(isEdit: boolean, formItem: any, parentField: any): void;
|
|
3511
3835
|
|
|
3512
3836
|
/**
|
|
@@ -3536,11 +3860,11 @@ export declare interface NodeInfo {
|
|
|
3536
3860
|
items?: Array<any>;
|
|
3537
3861
|
}
|
|
3538
3862
|
|
|
3539
|
-
export declare const numberItem: DefineComponent<
|
|
3863
|
+
export declare const numberItem: DefineComponent<__VLS_PublicProps_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3540
3864
|
selectItem: (...args: any[]) => void;
|
|
3541
3865
|
selfFunc: (...args: any[]) => void;
|
|
3542
3866
|
"update:formData": (value: any) => void;
|
|
3543
|
-
}, string, PublicProps, Readonly<
|
|
3867
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_21> & Readonly<{
|
|
3544
3868
|
onSelectItem?: (...args: any[]) => any;
|
|
3545
3869
|
onSelfFunc?: (...args: any[]) => any;
|
|
3546
3870
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3552,11 +3876,11 @@ isSearch: boolean;
|
|
|
3552
3876
|
showFormItem: boolean;
|
|
3553
3877
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3554
3878
|
|
|
3555
|
-
export declare const numberRangeItem: DefineComponent<
|
|
3879
|
+
export declare const numberRangeItem: DefineComponent<__VLS_PublicProps_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3556
3880
|
selectItem: (...args: any[]) => void;
|
|
3557
3881
|
selfFunc: (...args: any[]) => void;
|
|
3558
3882
|
"update:formData": (value: any) => void;
|
|
3559
|
-
}, string, PublicProps, Readonly<
|
|
3883
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_22> & Readonly<{
|
|
3560
3884
|
onSelectItem?: (...args: any[]) => any;
|
|
3561
3885
|
onSelfFunc?: (...args: any[]) => any;
|
|
3562
3886
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3675,11 +3999,11 @@ export declare interface PageProps {
|
|
|
3675
3999
|
dataList?: Array<any> | null;
|
|
3676
4000
|
}
|
|
3677
4001
|
|
|
3678
|
-
export declare const pageSelectItem: DefineComponent<
|
|
4002
|
+
export declare const pageSelectItem: DefineComponent<__VLS_PublicProps_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3679
4003
|
selectItem: (...args: any[]) => void;
|
|
3680
4004
|
selfFunc: (...args: any[]) => void;
|
|
3681
4005
|
"update:formData": (value: any) => void;
|
|
3682
|
-
}, string, PublicProps, Readonly<
|
|
4006
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_23> & Readonly<{
|
|
3683
4007
|
onSelectItem?: (...args: any[]) => any;
|
|
3684
4008
|
onSelfFunc?: (...args: any[]) => any;
|
|
3685
4009
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3702,11 +4026,11 @@ export declare function parseDateByType(val: any, type: string, needSecond?: boo
|
|
|
3702
4026
|
*/
|
|
3703
4027
|
export declare function parseListData(item: any, val: any): any;
|
|
3704
4028
|
|
|
3705
|
-
export declare const passwordItem: DefineComponent<
|
|
4029
|
+
export declare const passwordItem: DefineComponent<__VLS_PublicProps_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3706
4030
|
selectItem: (...args: any[]) => void;
|
|
3707
4031
|
selfFunc: (...args: any[]) => void;
|
|
3708
4032
|
"update:formData": (value: any) => void;
|
|
3709
|
-
}, string, PublicProps, Readonly<
|
|
4033
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_24> & Readonly<{
|
|
3710
4034
|
onSelectItem?: (...args: any[]) => any;
|
|
3711
4035
|
onSelfFunc?: (...args: any[]) => any;
|
|
3712
4036
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3744,11 +4068,11 @@ export declare interface PreValid {
|
|
|
3744
4068
|
msg?: string;
|
|
3745
4069
|
}
|
|
3746
4070
|
|
|
3747
|
-
export declare const qrcodeItem: DefineComponent<
|
|
4071
|
+
export declare const qrcodeItem: DefineComponent<__VLS_PublicProps_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3748
4072
|
selectItem: (...args: any[]) => void;
|
|
3749
4073
|
selfFunc: (...args: any[]) => void;
|
|
3750
4074
|
"update:formData": (value: any) => void;
|
|
3751
|
-
}, string, PublicProps, Readonly<
|
|
4075
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_42> & Readonly<{
|
|
3752
4076
|
onSelectItem?: (...args: any[]) => any;
|
|
3753
4077
|
onSelfFunc?: (...args: any[]) => any;
|
|
3754
4078
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3760,11 +4084,11 @@ isSearch: boolean;
|
|
|
3760
4084
|
showFormItem: boolean;
|
|
3761
4085
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3762
4086
|
|
|
3763
|
-
export declare const radioItem: DefineComponent<
|
|
4087
|
+
export declare const radioItem: DefineComponent<__VLS_PublicProps_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3764
4088
|
selectItem: (...args: any[]) => void;
|
|
3765
4089
|
selfFunc: (...args: any[]) => void;
|
|
3766
4090
|
"update:formData": (value: any) => void;
|
|
3767
|
-
}, string, PublicProps, Readonly<
|
|
4091
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_25> & Readonly<{
|
|
3768
4092
|
onSelectItem?: (...args: any[]) => any;
|
|
3769
4093
|
onSelfFunc?: (...args: any[]) => any;
|
|
3770
4094
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -3776,11 +4100,11 @@ isSearch: boolean;
|
|
|
3776
4100
|
showFormItem: boolean;
|
|
3777
4101
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3778
4102
|
|
|
3779
|
-
export declare const rateItem: DefineComponent<
|
|
4103
|
+
export declare const rateItem: DefineComponent<__VLS_PublicProps_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3780
4104
|
selectItem: (...args: any[]) => void;
|
|
3781
4105
|
selfFunc: (...args: any[]) => void;
|
|
3782
4106
|
"update:formData": (value: any) => void;
|
|
3783
|
-
}, string, PublicProps, Readonly<
|
|
4107
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_26> & Readonly<{
|
|
3784
4108
|
onSelectItem?: (...args: any[]) => any;
|
|
3785
4109
|
onSelfFunc?: (...args: any[]) => any;
|
|
3786
4110
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -4018,11 +4342,11 @@ export declare type SearchProps = {
|
|
|
4018
4342
|
*/
|
|
4019
4343
|
export declare function selectCompList(): string[];
|
|
4020
4344
|
|
|
4021
|
-
export declare const selectItem: DefineComponent<
|
|
4345
|
+
export declare const selectItem: DefineComponent<__VLS_PublicProps_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4022
4346
|
selectItem: (...args: any[]) => void;
|
|
4023
4347
|
selfFunc: (...args: any[]) => void;
|
|
4024
4348
|
"update:formData": (value: any) => void;
|
|
4025
|
-
}, string, PublicProps, Readonly<
|
|
4349
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_27> & Readonly<{
|
|
4026
4350
|
onSelectItem?: (...args: any[]) => any;
|
|
4027
4351
|
onSelfFunc?: (...args: any[]) => any;
|
|
4028
4352
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -4137,6 +4461,8 @@ export declare type ShortKey = {
|
|
|
4137
4461
|
handler?: Function;
|
|
4138
4462
|
};
|
|
4139
4463
|
|
|
4464
|
+
declare const showSubMenu: (item: any, index: number) => void;
|
|
4465
|
+
|
|
4140
4466
|
export declare const ShTableListColumn: DefineComponent<ExtractPropTypes< {
|
|
4141
4467
|
dataForm: {
|
|
4142
4468
|
type: ObjectConstructor;
|
|
@@ -4214,12 +4540,14 @@ size: string;
|
|
|
4214
4540
|
staticColumn: string;
|
|
4215
4541
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4216
4542
|
|
|
4217
|
-
export declare const signatureItem: DefineComponent<
|
|
4543
|
+
export declare const signatureItem: DefineComponent<__VLS_PublicProps_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4218
4544
|
selectItem: (...args: any[]) => void;
|
|
4219
4545
|
selfFunc: (...args: any[]) => void;
|
|
4220
|
-
|
|
4546
|
+
"update:formData": (value: any) => void;
|
|
4547
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_28> & Readonly<{
|
|
4221
4548
|
onSelectItem?: (...args: any[]) => any;
|
|
4222
4549
|
onSelfFunc?: (...args: any[]) => any;
|
|
4550
|
+
"onUpdate:formData"?: (value: any) => any;
|
|
4223
4551
|
}>, {
|
|
4224
4552
|
disabled: boolean;
|
|
4225
4553
|
isDesign: boolean;
|
|
@@ -4230,11 +4558,11 @@ showFormItem: boolean;
|
|
|
4230
4558
|
signatureCanvas: HTMLCanvasElement;
|
|
4231
4559
|
}, any>;
|
|
4232
4560
|
|
|
4233
|
-
export declare const sliderItem: DefineComponent<
|
|
4561
|
+
export declare const sliderItem: DefineComponent<__VLS_PublicProps_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4234
4562
|
selectItem: (...args: any[]) => void;
|
|
4235
4563
|
selfFunc: (...args: any[]) => void;
|
|
4236
4564
|
"update:formData": (value: any) => void;
|
|
4237
|
-
}, string, PublicProps, Readonly<
|
|
4565
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_29> & Readonly<{
|
|
4238
4566
|
onSelectItem?: (...args: any[]) => any;
|
|
4239
4567
|
onSelfFunc?: (...args: any[]) => any;
|
|
4240
4568
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -5986,8 +6314,8 @@ height: number;
|
|
|
5986
6314
|
width: number;
|
|
5987
6315
|
color: string;
|
|
5988
6316
|
cursor: string;
|
|
5989
|
-
backgroundColor: string;
|
|
5990
6317
|
borderOffset: number;
|
|
6318
|
+
backgroundColor: string;
|
|
5991
6319
|
borderColor: string;
|
|
5992
6320
|
borderWidth: number;
|
|
5993
6321
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -6205,9 +6533,31 @@ commonPersons: {
|
|
|
6205
6533
|
type: PropType<any>;
|
|
6206
6534
|
default: any[];
|
|
6207
6535
|
};
|
|
6536
|
+
/**
|
|
6537
|
+
* 在数据提权的时候需要指定通过那个字段做关联条件
|
|
6538
|
+
*/
|
|
6539
|
+
userColumnName: {
|
|
6540
|
+
type: StringConstructor;
|
|
6541
|
+
default: string;
|
|
6542
|
+
};
|
|
6208
6543
|
btnPermissions: {
|
|
6209
6544
|
type: PropType<Record<string, string>>;
|
|
6210
6545
|
required: false;
|
|
6546
|
+
default: {};
|
|
6547
|
+
};
|
|
6548
|
+
/**
|
|
6549
|
+
* 每页数据备选项
|
|
6550
|
+
*/
|
|
6551
|
+
pageCombList: {
|
|
6552
|
+
type: ArrayConstructor;
|
|
6553
|
+
default: number[];
|
|
6554
|
+
};
|
|
6555
|
+
/**
|
|
6556
|
+
* 分页条布局
|
|
6557
|
+
*/
|
|
6558
|
+
pageBarLayout: {
|
|
6559
|
+
type: StringConstructor;
|
|
6560
|
+
default: string;
|
|
6211
6561
|
};
|
|
6212
6562
|
}>, {
|
|
6213
6563
|
init: () => Promise<void>;
|
|
@@ -6341,9 +6691,31 @@ commonPersons: {
|
|
|
6341
6691
|
type: PropType<any>;
|
|
6342
6692
|
default: any[];
|
|
6343
6693
|
};
|
|
6694
|
+
/**
|
|
6695
|
+
* 在数据提权的时候需要指定通过那个字段做关联条件
|
|
6696
|
+
*/
|
|
6697
|
+
userColumnName: {
|
|
6698
|
+
type: StringConstructor;
|
|
6699
|
+
default: string;
|
|
6700
|
+
};
|
|
6344
6701
|
btnPermissions: {
|
|
6345
6702
|
type: PropType<Record<string, string>>;
|
|
6346
6703
|
required: false;
|
|
6704
|
+
default: {};
|
|
6705
|
+
};
|
|
6706
|
+
/**
|
|
6707
|
+
* 每页数据备选项
|
|
6708
|
+
*/
|
|
6709
|
+
pageCombList: {
|
|
6710
|
+
type: ArrayConstructor;
|
|
6711
|
+
default: number[];
|
|
6712
|
+
};
|
|
6713
|
+
/**
|
|
6714
|
+
* 分页条布局
|
|
6715
|
+
*/
|
|
6716
|
+
pageBarLayout: {
|
|
6717
|
+
type: StringConstructor;
|
|
6718
|
+
default: string;
|
|
6347
6719
|
};
|
|
6348
6720
|
}>> & Readonly<{
|
|
6349
6721
|
onSelectItem?: (...args: any[]) => any;
|
|
@@ -6366,6 +6738,10 @@ lineHeight: string;
|
|
|
6366
6738
|
showSelection: boolean;
|
|
6367
6739
|
hideButtonList: boolean;
|
|
6368
6740
|
commonPersons: any;
|
|
6741
|
+
userColumnName: string;
|
|
6742
|
+
btnPermissions: Record<string, string>;
|
|
6743
|
+
pageCombList: unknown[];
|
|
6744
|
+
pageBarLayout: string;
|
|
6369
6745
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
6370
6746
|
table: unknown;
|
|
6371
6747
|
starHorseTableCompRef: unknown;
|
|
@@ -6686,6 +7062,10 @@ export declare interface SubFieldInfo {
|
|
|
6686
7062
|
subFormFlag?: string;
|
|
6687
7063
|
}
|
|
6688
7064
|
|
|
7065
|
+
declare const subMenu: Ref<any, any>;
|
|
7066
|
+
|
|
7067
|
+
declare const subMenuData: Ref<any[], any[]>;
|
|
7068
|
+
|
|
6689
7069
|
/**
|
|
6690
7070
|
* 成功提示
|
|
6691
7071
|
* @param msg 消息内容
|
|
@@ -6752,11 +7132,11 @@ marginRight: string;
|
|
|
6752
7132
|
svgContainer: HTMLDivElement;
|
|
6753
7133
|
}, HTMLDivElement>;
|
|
6754
7134
|
|
|
6755
|
-
export declare const switchItem: DefineComponent<
|
|
7135
|
+
export declare const switchItem: DefineComponent<__VLS_PublicProps_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6756
7136
|
selectItem: (...args: any[]) => void;
|
|
6757
7137
|
selfFunc: (...args: any[]) => void;
|
|
6758
7138
|
"update:formData": (value: any) => void;
|
|
6759
|
-
}, string, PublicProps, Readonly<
|
|
7139
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_30> & Readonly<{
|
|
6760
7140
|
onSelectItem?: (...args: any[]) => any;
|
|
6761
7141
|
onSelfFunc?: (...args: any[]) => any;
|
|
6762
7142
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -6939,11 +7319,11 @@ showFormItem: boolean;
|
|
|
6939
7319
|
containerTableRef: HTMLTableElement;
|
|
6940
7320
|
}, any>;
|
|
6941
7321
|
|
|
6942
|
-
export declare const tagItem: DefineComponent<
|
|
7322
|
+
export declare const tagItem: DefineComponent<__VLS_PublicProps_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6943
7323
|
selectItem: (...args: any[]) => void;
|
|
6944
7324
|
selfFunc: (...args: any[]) => void;
|
|
6945
7325
|
"update:formData": (value: any) => void;
|
|
6946
|
-
}, string, PublicProps, Readonly<
|
|
7326
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_31> & Readonly<{
|
|
6947
7327
|
onSelectItem?: (...args: any[]) => any;
|
|
6948
7328
|
onSelfFunc?: (...args: any[]) => any;
|
|
6949
7329
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -6974,11 +7354,11 @@ export declare interface Tags {
|
|
|
6974
7354
|
menuIcon: string;
|
|
6975
7355
|
}
|
|
6976
7356
|
|
|
6977
|
-
export declare const textareaItem: DefineComponent<
|
|
7357
|
+
export declare const textareaItem: DefineComponent<__VLS_PublicProps_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6978
7358
|
selectItem: (...args: any[]) => void;
|
|
6979
7359
|
selfFunc: (...args: any[]) => void;
|
|
6980
7360
|
"update:formData": (value: any) => void;
|
|
6981
|
-
}, string, PublicProps, Readonly<
|
|
7361
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_33> & Readonly<{
|
|
6982
7362
|
onSelectItem?: (...args: any[]) => any;
|
|
6983
7363
|
onSelfFunc?: (...args: any[]) => any;
|
|
6984
7364
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -6990,11 +7370,11 @@ isSearch: boolean;
|
|
|
6990
7370
|
showFormItem: boolean;
|
|
6991
7371
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6992
7372
|
|
|
6993
|
-
export declare const textItem: DefineComponent<
|
|
7373
|
+
export declare const textItem: DefineComponent<__VLS_PublicProps_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6994
7374
|
selectItem: (...args: any[]) => void;
|
|
6995
7375
|
selfFunc: (...args: any[]) => void;
|
|
6996
7376
|
"update:formData": (value: any) => void;
|
|
6997
|
-
}, string, PublicProps, Readonly<
|
|
7377
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_32> & Readonly<{
|
|
6998
7378
|
onSelectItem?: (...args: any[]) => any;
|
|
6999
7379
|
onSelfFunc?: (...args: any[]) => any;
|
|
7000
7380
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7006,11 +7386,11 @@ isSearch: boolean;
|
|
|
7006
7386
|
showFormItem: boolean;
|
|
7007
7387
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7008
7388
|
|
|
7009
|
-
export declare const timeItem: DefineComponent<
|
|
7389
|
+
export declare const timeItem: DefineComponent<__VLS_PublicProps_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7010
7390
|
selectItem: (...args: any[]) => void;
|
|
7011
7391
|
selfFunc: (...args: any[]) => void;
|
|
7012
7392
|
"update:formData": (value: any) => void;
|
|
7013
|
-
}, string, PublicProps, Readonly<
|
|
7393
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_34> & Readonly<{
|
|
7014
7394
|
onSelectItem?: (...args: any[]) => any;
|
|
7015
7395
|
onSelfFunc?: (...args: any[]) => any;
|
|
7016
7396
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7022,11 +7402,11 @@ isSearch: boolean;
|
|
|
7022
7402
|
showFormItem: boolean;
|
|
7023
7403
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7024
7404
|
|
|
7025
|
-
export declare const timePickerItem: DefineComponent<
|
|
7405
|
+
export declare const timePickerItem: DefineComponent<__VLS_PublicProps_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7026
7406
|
selectItem: (...args: any[]) => void;
|
|
7027
7407
|
selfFunc: (...args: any[]) => void;
|
|
7028
7408
|
"update:formData": (value: any) => void;
|
|
7029
|
-
}, string, PublicProps, Readonly<
|
|
7409
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_35> & Readonly<{
|
|
7030
7410
|
onSelectItem?: (...args: any[]) => any;
|
|
7031
7411
|
onSelfFunc?: (...args: any[]) => any;
|
|
7032
7412
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7040,11 +7420,11 @@ showFormItem: boolean;
|
|
|
7040
7420
|
|
|
7041
7421
|
export declare const toggle: (value?: boolean) => boolean;
|
|
7042
7422
|
|
|
7043
|
-
export declare const transferItem: DefineComponent<
|
|
7423
|
+
export declare const transferItem: DefineComponent<__VLS_PublicProps_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7044
7424
|
selectItem: (...args: any[]) => void;
|
|
7045
7425
|
selfFunc: (...args: any[]) => void;
|
|
7046
7426
|
"update:formData": (value: any) => void;
|
|
7047
|
-
}, string, PublicProps, Readonly<
|
|
7427
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_36> & Readonly<{
|
|
7048
7428
|
onSelectItem?: (...args: any[]) => any;
|
|
7049
7429
|
onSelfFunc?: (...args: any[]) => any;
|
|
7050
7430
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7062,11 +7442,11 @@ showFormItem: boolean;
|
|
|
7062
7442
|
*/
|
|
7063
7443
|
export declare function trim(data: string): string;
|
|
7064
7444
|
|
|
7065
|
-
export declare const tselectItem: DefineComponent<
|
|
7445
|
+
export declare const tselectItem: DefineComponent<__VLS_PublicProps_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7066
7446
|
selectItem: (...args: any[]) => void;
|
|
7067
7447
|
selfFunc: (...args: any[]) => void;
|
|
7068
7448
|
"update:formData": (value: any) => void;
|
|
7069
|
-
}, string, PublicProps, Readonly<
|
|
7449
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_37> & Readonly<{
|
|
7070
7450
|
onSelectItem?: (...args: any[]) => any;
|
|
7071
7451
|
onSelfFunc?: (...args: any[]) => any;
|
|
7072
7452
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7092,11 +7472,11 @@ isSearch: boolean;
|
|
|
7092
7472
|
showFormItem: boolean;
|
|
7093
7473
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7094
7474
|
|
|
7095
|
-
export declare const uploadItem: DefineComponent<
|
|
7475
|
+
export declare const uploadItem: DefineComponent<__VLS_PublicProps_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7096
7476
|
selectItem: (...args: any[]) => void;
|
|
7097
7477
|
selfFunc: (...args: any[]) => void;
|
|
7098
7478
|
"update:formData": (value: any) => void;
|
|
7099
|
-
}, string, PublicProps, Readonly<
|
|
7479
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_38> & Readonly<{
|
|
7100
7480
|
onSelectItem?: (...args: any[]) => any;
|
|
7101
7481
|
onSelfFunc?: (...args: any[]) => any;
|
|
7102
7482
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -7230,8 +7610,8 @@ remark?: string;
|
|
|
7230
7610
|
fields: {
|
|
7231
7611
|
label: string;
|
|
7232
7612
|
fieldName: string;
|
|
7233
|
-
fieldType
|
|
7234
|
-
required
|
|
7613
|
+
fieldType?: string;
|
|
7614
|
+
required?: boolean;
|
|
7235
7615
|
category: 1 | 2 | 3 | 4;
|
|
7236
7616
|
selectValues?: string | number | {
|
|
7237
7617
|
name?: string;
|
|
@@ -7241,13 +7621,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7241
7621
|
}[];
|
|
7242
7622
|
defaultValues?: any;
|
|
7243
7623
|
remark?: string;
|
|
7624
|
+
helpMsg?: string;
|
|
7244
7625
|
configParams?: Array<any>;
|
|
7245
7626
|
}[];
|
|
7246
7627
|
advancedFields: {
|
|
7247
7628
|
label: string;
|
|
7248
7629
|
fieldName: string;
|
|
7249
|
-
fieldType
|
|
7250
|
-
required
|
|
7630
|
+
fieldType?: string;
|
|
7631
|
+
required?: boolean;
|
|
7251
7632
|
category: 1 | 2 | 3 | 4;
|
|
7252
7633
|
selectValues?: string | number | {
|
|
7253
7634
|
name?: string;
|
|
@@ -7257,13 +7638,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7257
7638
|
}[];
|
|
7258
7639
|
defaultValues?: any;
|
|
7259
7640
|
remark?: string;
|
|
7641
|
+
helpMsg?: string;
|
|
7260
7642
|
configParams?: Array<any>;
|
|
7261
7643
|
}[];
|
|
7262
7644
|
selfFields: {
|
|
7263
7645
|
label: string;
|
|
7264
7646
|
fieldName: string;
|
|
7265
|
-
fieldType
|
|
7266
|
-
required
|
|
7647
|
+
fieldType?: string;
|
|
7648
|
+
required?: boolean;
|
|
7267
7649
|
category: 1 | 2 | 3 | 4;
|
|
7268
7650
|
selectValues?: string | number | {
|
|
7269
7651
|
name?: string;
|
|
@@ -7273,6 +7655,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7273
7655
|
}[];
|
|
7274
7656
|
defaultValues?: any;
|
|
7275
7657
|
remark?: string;
|
|
7658
|
+
helpMsg?: string;
|
|
7276
7659
|
configParams?: Array<any>;
|
|
7277
7660
|
}[];
|
|
7278
7661
|
actions: {
|
|
@@ -7285,8 +7668,8 @@ funcCode?: Function | string;
|
|
|
7285
7668
|
preps: {
|
|
7286
7669
|
label: string;
|
|
7287
7670
|
fieldName: string;
|
|
7288
|
-
fieldType
|
|
7289
|
-
required
|
|
7671
|
+
fieldType?: string;
|
|
7672
|
+
required?: boolean;
|
|
7290
7673
|
category: 1 | 2 | 3 | 4;
|
|
7291
7674
|
selectValues?: string | number | {
|
|
7292
7675
|
name?: string;
|
|
@@ -7296,6 +7679,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7296
7679
|
}[];
|
|
7297
7680
|
defaultValues?: any;
|
|
7298
7681
|
remark?: string;
|
|
7682
|
+
helpMsg?: string;
|
|
7299
7683
|
configParams?: Array<any>;
|
|
7300
7684
|
}[];
|
|
7301
7685
|
}[], CompType[] | {
|
|
@@ -7307,8 +7691,8 @@ remark?: string;
|
|
|
7307
7691
|
fields: {
|
|
7308
7692
|
label: string;
|
|
7309
7693
|
fieldName: string;
|
|
7310
|
-
fieldType
|
|
7311
|
-
required
|
|
7694
|
+
fieldType?: string;
|
|
7695
|
+
required?: boolean;
|
|
7312
7696
|
category: 1 | 2 | 3 | 4;
|
|
7313
7697
|
selectValues?: string | number | {
|
|
7314
7698
|
name?: string;
|
|
@@ -7318,13 +7702,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7318
7702
|
}[];
|
|
7319
7703
|
defaultValues?: any;
|
|
7320
7704
|
remark?: string;
|
|
7705
|
+
helpMsg?: string;
|
|
7321
7706
|
configParams?: Array<any>;
|
|
7322
7707
|
}[];
|
|
7323
7708
|
advancedFields: {
|
|
7324
7709
|
label: string;
|
|
7325
7710
|
fieldName: string;
|
|
7326
|
-
fieldType
|
|
7327
|
-
required
|
|
7711
|
+
fieldType?: string;
|
|
7712
|
+
required?: boolean;
|
|
7328
7713
|
category: 1 | 2 | 3 | 4;
|
|
7329
7714
|
selectValues?: string | number | {
|
|
7330
7715
|
name?: string;
|
|
@@ -7334,13 +7719,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7334
7719
|
}[];
|
|
7335
7720
|
defaultValues?: any;
|
|
7336
7721
|
remark?: string;
|
|
7722
|
+
helpMsg?: string;
|
|
7337
7723
|
configParams?: Array<any>;
|
|
7338
7724
|
}[];
|
|
7339
7725
|
selfFields: {
|
|
7340
7726
|
label: string;
|
|
7341
7727
|
fieldName: string;
|
|
7342
|
-
fieldType
|
|
7343
|
-
required
|
|
7728
|
+
fieldType?: string;
|
|
7729
|
+
required?: boolean;
|
|
7344
7730
|
category: 1 | 2 | 3 | 4;
|
|
7345
7731
|
selectValues?: string | number | {
|
|
7346
7732
|
name?: string;
|
|
@@ -7350,6 +7736,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7350
7736
|
}[];
|
|
7351
7737
|
defaultValues?: any;
|
|
7352
7738
|
remark?: string;
|
|
7739
|
+
helpMsg?: string;
|
|
7353
7740
|
configParams?: Array<any>;
|
|
7354
7741
|
}[];
|
|
7355
7742
|
actions: {
|
|
@@ -7362,8 +7749,8 @@ funcCode?: Function | string;
|
|
|
7362
7749
|
preps: {
|
|
7363
7750
|
label: string;
|
|
7364
7751
|
fieldName: string;
|
|
7365
|
-
fieldType
|
|
7366
|
-
required
|
|
7752
|
+
fieldType?: string;
|
|
7753
|
+
required?: boolean;
|
|
7367
7754
|
category: 1 | 2 | 3 | 4;
|
|
7368
7755
|
selectValues?: string | number | {
|
|
7369
7756
|
name?: string;
|
|
@@ -7373,6 +7760,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7373
7760
|
}[];
|
|
7374
7761
|
defaultValues?: any;
|
|
7375
7762
|
remark?: string;
|
|
7763
|
+
helpMsg?: string;
|
|
7376
7764
|
configParams?: Array<any>;
|
|
7377
7765
|
}[];
|
|
7378
7766
|
}[]>;
|
|
@@ -7385,8 +7773,8 @@ remark?: string;
|
|
|
7385
7773
|
fields: {
|
|
7386
7774
|
label: string;
|
|
7387
7775
|
fieldName: string;
|
|
7388
|
-
fieldType
|
|
7389
|
-
required
|
|
7776
|
+
fieldType?: string;
|
|
7777
|
+
required?: boolean;
|
|
7390
7778
|
category: 1 | 2 | 3 | 4;
|
|
7391
7779
|
selectValues?: string | number | {
|
|
7392
7780
|
name?: string;
|
|
@@ -7396,13 +7784,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7396
7784
|
}[];
|
|
7397
7785
|
defaultValues?: any;
|
|
7398
7786
|
remark?: string;
|
|
7787
|
+
helpMsg?: string;
|
|
7399
7788
|
configParams?: Array<any>;
|
|
7400
7789
|
}[];
|
|
7401
7790
|
advancedFields: {
|
|
7402
7791
|
label: string;
|
|
7403
7792
|
fieldName: string;
|
|
7404
|
-
fieldType
|
|
7405
|
-
required
|
|
7793
|
+
fieldType?: string;
|
|
7794
|
+
required?: boolean;
|
|
7406
7795
|
category: 1 | 2 | 3 | 4;
|
|
7407
7796
|
selectValues?: string | number | {
|
|
7408
7797
|
name?: string;
|
|
@@ -7412,13 +7801,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7412
7801
|
}[];
|
|
7413
7802
|
defaultValues?: any;
|
|
7414
7803
|
remark?: string;
|
|
7804
|
+
helpMsg?: string;
|
|
7415
7805
|
configParams?: Array<any>;
|
|
7416
7806
|
}[];
|
|
7417
7807
|
selfFields: {
|
|
7418
7808
|
label: string;
|
|
7419
7809
|
fieldName: string;
|
|
7420
|
-
fieldType
|
|
7421
|
-
required
|
|
7810
|
+
fieldType?: string;
|
|
7811
|
+
required?: boolean;
|
|
7422
7812
|
category: 1 | 2 | 3 | 4;
|
|
7423
7813
|
selectValues?: string | number | {
|
|
7424
7814
|
name?: string;
|
|
@@ -7428,6 +7818,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7428
7818
|
}[];
|
|
7429
7819
|
defaultValues?: any;
|
|
7430
7820
|
remark?: string;
|
|
7821
|
+
helpMsg?: string;
|
|
7431
7822
|
configParams?: Array<any>;
|
|
7432
7823
|
}[];
|
|
7433
7824
|
actions: {
|
|
@@ -7440,8 +7831,8 @@ funcCode?: Function | string;
|
|
|
7440
7831
|
preps: {
|
|
7441
7832
|
label: string;
|
|
7442
7833
|
fieldName: string;
|
|
7443
|
-
fieldType
|
|
7444
|
-
required
|
|
7834
|
+
fieldType?: string;
|
|
7835
|
+
required?: boolean;
|
|
7445
7836
|
category: 1 | 2 | 3 | 4;
|
|
7446
7837
|
selectValues?: string | number | {
|
|
7447
7838
|
name?: string;
|
|
@@ -7451,6 +7842,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7451
7842
|
}[];
|
|
7452
7843
|
defaultValues?: any;
|
|
7453
7844
|
remark?: string;
|
|
7845
|
+
helpMsg?: string;
|
|
7454
7846
|
configParams?: Array<any>;
|
|
7455
7847
|
}[];
|
|
7456
7848
|
}[], CompType[] | {
|
|
@@ -7462,8 +7854,8 @@ remark?: string;
|
|
|
7462
7854
|
fields: {
|
|
7463
7855
|
label: string;
|
|
7464
7856
|
fieldName: string;
|
|
7465
|
-
fieldType
|
|
7466
|
-
required
|
|
7857
|
+
fieldType?: string;
|
|
7858
|
+
required?: boolean;
|
|
7467
7859
|
category: 1 | 2 | 3 | 4;
|
|
7468
7860
|
selectValues?: string | number | {
|
|
7469
7861
|
name?: string;
|
|
@@ -7473,13 +7865,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7473
7865
|
}[];
|
|
7474
7866
|
defaultValues?: any;
|
|
7475
7867
|
remark?: string;
|
|
7868
|
+
helpMsg?: string;
|
|
7476
7869
|
configParams?: Array<any>;
|
|
7477
7870
|
}[];
|
|
7478
7871
|
advancedFields: {
|
|
7479
7872
|
label: string;
|
|
7480
7873
|
fieldName: string;
|
|
7481
|
-
fieldType
|
|
7482
|
-
required
|
|
7874
|
+
fieldType?: string;
|
|
7875
|
+
required?: boolean;
|
|
7483
7876
|
category: 1 | 2 | 3 | 4;
|
|
7484
7877
|
selectValues?: string | number | {
|
|
7485
7878
|
name?: string;
|
|
@@ -7489,13 +7882,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7489
7882
|
}[];
|
|
7490
7883
|
defaultValues?: any;
|
|
7491
7884
|
remark?: string;
|
|
7885
|
+
helpMsg?: string;
|
|
7492
7886
|
configParams?: Array<any>;
|
|
7493
7887
|
}[];
|
|
7494
7888
|
selfFields: {
|
|
7495
7889
|
label: string;
|
|
7496
7890
|
fieldName: string;
|
|
7497
|
-
fieldType
|
|
7498
|
-
required
|
|
7891
|
+
fieldType?: string;
|
|
7892
|
+
required?: boolean;
|
|
7499
7893
|
category: 1 | 2 | 3 | 4;
|
|
7500
7894
|
selectValues?: string | number | {
|
|
7501
7895
|
name?: string;
|
|
@@ -7505,6 +7899,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7505
7899
|
}[];
|
|
7506
7900
|
defaultValues?: any;
|
|
7507
7901
|
remark?: string;
|
|
7902
|
+
helpMsg?: string;
|
|
7508
7903
|
configParams?: Array<any>;
|
|
7509
7904
|
}[];
|
|
7510
7905
|
actions: {
|
|
@@ -7517,8 +7912,8 @@ funcCode?: Function | string;
|
|
|
7517
7912
|
preps: {
|
|
7518
7913
|
label: string;
|
|
7519
7914
|
fieldName: string;
|
|
7520
|
-
fieldType
|
|
7521
|
-
required
|
|
7915
|
+
fieldType?: string;
|
|
7916
|
+
required?: boolean;
|
|
7522
7917
|
category: 1 | 2 | 3 | 4;
|
|
7523
7918
|
selectValues?: string | number | {
|
|
7524
7919
|
name?: string;
|
|
@@ -7528,6 +7923,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7528
7923
|
}[];
|
|
7529
7924
|
defaultValues?: any;
|
|
7530
7925
|
remark?: string;
|
|
7926
|
+
helpMsg?: string;
|
|
7531
7927
|
configParams?: Array<any>;
|
|
7532
7928
|
}[];
|
|
7533
7929
|
}[]>;
|
|
@@ -7540,8 +7936,8 @@ remark?: string;
|
|
|
7540
7936
|
fields: {
|
|
7541
7937
|
label: string;
|
|
7542
7938
|
fieldName: string;
|
|
7543
|
-
fieldType
|
|
7544
|
-
required
|
|
7939
|
+
fieldType?: string;
|
|
7940
|
+
required?: boolean;
|
|
7545
7941
|
category: 1 | 2 | 3 | 4;
|
|
7546
7942
|
selectValues?: string | number | {
|
|
7547
7943
|
name?: string;
|
|
@@ -7551,13 +7947,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7551
7947
|
}[];
|
|
7552
7948
|
defaultValues?: any;
|
|
7553
7949
|
remark?: string;
|
|
7950
|
+
helpMsg?: string;
|
|
7554
7951
|
configParams?: Array<any>;
|
|
7555
7952
|
}[];
|
|
7556
7953
|
advancedFields: {
|
|
7557
7954
|
label: string;
|
|
7558
7955
|
fieldName: string;
|
|
7559
|
-
fieldType
|
|
7560
|
-
required
|
|
7956
|
+
fieldType?: string;
|
|
7957
|
+
required?: boolean;
|
|
7561
7958
|
category: 1 | 2 | 3 | 4;
|
|
7562
7959
|
selectValues?: string | number | {
|
|
7563
7960
|
name?: string;
|
|
@@ -7567,13 +7964,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7567
7964
|
}[];
|
|
7568
7965
|
defaultValues?: any;
|
|
7569
7966
|
remark?: string;
|
|
7967
|
+
helpMsg?: string;
|
|
7570
7968
|
configParams?: Array<any>;
|
|
7571
7969
|
}[];
|
|
7572
7970
|
selfFields: {
|
|
7573
7971
|
label: string;
|
|
7574
7972
|
fieldName: string;
|
|
7575
|
-
fieldType
|
|
7576
|
-
required
|
|
7973
|
+
fieldType?: string;
|
|
7974
|
+
required?: boolean;
|
|
7577
7975
|
category: 1 | 2 | 3 | 4;
|
|
7578
7976
|
selectValues?: string | number | {
|
|
7579
7977
|
name?: string;
|
|
@@ -7583,6 +7981,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7583
7981
|
}[];
|
|
7584
7982
|
defaultValues?: any;
|
|
7585
7983
|
remark?: string;
|
|
7984
|
+
helpMsg?: string;
|
|
7586
7985
|
configParams?: Array<any>;
|
|
7587
7986
|
}[];
|
|
7588
7987
|
actions: {
|
|
@@ -7595,8 +7994,8 @@ funcCode?: Function | string;
|
|
|
7595
7994
|
preps: {
|
|
7596
7995
|
label: string;
|
|
7597
7996
|
fieldName: string;
|
|
7598
|
-
fieldType
|
|
7599
|
-
required
|
|
7997
|
+
fieldType?: string;
|
|
7998
|
+
required?: boolean;
|
|
7600
7999
|
category: 1 | 2 | 3 | 4;
|
|
7601
8000
|
selectValues?: string | number | {
|
|
7602
8001
|
name?: string;
|
|
@@ -7606,6 +8005,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7606
8005
|
}[];
|
|
7607
8006
|
defaultValues?: any;
|
|
7608
8007
|
remark?: string;
|
|
8008
|
+
helpMsg?: string;
|
|
7609
8009
|
configParams?: Array<any>;
|
|
7610
8010
|
}[];
|
|
7611
8011
|
}[], CompType[] | {
|
|
@@ -7617,8 +8017,8 @@ remark?: string;
|
|
|
7617
8017
|
fields: {
|
|
7618
8018
|
label: string;
|
|
7619
8019
|
fieldName: string;
|
|
7620
|
-
fieldType
|
|
7621
|
-
required
|
|
8020
|
+
fieldType?: string;
|
|
8021
|
+
required?: boolean;
|
|
7622
8022
|
category: 1 | 2 | 3 | 4;
|
|
7623
8023
|
selectValues?: string | number | {
|
|
7624
8024
|
name?: string;
|
|
@@ -7628,13 +8028,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7628
8028
|
}[];
|
|
7629
8029
|
defaultValues?: any;
|
|
7630
8030
|
remark?: string;
|
|
8031
|
+
helpMsg?: string;
|
|
7631
8032
|
configParams?: Array<any>;
|
|
7632
8033
|
}[];
|
|
7633
8034
|
advancedFields: {
|
|
7634
8035
|
label: string;
|
|
7635
8036
|
fieldName: string;
|
|
7636
|
-
fieldType
|
|
7637
|
-
required
|
|
8037
|
+
fieldType?: string;
|
|
8038
|
+
required?: boolean;
|
|
7638
8039
|
category: 1 | 2 | 3 | 4;
|
|
7639
8040
|
selectValues?: string | number | {
|
|
7640
8041
|
name?: string;
|
|
@@ -7644,13 +8045,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7644
8045
|
}[];
|
|
7645
8046
|
defaultValues?: any;
|
|
7646
8047
|
remark?: string;
|
|
8048
|
+
helpMsg?: string;
|
|
7647
8049
|
configParams?: Array<any>;
|
|
7648
8050
|
}[];
|
|
7649
8051
|
selfFields: {
|
|
7650
8052
|
label: string;
|
|
7651
8053
|
fieldName: string;
|
|
7652
|
-
fieldType
|
|
7653
|
-
required
|
|
8054
|
+
fieldType?: string;
|
|
8055
|
+
required?: boolean;
|
|
7654
8056
|
category: 1 | 2 | 3 | 4;
|
|
7655
8057
|
selectValues?: string | number | {
|
|
7656
8058
|
name?: string;
|
|
@@ -7660,6 +8062,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7660
8062
|
}[];
|
|
7661
8063
|
defaultValues?: any;
|
|
7662
8064
|
remark?: string;
|
|
8065
|
+
helpMsg?: string;
|
|
7663
8066
|
configParams?: Array<any>;
|
|
7664
8067
|
}[];
|
|
7665
8068
|
actions: {
|
|
@@ -7672,8 +8075,8 @@ funcCode?: Function | string;
|
|
|
7672
8075
|
preps: {
|
|
7673
8076
|
label: string;
|
|
7674
8077
|
fieldName: string;
|
|
7675
|
-
fieldType
|
|
7676
|
-
required
|
|
8078
|
+
fieldType?: string;
|
|
8079
|
+
required?: boolean;
|
|
7677
8080
|
category: 1 | 2 | 3 | 4;
|
|
7678
8081
|
selectValues?: string | number | {
|
|
7679
8082
|
name?: string;
|
|
@@ -7683,6 +8086,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7683
8086
|
}[];
|
|
7684
8087
|
defaultValues?: any;
|
|
7685
8088
|
remark?: string;
|
|
8089
|
+
helpMsg?: string;
|
|
7686
8090
|
configParams?: Array<any>;
|
|
7687
8091
|
}[];
|
|
7688
8092
|
}[]>;
|
|
@@ -7751,8 +8155,8 @@ remark?: string;
|
|
|
7751
8155
|
fields: {
|
|
7752
8156
|
label: string;
|
|
7753
8157
|
fieldName: string;
|
|
7754
|
-
fieldType
|
|
7755
|
-
required
|
|
8158
|
+
fieldType?: string;
|
|
8159
|
+
required?: boolean;
|
|
7756
8160
|
category: 1 | 2 | 3 | 4;
|
|
7757
8161
|
selectValues?: string | number | {
|
|
7758
8162
|
name?: string;
|
|
@@ -7762,13 +8166,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7762
8166
|
}[];
|
|
7763
8167
|
defaultValues?: any;
|
|
7764
8168
|
remark?: string;
|
|
8169
|
+
helpMsg?: string;
|
|
7765
8170
|
configParams?: Array<any>;
|
|
7766
8171
|
}[];
|
|
7767
8172
|
advancedFields: {
|
|
7768
8173
|
label: string;
|
|
7769
8174
|
fieldName: string;
|
|
7770
|
-
fieldType
|
|
7771
|
-
required
|
|
8175
|
+
fieldType?: string;
|
|
8176
|
+
required?: boolean;
|
|
7772
8177
|
category: 1 | 2 | 3 | 4;
|
|
7773
8178
|
selectValues?: string | number | {
|
|
7774
8179
|
name?: string;
|
|
@@ -7778,13 +8183,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7778
8183
|
}[];
|
|
7779
8184
|
defaultValues?: any;
|
|
7780
8185
|
remark?: string;
|
|
8186
|
+
helpMsg?: string;
|
|
7781
8187
|
configParams?: Array<any>;
|
|
7782
8188
|
}[];
|
|
7783
8189
|
selfFields: {
|
|
7784
8190
|
label: string;
|
|
7785
8191
|
fieldName: string;
|
|
7786
|
-
fieldType
|
|
7787
|
-
required
|
|
8192
|
+
fieldType?: string;
|
|
8193
|
+
required?: boolean;
|
|
7788
8194
|
category: 1 | 2 | 3 | 4;
|
|
7789
8195
|
selectValues?: string | number | {
|
|
7790
8196
|
name?: string;
|
|
@@ -7794,6 +8200,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7794
8200
|
}[];
|
|
7795
8201
|
defaultValues?: any;
|
|
7796
8202
|
remark?: string;
|
|
8203
|
+
helpMsg?: string;
|
|
7797
8204
|
configParams?: Array<any>;
|
|
7798
8205
|
}[];
|
|
7799
8206
|
actions: {
|
|
@@ -7806,8 +8213,8 @@ funcCode?: Function | string;
|
|
|
7806
8213
|
preps: {
|
|
7807
8214
|
label: string;
|
|
7808
8215
|
fieldName: string;
|
|
7809
|
-
fieldType
|
|
7810
|
-
required
|
|
8216
|
+
fieldType?: string;
|
|
8217
|
+
required?: boolean;
|
|
7811
8218
|
category: 1 | 2 | 3 | 4;
|
|
7812
8219
|
selectValues?: string | number | {
|
|
7813
8220
|
name?: string;
|
|
@@ -7817,6 +8224,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7817
8224
|
}[];
|
|
7818
8225
|
defaultValues?: any;
|
|
7819
8226
|
remark?: string;
|
|
8227
|
+
helpMsg?: string;
|
|
7820
8228
|
configParams?: Array<any>;
|
|
7821
8229
|
}[];
|
|
7822
8230
|
}[], CompType[] | {
|
|
@@ -7828,8 +8236,8 @@ remark?: string;
|
|
|
7828
8236
|
fields: {
|
|
7829
8237
|
label: string;
|
|
7830
8238
|
fieldName: string;
|
|
7831
|
-
fieldType
|
|
7832
|
-
required
|
|
8239
|
+
fieldType?: string;
|
|
8240
|
+
required?: boolean;
|
|
7833
8241
|
category: 1 | 2 | 3 | 4;
|
|
7834
8242
|
selectValues?: string | number | {
|
|
7835
8243
|
name?: string;
|
|
@@ -7839,13 +8247,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7839
8247
|
}[];
|
|
7840
8248
|
defaultValues?: any;
|
|
7841
8249
|
remark?: string;
|
|
8250
|
+
helpMsg?: string;
|
|
7842
8251
|
configParams?: Array<any>;
|
|
7843
8252
|
}[];
|
|
7844
8253
|
advancedFields: {
|
|
7845
8254
|
label: string;
|
|
7846
8255
|
fieldName: string;
|
|
7847
|
-
fieldType
|
|
7848
|
-
required
|
|
8256
|
+
fieldType?: string;
|
|
8257
|
+
required?: boolean;
|
|
7849
8258
|
category: 1 | 2 | 3 | 4;
|
|
7850
8259
|
selectValues?: string | number | {
|
|
7851
8260
|
name?: string;
|
|
@@ -7855,13 +8264,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7855
8264
|
}[];
|
|
7856
8265
|
defaultValues?: any;
|
|
7857
8266
|
remark?: string;
|
|
8267
|
+
helpMsg?: string;
|
|
7858
8268
|
configParams?: Array<any>;
|
|
7859
8269
|
}[];
|
|
7860
8270
|
selfFields: {
|
|
7861
8271
|
label: string;
|
|
7862
8272
|
fieldName: string;
|
|
7863
|
-
fieldType
|
|
7864
|
-
required
|
|
8273
|
+
fieldType?: string;
|
|
8274
|
+
required?: boolean;
|
|
7865
8275
|
category: 1 | 2 | 3 | 4;
|
|
7866
8276
|
selectValues?: string | number | {
|
|
7867
8277
|
name?: string;
|
|
@@ -7871,6 +8281,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7871
8281
|
}[];
|
|
7872
8282
|
defaultValues?: any;
|
|
7873
8283
|
remark?: string;
|
|
8284
|
+
helpMsg?: string;
|
|
7874
8285
|
configParams?: Array<any>;
|
|
7875
8286
|
}[];
|
|
7876
8287
|
actions: {
|
|
@@ -7883,8 +8294,8 @@ funcCode?: Function | string;
|
|
|
7883
8294
|
preps: {
|
|
7884
8295
|
label: string;
|
|
7885
8296
|
fieldName: string;
|
|
7886
|
-
fieldType
|
|
7887
|
-
required
|
|
8297
|
+
fieldType?: string;
|
|
8298
|
+
required?: boolean;
|
|
7888
8299
|
category: 1 | 2 | 3 | 4;
|
|
7889
8300
|
selectValues?: string | number | {
|
|
7890
8301
|
name?: string;
|
|
@@ -7894,6 +8305,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7894
8305
|
}[];
|
|
7895
8306
|
defaultValues?: any;
|
|
7896
8307
|
remark?: string;
|
|
8308
|
+
helpMsg?: string;
|
|
7897
8309
|
configParams?: Array<any>;
|
|
7898
8310
|
}[];
|
|
7899
8311
|
}[]>;
|
|
@@ -7906,8 +8318,8 @@ remark?: string;
|
|
|
7906
8318
|
fields: {
|
|
7907
8319
|
label: string;
|
|
7908
8320
|
fieldName: string;
|
|
7909
|
-
fieldType
|
|
7910
|
-
required
|
|
8321
|
+
fieldType?: string;
|
|
8322
|
+
required?: boolean;
|
|
7911
8323
|
category: 1 | 2 | 3 | 4;
|
|
7912
8324
|
selectValues?: string | number | {
|
|
7913
8325
|
name?: string;
|
|
@@ -7917,13 +8329,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7917
8329
|
}[];
|
|
7918
8330
|
defaultValues?: any;
|
|
7919
8331
|
remark?: string;
|
|
8332
|
+
helpMsg?: string;
|
|
7920
8333
|
configParams?: Array<any>;
|
|
7921
8334
|
}[];
|
|
7922
8335
|
advancedFields: {
|
|
7923
8336
|
label: string;
|
|
7924
8337
|
fieldName: string;
|
|
7925
|
-
fieldType
|
|
7926
|
-
required
|
|
8338
|
+
fieldType?: string;
|
|
8339
|
+
required?: boolean;
|
|
7927
8340
|
category: 1 | 2 | 3 | 4;
|
|
7928
8341
|
selectValues?: string | number | {
|
|
7929
8342
|
name?: string;
|
|
@@ -7933,13 +8346,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7933
8346
|
}[];
|
|
7934
8347
|
defaultValues?: any;
|
|
7935
8348
|
remark?: string;
|
|
8349
|
+
helpMsg?: string;
|
|
7936
8350
|
configParams?: Array<any>;
|
|
7937
8351
|
}[];
|
|
7938
8352
|
selfFields: {
|
|
7939
8353
|
label: string;
|
|
7940
8354
|
fieldName: string;
|
|
7941
|
-
fieldType
|
|
7942
|
-
required
|
|
8355
|
+
fieldType?: string;
|
|
8356
|
+
required?: boolean;
|
|
7943
8357
|
category: 1 | 2 | 3 | 4;
|
|
7944
8358
|
selectValues?: string | number | {
|
|
7945
8359
|
name?: string;
|
|
@@ -7949,6 +8363,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7949
8363
|
}[];
|
|
7950
8364
|
defaultValues?: any;
|
|
7951
8365
|
remark?: string;
|
|
8366
|
+
helpMsg?: string;
|
|
7952
8367
|
configParams?: Array<any>;
|
|
7953
8368
|
}[];
|
|
7954
8369
|
actions: {
|
|
@@ -7961,8 +8376,8 @@ funcCode?: Function | string;
|
|
|
7961
8376
|
preps: {
|
|
7962
8377
|
label: string;
|
|
7963
8378
|
fieldName: string;
|
|
7964
|
-
fieldType
|
|
7965
|
-
required
|
|
8379
|
+
fieldType?: string;
|
|
8380
|
+
required?: boolean;
|
|
7966
8381
|
category: 1 | 2 | 3 | 4;
|
|
7967
8382
|
selectValues?: string | number | {
|
|
7968
8383
|
name?: string;
|
|
@@ -7972,6 +8387,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7972
8387
|
}[];
|
|
7973
8388
|
defaultValues?: any;
|
|
7974
8389
|
remark?: string;
|
|
8390
|
+
helpMsg?: string;
|
|
7975
8391
|
configParams?: Array<any>;
|
|
7976
8392
|
}[];
|
|
7977
8393
|
}[], CompType[] | {
|
|
@@ -7983,8 +8399,8 @@ remark?: string;
|
|
|
7983
8399
|
fields: {
|
|
7984
8400
|
label: string;
|
|
7985
8401
|
fieldName: string;
|
|
7986
|
-
fieldType
|
|
7987
|
-
required
|
|
8402
|
+
fieldType?: string;
|
|
8403
|
+
required?: boolean;
|
|
7988
8404
|
category: 1 | 2 | 3 | 4;
|
|
7989
8405
|
selectValues?: string | number | {
|
|
7990
8406
|
name?: string;
|
|
@@ -7994,13 +8410,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
7994
8410
|
}[];
|
|
7995
8411
|
defaultValues?: any;
|
|
7996
8412
|
remark?: string;
|
|
8413
|
+
helpMsg?: string;
|
|
7997
8414
|
configParams?: Array<any>;
|
|
7998
8415
|
}[];
|
|
7999
8416
|
advancedFields: {
|
|
8000
8417
|
label: string;
|
|
8001
8418
|
fieldName: string;
|
|
8002
|
-
fieldType
|
|
8003
|
-
required
|
|
8419
|
+
fieldType?: string;
|
|
8420
|
+
required?: boolean;
|
|
8004
8421
|
category: 1 | 2 | 3 | 4;
|
|
8005
8422
|
selectValues?: string | number | {
|
|
8006
8423
|
name?: string;
|
|
@@ -8010,13 +8427,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8010
8427
|
}[];
|
|
8011
8428
|
defaultValues?: any;
|
|
8012
8429
|
remark?: string;
|
|
8430
|
+
helpMsg?: string;
|
|
8013
8431
|
configParams?: Array<any>;
|
|
8014
8432
|
}[];
|
|
8015
8433
|
selfFields: {
|
|
8016
8434
|
label: string;
|
|
8017
8435
|
fieldName: string;
|
|
8018
|
-
fieldType
|
|
8019
|
-
required
|
|
8436
|
+
fieldType?: string;
|
|
8437
|
+
required?: boolean;
|
|
8020
8438
|
category: 1 | 2 | 3 | 4;
|
|
8021
8439
|
selectValues?: string | number | {
|
|
8022
8440
|
name?: string;
|
|
@@ -8026,6 +8444,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8026
8444
|
}[];
|
|
8027
8445
|
defaultValues?: any;
|
|
8028
8446
|
remark?: string;
|
|
8447
|
+
helpMsg?: string;
|
|
8029
8448
|
configParams?: Array<any>;
|
|
8030
8449
|
}[];
|
|
8031
8450
|
actions: {
|
|
@@ -8038,8 +8457,8 @@ funcCode?: Function | string;
|
|
|
8038
8457
|
preps: {
|
|
8039
8458
|
label: string;
|
|
8040
8459
|
fieldName: string;
|
|
8041
|
-
fieldType
|
|
8042
|
-
required
|
|
8460
|
+
fieldType?: string;
|
|
8461
|
+
required?: boolean;
|
|
8043
8462
|
category: 1 | 2 | 3 | 4;
|
|
8044
8463
|
selectValues?: string | number | {
|
|
8045
8464
|
name?: string;
|
|
@@ -8049,6 +8468,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8049
8468
|
}[];
|
|
8050
8469
|
defaultValues?: any;
|
|
8051
8470
|
remark?: string;
|
|
8471
|
+
helpMsg?: string;
|
|
8052
8472
|
configParams?: Array<any>;
|
|
8053
8473
|
}[];
|
|
8054
8474
|
}[]>;
|
|
@@ -8061,8 +8481,8 @@ remark?: string;
|
|
|
8061
8481
|
fields: {
|
|
8062
8482
|
label: string;
|
|
8063
8483
|
fieldName: string;
|
|
8064
|
-
fieldType
|
|
8065
|
-
required
|
|
8484
|
+
fieldType?: string;
|
|
8485
|
+
required?: boolean;
|
|
8066
8486
|
category: 1 | 2 | 3 | 4;
|
|
8067
8487
|
selectValues?: string | number | {
|
|
8068
8488
|
name?: string;
|
|
@@ -8072,13 +8492,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8072
8492
|
}[];
|
|
8073
8493
|
defaultValues?: any;
|
|
8074
8494
|
remark?: string;
|
|
8495
|
+
helpMsg?: string;
|
|
8075
8496
|
configParams?: Array<any>;
|
|
8076
8497
|
}[];
|
|
8077
8498
|
advancedFields: {
|
|
8078
8499
|
label: string;
|
|
8079
8500
|
fieldName: string;
|
|
8080
|
-
fieldType
|
|
8081
|
-
required
|
|
8501
|
+
fieldType?: string;
|
|
8502
|
+
required?: boolean;
|
|
8082
8503
|
category: 1 | 2 | 3 | 4;
|
|
8083
8504
|
selectValues?: string | number | {
|
|
8084
8505
|
name?: string;
|
|
@@ -8088,13 +8509,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8088
8509
|
}[];
|
|
8089
8510
|
defaultValues?: any;
|
|
8090
8511
|
remark?: string;
|
|
8512
|
+
helpMsg?: string;
|
|
8091
8513
|
configParams?: Array<any>;
|
|
8092
8514
|
}[];
|
|
8093
8515
|
selfFields: {
|
|
8094
8516
|
label: string;
|
|
8095
8517
|
fieldName: string;
|
|
8096
|
-
fieldType
|
|
8097
|
-
required
|
|
8518
|
+
fieldType?: string;
|
|
8519
|
+
required?: boolean;
|
|
8098
8520
|
category: 1 | 2 | 3 | 4;
|
|
8099
8521
|
selectValues?: string | number | {
|
|
8100
8522
|
name?: string;
|
|
@@ -8104,6 +8526,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8104
8526
|
}[];
|
|
8105
8527
|
defaultValues?: any;
|
|
8106
8528
|
remark?: string;
|
|
8529
|
+
helpMsg?: string;
|
|
8107
8530
|
configParams?: Array<any>;
|
|
8108
8531
|
}[];
|
|
8109
8532
|
actions: {
|
|
@@ -8116,8 +8539,8 @@ funcCode?: Function | string;
|
|
|
8116
8539
|
preps: {
|
|
8117
8540
|
label: string;
|
|
8118
8541
|
fieldName: string;
|
|
8119
|
-
fieldType
|
|
8120
|
-
required
|
|
8542
|
+
fieldType?: string;
|
|
8543
|
+
required?: boolean;
|
|
8121
8544
|
category: 1 | 2 | 3 | 4;
|
|
8122
8545
|
selectValues?: string | number | {
|
|
8123
8546
|
name?: string;
|
|
@@ -8127,6 +8550,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8127
8550
|
}[];
|
|
8128
8551
|
defaultValues?: any;
|
|
8129
8552
|
remark?: string;
|
|
8553
|
+
helpMsg?: string;
|
|
8130
8554
|
configParams?: Array<any>;
|
|
8131
8555
|
}[];
|
|
8132
8556
|
}[], CompType[] | {
|
|
@@ -8138,8 +8562,8 @@ remark?: string;
|
|
|
8138
8562
|
fields: {
|
|
8139
8563
|
label: string;
|
|
8140
8564
|
fieldName: string;
|
|
8141
|
-
fieldType
|
|
8142
|
-
required
|
|
8565
|
+
fieldType?: string;
|
|
8566
|
+
required?: boolean;
|
|
8143
8567
|
category: 1 | 2 | 3 | 4;
|
|
8144
8568
|
selectValues?: string | number | {
|
|
8145
8569
|
name?: string;
|
|
@@ -8149,13 +8573,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8149
8573
|
}[];
|
|
8150
8574
|
defaultValues?: any;
|
|
8151
8575
|
remark?: string;
|
|
8576
|
+
helpMsg?: string;
|
|
8152
8577
|
configParams?: Array<any>;
|
|
8153
8578
|
}[];
|
|
8154
8579
|
advancedFields: {
|
|
8155
8580
|
label: string;
|
|
8156
8581
|
fieldName: string;
|
|
8157
|
-
fieldType
|
|
8158
|
-
required
|
|
8582
|
+
fieldType?: string;
|
|
8583
|
+
required?: boolean;
|
|
8159
8584
|
category: 1 | 2 | 3 | 4;
|
|
8160
8585
|
selectValues?: string | number | {
|
|
8161
8586
|
name?: string;
|
|
@@ -8165,13 +8590,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8165
8590
|
}[];
|
|
8166
8591
|
defaultValues?: any;
|
|
8167
8592
|
remark?: string;
|
|
8593
|
+
helpMsg?: string;
|
|
8168
8594
|
configParams?: Array<any>;
|
|
8169
8595
|
}[];
|
|
8170
8596
|
selfFields: {
|
|
8171
8597
|
label: string;
|
|
8172
8598
|
fieldName: string;
|
|
8173
|
-
fieldType
|
|
8174
|
-
required
|
|
8599
|
+
fieldType?: string;
|
|
8600
|
+
required?: boolean;
|
|
8175
8601
|
category: 1 | 2 | 3 | 4;
|
|
8176
8602
|
selectValues?: string | number | {
|
|
8177
8603
|
name?: string;
|
|
@@ -8181,6 +8607,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8181
8607
|
}[];
|
|
8182
8608
|
defaultValues?: any;
|
|
8183
8609
|
remark?: string;
|
|
8610
|
+
helpMsg?: string;
|
|
8184
8611
|
configParams?: Array<any>;
|
|
8185
8612
|
}[];
|
|
8186
8613
|
actions: {
|
|
@@ -8193,8 +8620,8 @@ funcCode?: Function | string;
|
|
|
8193
8620
|
preps: {
|
|
8194
8621
|
label: string;
|
|
8195
8622
|
fieldName: string;
|
|
8196
|
-
fieldType
|
|
8197
|
-
required
|
|
8623
|
+
fieldType?: string;
|
|
8624
|
+
required?: boolean;
|
|
8198
8625
|
category: 1 | 2 | 3 | 4;
|
|
8199
8626
|
selectValues?: string | number | {
|
|
8200
8627
|
name?: string;
|
|
@@ -8204,6 +8631,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8204
8631
|
}[];
|
|
8205
8632
|
defaultValues?: any;
|
|
8206
8633
|
remark?: string;
|
|
8634
|
+
helpMsg?: string;
|
|
8207
8635
|
configParams?: Array<any>;
|
|
8208
8636
|
}[];
|
|
8209
8637
|
}[]>;
|
|
@@ -8272,8 +8700,8 @@ remark?: string;
|
|
|
8272
8700
|
fields: {
|
|
8273
8701
|
label: string;
|
|
8274
8702
|
fieldName: string;
|
|
8275
|
-
fieldType
|
|
8276
|
-
required
|
|
8703
|
+
fieldType?: string;
|
|
8704
|
+
required?: boolean;
|
|
8277
8705
|
category: 1 | 2 | 3 | 4;
|
|
8278
8706
|
selectValues?: string | number | {
|
|
8279
8707
|
name?: string;
|
|
@@ -8283,13 +8711,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8283
8711
|
}[];
|
|
8284
8712
|
defaultValues?: any;
|
|
8285
8713
|
remark?: string;
|
|
8714
|
+
helpMsg?: string;
|
|
8286
8715
|
configParams?: Array<any>;
|
|
8287
8716
|
}[];
|
|
8288
8717
|
advancedFields: {
|
|
8289
8718
|
label: string;
|
|
8290
8719
|
fieldName: string;
|
|
8291
|
-
fieldType
|
|
8292
|
-
required
|
|
8720
|
+
fieldType?: string;
|
|
8721
|
+
required?: boolean;
|
|
8293
8722
|
category: 1 | 2 | 3 | 4;
|
|
8294
8723
|
selectValues?: string | number | {
|
|
8295
8724
|
name?: string;
|
|
@@ -8299,13 +8728,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8299
8728
|
}[];
|
|
8300
8729
|
defaultValues?: any;
|
|
8301
8730
|
remark?: string;
|
|
8731
|
+
helpMsg?: string;
|
|
8302
8732
|
configParams?: Array<any>;
|
|
8303
8733
|
}[];
|
|
8304
8734
|
selfFields: {
|
|
8305
8735
|
label: string;
|
|
8306
8736
|
fieldName: string;
|
|
8307
|
-
fieldType
|
|
8308
|
-
required
|
|
8737
|
+
fieldType?: string;
|
|
8738
|
+
required?: boolean;
|
|
8309
8739
|
category: 1 | 2 | 3 | 4;
|
|
8310
8740
|
selectValues?: string | number | {
|
|
8311
8741
|
name?: string;
|
|
@@ -8315,6 +8745,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8315
8745
|
}[];
|
|
8316
8746
|
defaultValues?: any;
|
|
8317
8747
|
remark?: string;
|
|
8748
|
+
helpMsg?: string;
|
|
8318
8749
|
configParams?: Array<any>;
|
|
8319
8750
|
}[];
|
|
8320
8751
|
actions: {
|
|
@@ -8327,8 +8758,8 @@ funcCode?: Function | string;
|
|
|
8327
8758
|
preps: {
|
|
8328
8759
|
label: string;
|
|
8329
8760
|
fieldName: string;
|
|
8330
|
-
fieldType
|
|
8331
|
-
required
|
|
8761
|
+
fieldType?: string;
|
|
8762
|
+
required?: boolean;
|
|
8332
8763
|
category: 1 | 2 | 3 | 4;
|
|
8333
8764
|
selectValues?: string | number | {
|
|
8334
8765
|
name?: string;
|
|
@@ -8338,6 +8769,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8338
8769
|
}[];
|
|
8339
8770
|
defaultValues?: any;
|
|
8340
8771
|
remark?: string;
|
|
8772
|
+
helpMsg?: string;
|
|
8341
8773
|
configParams?: Array<any>;
|
|
8342
8774
|
}[];
|
|
8343
8775
|
}[], CompType[] | {
|
|
@@ -8349,8 +8781,8 @@ remark?: string;
|
|
|
8349
8781
|
fields: {
|
|
8350
8782
|
label: string;
|
|
8351
8783
|
fieldName: string;
|
|
8352
|
-
fieldType
|
|
8353
|
-
required
|
|
8784
|
+
fieldType?: string;
|
|
8785
|
+
required?: boolean;
|
|
8354
8786
|
category: 1 | 2 | 3 | 4;
|
|
8355
8787
|
selectValues?: string | number | {
|
|
8356
8788
|
name?: string;
|
|
@@ -8360,13 +8792,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8360
8792
|
}[];
|
|
8361
8793
|
defaultValues?: any;
|
|
8362
8794
|
remark?: string;
|
|
8795
|
+
helpMsg?: string;
|
|
8363
8796
|
configParams?: Array<any>;
|
|
8364
8797
|
}[];
|
|
8365
8798
|
advancedFields: {
|
|
8366
8799
|
label: string;
|
|
8367
8800
|
fieldName: string;
|
|
8368
|
-
fieldType
|
|
8369
|
-
required
|
|
8801
|
+
fieldType?: string;
|
|
8802
|
+
required?: boolean;
|
|
8370
8803
|
category: 1 | 2 | 3 | 4;
|
|
8371
8804
|
selectValues?: string | number | {
|
|
8372
8805
|
name?: string;
|
|
@@ -8376,13 +8809,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8376
8809
|
}[];
|
|
8377
8810
|
defaultValues?: any;
|
|
8378
8811
|
remark?: string;
|
|
8812
|
+
helpMsg?: string;
|
|
8379
8813
|
configParams?: Array<any>;
|
|
8380
8814
|
}[];
|
|
8381
8815
|
selfFields: {
|
|
8382
8816
|
label: string;
|
|
8383
8817
|
fieldName: string;
|
|
8384
|
-
fieldType
|
|
8385
|
-
required
|
|
8818
|
+
fieldType?: string;
|
|
8819
|
+
required?: boolean;
|
|
8386
8820
|
category: 1 | 2 | 3 | 4;
|
|
8387
8821
|
selectValues?: string | number | {
|
|
8388
8822
|
name?: string;
|
|
@@ -8392,6 +8826,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8392
8826
|
}[];
|
|
8393
8827
|
defaultValues?: any;
|
|
8394
8828
|
remark?: string;
|
|
8829
|
+
helpMsg?: string;
|
|
8395
8830
|
configParams?: Array<any>;
|
|
8396
8831
|
}[];
|
|
8397
8832
|
actions: {
|
|
@@ -8404,8 +8839,8 @@ funcCode?: Function | string;
|
|
|
8404
8839
|
preps: {
|
|
8405
8840
|
label: string;
|
|
8406
8841
|
fieldName: string;
|
|
8407
|
-
fieldType
|
|
8408
|
-
required
|
|
8842
|
+
fieldType?: string;
|
|
8843
|
+
required?: boolean;
|
|
8409
8844
|
category: 1 | 2 | 3 | 4;
|
|
8410
8845
|
selectValues?: string | number | {
|
|
8411
8846
|
name?: string;
|
|
@@ -8415,6 +8850,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8415
8850
|
}[];
|
|
8416
8851
|
defaultValues?: any;
|
|
8417
8852
|
remark?: string;
|
|
8853
|
+
helpMsg?: string;
|
|
8418
8854
|
configParams?: Array<any>;
|
|
8419
8855
|
}[];
|
|
8420
8856
|
}[]>;
|
|
@@ -8427,8 +8863,8 @@ remark?: string;
|
|
|
8427
8863
|
fields: {
|
|
8428
8864
|
label: string;
|
|
8429
8865
|
fieldName: string;
|
|
8430
|
-
fieldType
|
|
8431
|
-
required
|
|
8866
|
+
fieldType?: string;
|
|
8867
|
+
required?: boolean;
|
|
8432
8868
|
category: 1 | 2 | 3 | 4;
|
|
8433
8869
|
selectValues?: string | number | {
|
|
8434
8870
|
name?: string;
|
|
@@ -8438,13 +8874,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8438
8874
|
}[];
|
|
8439
8875
|
defaultValues?: any;
|
|
8440
8876
|
remark?: string;
|
|
8877
|
+
helpMsg?: string;
|
|
8441
8878
|
configParams?: Array<any>;
|
|
8442
8879
|
}[];
|
|
8443
8880
|
advancedFields: {
|
|
8444
8881
|
label: string;
|
|
8445
8882
|
fieldName: string;
|
|
8446
|
-
fieldType
|
|
8447
|
-
required
|
|
8883
|
+
fieldType?: string;
|
|
8884
|
+
required?: boolean;
|
|
8448
8885
|
category: 1 | 2 | 3 | 4;
|
|
8449
8886
|
selectValues?: string | number | {
|
|
8450
8887
|
name?: string;
|
|
@@ -8454,13 +8891,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8454
8891
|
}[];
|
|
8455
8892
|
defaultValues?: any;
|
|
8456
8893
|
remark?: string;
|
|
8894
|
+
helpMsg?: string;
|
|
8457
8895
|
configParams?: Array<any>;
|
|
8458
8896
|
}[];
|
|
8459
8897
|
selfFields: {
|
|
8460
8898
|
label: string;
|
|
8461
8899
|
fieldName: string;
|
|
8462
|
-
fieldType
|
|
8463
|
-
required
|
|
8900
|
+
fieldType?: string;
|
|
8901
|
+
required?: boolean;
|
|
8464
8902
|
category: 1 | 2 | 3 | 4;
|
|
8465
8903
|
selectValues?: string | number | {
|
|
8466
8904
|
name?: string;
|
|
@@ -8470,6 +8908,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8470
8908
|
}[];
|
|
8471
8909
|
defaultValues?: any;
|
|
8472
8910
|
remark?: string;
|
|
8911
|
+
helpMsg?: string;
|
|
8473
8912
|
configParams?: Array<any>;
|
|
8474
8913
|
}[];
|
|
8475
8914
|
actions: {
|
|
@@ -8482,8 +8921,8 @@ funcCode?: Function | string;
|
|
|
8482
8921
|
preps: {
|
|
8483
8922
|
label: string;
|
|
8484
8923
|
fieldName: string;
|
|
8485
|
-
fieldType
|
|
8486
|
-
required
|
|
8924
|
+
fieldType?: string;
|
|
8925
|
+
required?: boolean;
|
|
8487
8926
|
category: 1 | 2 | 3 | 4;
|
|
8488
8927
|
selectValues?: string | number | {
|
|
8489
8928
|
name?: string;
|
|
@@ -8493,6 +8932,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8493
8932
|
}[];
|
|
8494
8933
|
defaultValues?: any;
|
|
8495
8934
|
remark?: string;
|
|
8935
|
+
helpMsg?: string;
|
|
8496
8936
|
configParams?: Array<any>;
|
|
8497
8937
|
}[];
|
|
8498
8938
|
}[], CompType[] | {
|
|
@@ -8504,8 +8944,8 @@ remark?: string;
|
|
|
8504
8944
|
fields: {
|
|
8505
8945
|
label: string;
|
|
8506
8946
|
fieldName: string;
|
|
8507
|
-
fieldType
|
|
8508
|
-
required
|
|
8947
|
+
fieldType?: string;
|
|
8948
|
+
required?: boolean;
|
|
8509
8949
|
category: 1 | 2 | 3 | 4;
|
|
8510
8950
|
selectValues?: string | number | {
|
|
8511
8951
|
name?: string;
|
|
@@ -8515,13 +8955,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8515
8955
|
}[];
|
|
8516
8956
|
defaultValues?: any;
|
|
8517
8957
|
remark?: string;
|
|
8958
|
+
helpMsg?: string;
|
|
8518
8959
|
configParams?: Array<any>;
|
|
8519
8960
|
}[];
|
|
8520
8961
|
advancedFields: {
|
|
8521
8962
|
label: string;
|
|
8522
8963
|
fieldName: string;
|
|
8523
|
-
fieldType
|
|
8524
|
-
required
|
|
8964
|
+
fieldType?: string;
|
|
8965
|
+
required?: boolean;
|
|
8525
8966
|
category: 1 | 2 | 3 | 4;
|
|
8526
8967
|
selectValues?: string | number | {
|
|
8527
8968
|
name?: string;
|
|
@@ -8531,13 +8972,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8531
8972
|
}[];
|
|
8532
8973
|
defaultValues?: any;
|
|
8533
8974
|
remark?: string;
|
|
8975
|
+
helpMsg?: string;
|
|
8534
8976
|
configParams?: Array<any>;
|
|
8535
8977
|
}[];
|
|
8536
8978
|
selfFields: {
|
|
8537
8979
|
label: string;
|
|
8538
8980
|
fieldName: string;
|
|
8539
|
-
fieldType
|
|
8540
|
-
required
|
|
8981
|
+
fieldType?: string;
|
|
8982
|
+
required?: boolean;
|
|
8541
8983
|
category: 1 | 2 | 3 | 4;
|
|
8542
8984
|
selectValues?: string | number | {
|
|
8543
8985
|
name?: string;
|
|
@@ -8547,6 +8989,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8547
8989
|
}[];
|
|
8548
8990
|
defaultValues?: any;
|
|
8549
8991
|
remark?: string;
|
|
8992
|
+
helpMsg?: string;
|
|
8550
8993
|
configParams?: Array<any>;
|
|
8551
8994
|
}[];
|
|
8552
8995
|
actions: {
|
|
@@ -8559,8 +9002,8 @@ funcCode?: Function | string;
|
|
|
8559
9002
|
preps: {
|
|
8560
9003
|
label: string;
|
|
8561
9004
|
fieldName: string;
|
|
8562
|
-
fieldType
|
|
8563
|
-
required
|
|
9005
|
+
fieldType?: string;
|
|
9006
|
+
required?: boolean;
|
|
8564
9007
|
category: 1 | 2 | 3 | 4;
|
|
8565
9008
|
selectValues?: string | number | {
|
|
8566
9009
|
name?: string;
|
|
@@ -8570,6 +9013,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8570
9013
|
}[];
|
|
8571
9014
|
defaultValues?: any;
|
|
8572
9015
|
remark?: string;
|
|
9016
|
+
helpMsg?: string;
|
|
8573
9017
|
configParams?: Array<any>;
|
|
8574
9018
|
}[];
|
|
8575
9019
|
}[]>;
|
|
@@ -8582,8 +9026,8 @@ remark?: string;
|
|
|
8582
9026
|
fields: {
|
|
8583
9027
|
label: string;
|
|
8584
9028
|
fieldName: string;
|
|
8585
|
-
fieldType
|
|
8586
|
-
required
|
|
9029
|
+
fieldType?: string;
|
|
9030
|
+
required?: boolean;
|
|
8587
9031
|
category: 1 | 2 | 3 | 4;
|
|
8588
9032
|
selectValues?: string | number | {
|
|
8589
9033
|
name?: string;
|
|
@@ -8593,13 +9037,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8593
9037
|
}[];
|
|
8594
9038
|
defaultValues?: any;
|
|
8595
9039
|
remark?: string;
|
|
9040
|
+
helpMsg?: string;
|
|
8596
9041
|
configParams?: Array<any>;
|
|
8597
9042
|
}[];
|
|
8598
9043
|
advancedFields: {
|
|
8599
9044
|
label: string;
|
|
8600
9045
|
fieldName: string;
|
|
8601
|
-
fieldType
|
|
8602
|
-
required
|
|
9046
|
+
fieldType?: string;
|
|
9047
|
+
required?: boolean;
|
|
8603
9048
|
category: 1 | 2 | 3 | 4;
|
|
8604
9049
|
selectValues?: string | number | {
|
|
8605
9050
|
name?: string;
|
|
@@ -8609,13 +9054,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8609
9054
|
}[];
|
|
8610
9055
|
defaultValues?: any;
|
|
8611
9056
|
remark?: string;
|
|
9057
|
+
helpMsg?: string;
|
|
8612
9058
|
configParams?: Array<any>;
|
|
8613
9059
|
}[];
|
|
8614
9060
|
selfFields: {
|
|
8615
9061
|
label: string;
|
|
8616
9062
|
fieldName: string;
|
|
8617
|
-
fieldType
|
|
8618
|
-
required
|
|
9063
|
+
fieldType?: string;
|
|
9064
|
+
required?: boolean;
|
|
8619
9065
|
category: 1 | 2 | 3 | 4;
|
|
8620
9066
|
selectValues?: string | number | {
|
|
8621
9067
|
name?: string;
|
|
@@ -8625,6 +9071,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8625
9071
|
}[];
|
|
8626
9072
|
defaultValues?: any;
|
|
8627
9073
|
remark?: string;
|
|
9074
|
+
helpMsg?: string;
|
|
8628
9075
|
configParams?: Array<any>;
|
|
8629
9076
|
}[];
|
|
8630
9077
|
actions: {
|
|
@@ -8637,8 +9084,8 @@ funcCode?: Function | string;
|
|
|
8637
9084
|
preps: {
|
|
8638
9085
|
label: string;
|
|
8639
9086
|
fieldName: string;
|
|
8640
|
-
fieldType
|
|
8641
|
-
required
|
|
9087
|
+
fieldType?: string;
|
|
9088
|
+
required?: boolean;
|
|
8642
9089
|
category: 1 | 2 | 3 | 4;
|
|
8643
9090
|
selectValues?: string | number | {
|
|
8644
9091
|
name?: string;
|
|
@@ -8648,6 +9095,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8648
9095
|
}[];
|
|
8649
9096
|
defaultValues?: any;
|
|
8650
9097
|
remark?: string;
|
|
9098
|
+
helpMsg?: string;
|
|
8651
9099
|
configParams?: Array<any>;
|
|
8652
9100
|
}[];
|
|
8653
9101
|
}[], CompType[] | {
|
|
@@ -8659,8 +9107,8 @@ remark?: string;
|
|
|
8659
9107
|
fields: {
|
|
8660
9108
|
label: string;
|
|
8661
9109
|
fieldName: string;
|
|
8662
|
-
fieldType
|
|
8663
|
-
required
|
|
9110
|
+
fieldType?: string;
|
|
9111
|
+
required?: boolean;
|
|
8664
9112
|
category: 1 | 2 | 3 | 4;
|
|
8665
9113
|
selectValues?: string | number | {
|
|
8666
9114
|
name?: string;
|
|
@@ -8670,13 +9118,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8670
9118
|
}[];
|
|
8671
9119
|
defaultValues?: any;
|
|
8672
9120
|
remark?: string;
|
|
9121
|
+
helpMsg?: string;
|
|
8673
9122
|
configParams?: Array<any>;
|
|
8674
9123
|
}[];
|
|
8675
9124
|
advancedFields: {
|
|
8676
9125
|
label: string;
|
|
8677
9126
|
fieldName: string;
|
|
8678
|
-
fieldType
|
|
8679
|
-
required
|
|
9127
|
+
fieldType?: string;
|
|
9128
|
+
required?: boolean;
|
|
8680
9129
|
category: 1 | 2 | 3 | 4;
|
|
8681
9130
|
selectValues?: string | number | {
|
|
8682
9131
|
name?: string;
|
|
@@ -8686,13 +9135,14 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8686
9135
|
}[];
|
|
8687
9136
|
defaultValues?: any;
|
|
8688
9137
|
remark?: string;
|
|
9138
|
+
helpMsg?: string;
|
|
8689
9139
|
configParams?: Array<any>;
|
|
8690
9140
|
}[];
|
|
8691
9141
|
selfFields: {
|
|
8692
9142
|
label: string;
|
|
8693
9143
|
fieldName: string;
|
|
8694
|
-
fieldType
|
|
8695
|
-
required
|
|
9144
|
+
fieldType?: string;
|
|
9145
|
+
required?: boolean;
|
|
8696
9146
|
category: 1 | 2 | 3 | 4;
|
|
8697
9147
|
selectValues?: string | number | {
|
|
8698
9148
|
name?: string;
|
|
@@ -8702,6 +9152,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8702
9152
|
}[];
|
|
8703
9153
|
defaultValues?: any;
|
|
8704
9154
|
remark?: string;
|
|
9155
|
+
helpMsg?: string;
|
|
8705
9156
|
configParams?: Array<any>;
|
|
8706
9157
|
}[];
|
|
8707
9158
|
actions: {
|
|
@@ -8714,8 +9165,8 @@ funcCode?: Function | string;
|
|
|
8714
9165
|
preps: {
|
|
8715
9166
|
label: string;
|
|
8716
9167
|
fieldName: string;
|
|
8717
|
-
fieldType
|
|
8718
|
-
required
|
|
9168
|
+
fieldType?: string;
|
|
9169
|
+
required?: boolean;
|
|
8719
9170
|
category: 1 | 2 | 3 | 4;
|
|
8720
9171
|
selectValues?: string | number | {
|
|
8721
9172
|
name?: string;
|
|
@@ -8725,6 +9176,7 @@ children?: SelectOption[] | /*elided*/ any[];
|
|
|
8725
9176
|
}[];
|
|
8726
9177
|
defaultValues?: any;
|
|
8727
9178
|
remark?: string;
|
|
9179
|
+
helpMsg?: string;
|
|
8728
9180
|
configParams?: Array<any>;
|
|
8729
9181
|
}[];
|
|
8730
9182
|
}[]>;
|
|
@@ -9006,11 +9458,11 @@ clearAll: (isDark?: string) => void;
|
|
|
9006
9458
|
*/
|
|
9007
9459
|
export declare function userAction(tableRef: Ref, primaryKey: string, datas: Array<any>): Array<UserFuncInfo>;
|
|
9008
9460
|
|
|
9009
|
-
export declare const usercompItem: DefineComponent<
|
|
9461
|
+
export declare const usercompItem: DefineComponent<__VLS_PublicProps_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9010
9462
|
selectItem: (...args: any[]) => void;
|
|
9011
9463
|
selfFunc: (...args: any[]) => void;
|
|
9012
9464
|
"update:formData": (value: any) => void;
|
|
9013
|
-
}, string, PublicProps, Readonly<
|
|
9465
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_40> & Readonly<{
|
|
9014
9466
|
onSelectItem?: (...args: any[]) => any;
|
|
9015
9467
|
onSelfFunc?: (...args: any[]) => any;
|
|
9016
9468
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -9059,6 +9511,10 @@ export declare interface UserFuncInfo {
|
|
|
9059
9511
|
* 按钮显示位置,默认在列表的右侧
|
|
9060
9512
|
*/
|
|
9061
9513
|
position?: "table" | "toolbar";
|
|
9514
|
+
/**
|
|
9515
|
+
* 是否覆盖原来的方法
|
|
9516
|
+
*/
|
|
9517
|
+
override?: boolean;
|
|
9062
9518
|
/**
|
|
9063
9519
|
* 子节点
|
|
9064
9520
|
*/
|
|
@@ -9074,11 +9530,11 @@ export declare interface UserFuncInfo {
|
|
|
9074
9530
|
*/
|
|
9075
9531
|
export declare const userFunction: (code: string, context: any, formData: any) => void;
|
|
9076
9532
|
|
|
9077
|
-
export declare const userItem: DefineComponent<
|
|
9533
|
+
export declare const userItem: DefineComponent<__VLS_PublicProps_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9078
9534
|
selectItem: (...args: any[]) => void;
|
|
9079
9535
|
selfFunc: (...args: any[]) => void;
|
|
9080
9536
|
"update:formData": (value: any) => void;
|
|
9081
|
-
}, string, PublicProps, Readonly<
|
|
9537
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_39> & Readonly<{
|
|
9082
9538
|
onSelectItem?: (...args: any[]) => any;
|
|
9083
9539
|
onSelfFunc?: (...args: any[]) => any;
|
|
9084
9540
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -9178,6 +9634,7 @@ priority?: number;
|
|
|
9178
9634
|
helpMsg?: string;
|
|
9179
9635
|
disabled?: string;
|
|
9180
9636
|
position?: "table" | "toolbar";
|
|
9637
|
+
override?: boolean;
|
|
9181
9638
|
children?: /*elided*/ any[];
|
|
9182
9639
|
}[];
|
|
9183
9640
|
stopAutoLoad?: boolean;
|
|
@@ -9278,6 +9735,7 @@ priority?: number;
|
|
|
9278
9735
|
helpMsg?: string;
|
|
9279
9736
|
disabled?: string;
|
|
9280
9737
|
position?: "table" | "toolbar";
|
|
9738
|
+
override?: boolean;
|
|
9281
9739
|
children?: /*elided*/ any[];
|
|
9282
9740
|
}[];
|
|
9283
9741
|
stopAutoLoad?: boolean;
|
|
@@ -9391,6 +9849,7 @@ priority?: number;
|
|
|
9391
9849
|
helpMsg?: string;
|
|
9392
9850
|
disabled?: string;
|
|
9393
9851
|
position?: "table" | "toolbar";
|
|
9852
|
+
override?: boolean;
|
|
9394
9853
|
children?: /*elided*/ any[];
|
|
9395
9854
|
}[];
|
|
9396
9855
|
stopAutoLoad?: boolean;
|
|
@@ -9491,6 +9950,7 @@ priority?: number;
|
|
|
9491
9950
|
helpMsg?: string;
|
|
9492
9951
|
disabled?: string;
|
|
9493
9952
|
position?: "table" | "toolbar";
|
|
9953
|
+
override?: boolean;
|
|
9494
9954
|
children?: /*elided*/ any[];
|
|
9495
9955
|
}[];
|
|
9496
9956
|
stopAutoLoad?: boolean;
|
|
@@ -9604,6 +10064,7 @@ priority?: number;
|
|
|
9604
10064
|
helpMsg?: string;
|
|
9605
10065
|
disabled?: string;
|
|
9606
10066
|
position?: "table" | "toolbar";
|
|
10067
|
+
override?: boolean;
|
|
9607
10068
|
children?: /*elided*/ any[];
|
|
9608
10069
|
}[];
|
|
9609
10070
|
stopAutoLoad?: boolean;
|
|
@@ -9704,6 +10165,7 @@ priority?: number;
|
|
|
9704
10165
|
helpMsg?: string;
|
|
9705
10166
|
disabled?: string;
|
|
9706
10167
|
position?: "table" | "toolbar";
|
|
10168
|
+
override?: boolean;
|
|
9707
10169
|
children?: /*elided*/ any[];
|
|
9708
10170
|
}[];
|
|
9709
10171
|
stopAutoLoad?: boolean;
|
|
@@ -9800,11 +10262,11 @@ export declare function validMsg(item: any, dataForm: any): any[];
|
|
|
9800
10262
|
|
|
9801
10263
|
export declare const validRulesList: Array<SelectOption>;
|
|
9802
10264
|
|
|
9803
|
-
export declare const viewMarkdownItem: DefineComponent<
|
|
10265
|
+
export declare const viewMarkdownItem: DefineComponent<__VLS_PublicProps_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9804
10266
|
selectItem: (...args: any[]) => void;
|
|
9805
10267
|
selfFunc: (...args: any[]) => void;
|
|
9806
10268
|
"update:formData": (value: any) => void;
|
|
9807
|
-
}, string, PublicProps, Readonly<
|
|
10269
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_41> & Readonly<{
|
|
9808
10270
|
onSelectItem?: (...args: any[]) => any;
|
|
9809
10271
|
onSelfFunc?: (...args: any[]) => any;
|
|
9810
10272
|
"onUpdate:formData"?: (value: any) => any;
|
|
@@ -9818,6 +10280,8 @@ showFormItem: boolean;
|
|
|
9818
10280
|
markdownEditor: HTMLDivElement;
|
|
9819
10281
|
}, any>;
|
|
9820
10282
|
|
|
10283
|
+
declare const visible: Ref<boolean, boolean>;
|
|
10284
|
+
|
|
9821
10285
|
/**
|
|
9822
10286
|
* 警告提示
|
|
9823
10287
|
* @param msg 消息内容
|