cc1-form 1.4.3 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cc1-form.css +1 -1
- package/dist/cc1-form.js +877 -880
- package/dist/cc1-form.umd.cjs +1 -1
- package/dist/components/TCurd/com/form/column.vue.d.ts +24 -0
- package/dist/components/TCurd/com/form/field.vue.d.ts +14 -11
- package/dist/components/TCurd/core/table.d.ts +3 -2
- package/dist/components/TCurd/index.d.ts +40 -2
- package/dist/components/TCurd/index.vue.d.ts +134 -22
- package/dist/components/TCurd/indexType.d.ts +10 -0
- package/dist/utils/TFormConfig.d.ts +1 -0
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ declare const conf: {
|
|
|
49
49
|
key: string;
|
|
50
50
|
label: string;
|
|
51
51
|
value?: any;
|
|
52
|
+
tip?: string | undefined;
|
|
52
53
|
children?: /*elided*/ any[] | undefined;
|
|
53
54
|
disabled?: {
|
|
54
55
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -107,6 +108,7 @@ declare const conf: {
|
|
|
107
108
|
change?: boolean | undefined;
|
|
108
109
|
confirm?: boolean | undefined;
|
|
109
110
|
loadList?: boolean | undefined;
|
|
111
|
+
needTip?: boolean | undefined;
|
|
110
112
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
111
113
|
} | undefined;
|
|
112
114
|
} | undefined;
|
|
@@ -195,6 +197,7 @@ declare const conf: {
|
|
|
195
197
|
change?: boolean | undefined;
|
|
196
198
|
confirm?: boolean | undefined;
|
|
197
199
|
loadList?: boolean | undefined;
|
|
200
|
+
needTip?: boolean | undefined;
|
|
198
201
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
199
202
|
} | undefined;
|
|
200
203
|
} | undefined;
|
|
@@ -283,6 +286,7 @@ declare const conf: {
|
|
|
283
286
|
change?: boolean | undefined;
|
|
284
287
|
confirm?: boolean | undefined;
|
|
285
288
|
loadList?: boolean | undefined;
|
|
289
|
+
needTip?: boolean | undefined;
|
|
286
290
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
287
291
|
} | undefined;
|
|
288
292
|
} | undefined;
|
|
@@ -355,6 +359,7 @@ declare const conf: {
|
|
|
355
359
|
change?: boolean | undefined;
|
|
356
360
|
confirm?: boolean | undefined;
|
|
357
361
|
loadList?: boolean | undefined;
|
|
362
|
+
needTip?: boolean | undefined;
|
|
358
363
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
359
364
|
} | undefined;
|
|
360
365
|
} | undefined;
|
|
@@ -452,6 +457,7 @@ declare const conf: {
|
|
|
452
457
|
} | undefined;
|
|
453
458
|
form?: {
|
|
454
459
|
label?: string | undefined;
|
|
460
|
+
tip?: string | undefined;
|
|
455
461
|
} | undefined;
|
|
456
462
|
} | undefined;
|
|
457
463
|
show?: {
|
|
@@ -477,6 +483,7 @@ declare const conf: {
|
|
|
477
483
|
key: string;
|
|
478
484
|
label: string;
|
|
479
485
|
value?: any;
|
|
486
|
+
tip?: string | undefined;
|
|
480
487
|
children?: /*elided*/ any[] | undefined;
|
|
481
488
|
disabled?: {
|
|
482
489
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -535,6 +542,7 @@ declare const conf: {
|
|
|
535
542
|
change?: boolean | undefined;
|
|
536
543
|
confirm?: boolean | undefined;
|
|
537
544
|
loadList?: boolean | undefined;
|
|
545
|
+
needTip?: boolean | undefined;
|
|
538
546
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
539
547
|
} | undefined;
|
|
540
548
|
} | undefined;
|
|
@@ -623,6 +631,7 @@ declare const conf: {
|
|
|
623
631
|
change?: boolean | undefined;
|
|
624
632
|
confirm?: boolean | undefined;
|
|
625
633
|
loadList?: boolean | undefined;
|
|
634
|
+
needTip?: boolean | undefined;
|
|
626
635
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
627
636
|
} | undefined;
|
|
628
637
|
} | undefined;
|
|
@@ -711,6 +720,7 @@ declare const conf: {
|
|
|
711
720
|
change?: boolean | undefined;
|
|
712
721
|
confirm?: boolean | undefined;
|
|
713
722
|
loadList?: boolean | undefined;
|
|
723
|
+
needTip?: boolean | undefined;
|
|
714
724
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
715
725
|
} | undefined;
|
|
716
726
|
} | undefined;
|
|
@@ -783,6 +793,7 @@ declare const conf: {
|
|
|
783
793
|
change?: boolean | undefined;
|
|
784
794
|
confirm?: boolean | undefined;
|
|
785
795
|
loadList?: boolean | undefined;
|
|
796
|
+
needTip?: boolean | undefined;
|
|
786
797
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
787
798
|
} | undefined;
|
|
788
799
|
} | undefined;
|
|
@@ -880,6 +891,7 @@ declare const conf: {
|
|
|
880
891
|
} | undefined;
|
|
881
892
|
form?: {
|
|
882
893
|
label?: string | undefined;
|
|
894
|
+
tip?: string | undefined;
|
|
883
895
|
} | undefined;
|
|
884
896
|
} | undefined;
|
|
885
897
|
show?: {
|
|
@@ -960,6 +972,7 @@ declare const conf: {
|
|
|
960
972
|
key: string;
|
|
961
973
|
label: string;
|
|
962
974
|
value?: any;
|
|
975
|
+
tip?: string | undefined;
|
|
963
976
|
children?: /*elided*/ any[] | undefined;
|
|
964
977
|
disabled?: {
|
|
965
978
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -1018,6 +1031,7 @@ declare const conf: {
|
|
|
1018
1031
|
change?: boolean | undefined;
|
|
1019
1032
|
confirm?: boolean | undefined;
|
|
1020
1033
|
loadList?: boolean | undefined;
|
|
1034
|
+
needTip?: boolean | undefined;
|
|
1021
1035
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1022
1036
|
} | undefined;
|
|
1023
1037
|
} | undefined;
|
|
@@ -1106,6 +1120,7 @@ declare const conf: {
|
|
|
1106
1120
|
change?: boolean | undefined;
|
|
1107
1121
|
confirm?: boolean | undefined;
|
|
1108
1122
|
loadList?: boolean | undefined;
|
|
1123
|
+
needTip?: boolean | undefined;
|
|
1109
1124
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1110
1125
|
} | undefined;
|
|
1111
1126
|
} | undefined;
|
|
@@ -1194,6 +1209,7 @@ declare const conf: {
|
|
|
1194
1209
|
change?: boolean | undefined;
|
|
1195
1210
|
confirm?: boolean | undefined;
|
|
1196
1211
|
loadList?: boolean | undefined;
|
|
1212
|
+
needTip?: boolean | undefined;
|
|
1197
1213
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1198
1214
|
} | undefined;
|
|
1199
1215
|
} | undefined;
|
|
@@ -1266,6 +1282,7 @@ declare const conf: {
|
|
|
1266
1282
|
change?: boolean | undefined;
|
|
1267
1283
|
confirm?: boolean | undefined;
|
|
1268
1284
|
loadList?: boolean | undefined;
|
|
1285
|
+
needTip?: boolean | undefined;
|
|
1269
1286
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1270
1287
|
} | undefined;
|
|
1271
1288
|
} | undefined;
|
|
@@ -1363,6 +1380,7 @@ declare const conf: {
|
|
|
1363
1380
|
} | undefined;
|
|
1364
1381
|
form?: {
|
|
1365
1382
|
label?: string | undefined;
|
|
1383
|
+
tip?: string | undefined;
|
|
1366
1384
|
} | undefined;
|
|
1367
1385
|
} | undefined;
|
|
1368
1386
|
show?: {
|
|
@@ -1405,6 +1423,7 @@ declare const conf: {
|
|
|
1405
1423
|
page: boolean;
|
|
1406
1424
|
scroll: boolean;
|
|
1407
1425
|
field: string;
|
|
1426
|
+
order: "asc" | "desc";
|
|
1408
1427
|
onEnd: (data: any[]) => any;
|
|
1409
1428
|
rule: "index" | "value";
|
|
1410
1429
|
api: Partial<{
|
|
@@ -1441,6 +1460,7 @@ declare const conf: {
|
|
|
1441
1460
|
page: boolean;
|
|
1442
1461
|
scroll: boolean;
|
|
1443
1462
|
field: string;
|
|
1463
|
+
order: "asc" | "desc";
|
|
1444
1464
|
onEnd: (data: any[]) => any;
|
|
1445
1465
|
rule: "index" | "value";
|
|
1446
1466
|
api: Partial<{
|
|
@@ -1478,14 +1498,13 @@ declare const conf: {
|
|
|
1478
1498
|
destroy: () => void;
|
|
1479
1499
|
getBody: () => HTMLElement | null;
|
|
1480
1500
|
loadModule: () => Promise<any>;
|
|
1481
|
-
applyRule: (data: any[], field: string, rule: "index" | "value", values: any[]) => void;
|
|
1501
|
+
applyRule: (data: any[], field: string, rule: "index" | "value", values: any[], order?: "asc" | "desc") => void;
|
|
1482
1502
|
sync: () => Promise<void>;
|
|
1483
1503
|
refreshList: () => Promise<void>;
|
|
1484
1504
|
fitHeight: boolean;
|
|
1485
1505
|
start: () => Promise<void>;
|
|
1486
1506
|
exit: () => Promise<void>;
|
|
1487
1507
|
save: () => Promise<void>;
|
|
1488
|
-
command: (command: "save" | "exit") => Promise<void>;
|
|
1489
1508
|
};
|
|
1490
1509
|
header: {
|
|
1491
1510
|
group: {
|
|
@@ -1536,6 +1555,7 @@ declare const conf: {
|
|
|
1536
1555
|
key: string;
|
|
1537
1556
|
label: string;
|
|
1538
1557
|
value?: any;
|
|
1558
|
+
tip?: string | undefined;
|
|
1539
1559
|
children?: /*elided*/ any[] | undefined;
|
|
1540
1560
|
disabled?: {
|
|
1541
1561
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -1594,6 +1614,7 @@ declare const conf: {
|
|
|
1594
1614
|
change?: boolean | undefined;
|
|
1595
1615
|
confirm?: boolean | undefined;
|
|
1596
1616
|
loadList?: boolean | undefined;
|
|
1617
|
+
needTip?: boolean | undefined;
|
|
1597
1618
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1598
1619
|
} | undefined;
|
|
1599
1620
|
} | undefined;
|
|
@@ -1682,6 +1703,7 @@ declare const conf: {
|
|
|
1682
1703
|
change?: boolean | undefined;
|
|
1683
1704
|
confirm?: boolean | undefined;
|
|
1684
1705
|
loadList?: boolean | undefined;
|
|
1706
|
+
needTip?: boolean | undefined;
|
|
1685
1707
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1686
1708
|
} | undefined;
|
|
1687
1709
|
} | undefined;
|
|
@@ -1770,6 +1792,7 @@ declare const conf: {
|
|
|
1770
1792
|
change?: boolean | undefined;
|
|
1771
1793
|
confirm?: boolean | undefined;
|
|
1772
1794
|
loadList?: boolean | undefined;
|
|
1795
|
+
needTip?: boolean | undefined;
|
|
1773
1796
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1774
1797
|
} | undefined;
|
|
1775
1798
|
} | undefined;
|
|
@@ -1842,6 +1865,7 @@ declare const conf: {
|
|
|
1842
1865
|
change?: boolean | undefined;
|
|
1843
1866
|
confirm?: boolean | undefined;
|
|
1844
1867
|
loadList?: boolean | undefined;
|
|
1868
|
+
needTip?: boolean | undefined;
|
|
1845
1869
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
1846
1870
|
} | undefined;
|
|
1847
1871
|
} | undefined;
|
|
@@ -1939,6 +1963,7 @@ declare const conf: {
|
|
|
1939
1963
|
} | undefined;
|
|
1940
1964
|
form?: {
|
|
1941
1965
|
label?: string | undefined;
|
|
1966
|
+
tip?: string | undefined;
|
|
1942
1967
|
} | undefined;
|
|
1943
1968
|
} | undefined;
|
|
1944
1969
|
show?: {
|
|
@@ -2019,6 +2044,7 @@ declare const conf: {
|
|
|
2019
2044
|
page?: boolean | undefined;
|
|
2020
2045
|
scroll?: boolean | undefined;
|
|
2021
2046
|
field?: string | undefined;
|
|
2047
|
+
order?: "asc" | "desc" | undefined;
|
|
2022
2048
|
onEnd?: ((data: any[]) => any) | undefined;
|
|
2023
2049
|
rule?: "index" | "value" | undefined;
|
|
2024
2050
|
api?: {
|
|
@@ -2035,6 +2061,7 @@ declare const conf: {
|
|
|
2035
2061
|
key: string;
|
|
2036
2062
|
label: string;
|
|
2037
2063
|
value?: any;
|
|
2064
|
+
tip?: string | undefined;
|
|
2038
2065
|
children?: /*elided*/ any[] | undefined;
|
|
2039
2066
|
disabled?: {
|
|
2040
2067
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -2093,6 +2120,7 @@ declare const conf: {
|
|
|
2093
2120
|
change?: boolean | undefined;
|
|
2094
2121
|
confirm?: boolean | undefined;
|
|
2095
2122
|
loadList?: boolean | undefined;
|
|
2123
|
+
needTip?: boolean | undefined;
|
|
2096
2124
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2097
2125
|
} | undefined;
|
|
2098
2126
|
} | undefined;
|
|
@@ -2181,6 +2209,7 @@ declare const conf: {
|
|
|
2181
2209
|
change?: boolean | undefined;
|
|
2182
2210
|
confirm?: boolean | undefined;
|
|
2183
2211
|
loadList?: boolean | undefined;
|
|
2212
|
+
needTip?: boolean | undefined;
|
|
2184
2213
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2185
2214
|
} | undefined;
|
|
2186
2215
|
} | undefined;
|
|
@@ -2269,6 +2298,7 @@ declare const conf: {
|
|
|
2269
2298
|
change?: boolean | undefined;
|
|
2270
2299
|
confirm?: boolean | undefined;
|
|
2271
2300
|
loadList?: boolean | undefined;
|
|
2301
|
+
needTip?: boolean | undefined;
|
|
2272
2302
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2273
2303
|
} | undefined;
|
|
2274
2304
|
} | undefined;
|
|
@@ -2341,6 +2371,7 @@ declare const conf: {
|
|
|
2341
2371
|
change?: boolean | undefined;
|
|
2342
2372
|
confirm?: boolean | undefined;
|
|
2343
2373
|
loadList?: boolean | undefined;
|
|
2374
|
+
needTip?: boolean | undefined;
|
|
2344
2375
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2345
2376
|
} | undefined;
|
|
2346
2377
|
} | undefined;
|
|
@@ -2438,6 +2469,7 @@ declare const conf: {
|
|
|
2438
2469
|
} | undefined;
|
|
2439
2470
|
form?: {
|
|
2440
2471
|
label?: string | undefined;
|
|
2472
|
+
tip?: string | undefined;
|
|
2441
2473
|
} | undefined;
|
|
2442
2474
|
} | undefined;
|
|
2443
2475
|
show?: {
|
|
@@ -2514,6 +2546,7 @@ declare const conf: {
|
|
|
2514
2546
|
key: string;
|
|
2515
2547
|
label: string;
|
|
2516
2548
|
value?: any;
|
|
2549
|
+
tip?: string | undefined;
|
|
2517
2550
|
children?: /*elided*/ any[] | undefined;
|
|
2518
2551
|
disabled?: {
|
|
2519
2552
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -2572,6 +2605,7 @@ declare const conf: {
|
|
|
2572
2605
|
change?: boolean | undefined;
|
|
2573
2606
|
confirm?: boolean | undefined;
|
|
2574
2607
|
loadList?: boolean | undefined;
|
|
2608
|
+
needTip?: boolean | undefined;
|
|
2575
2609
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2576
2610
|
} | undefined;
|
|
2577
2611
|
} | undefined;
|
|
@@ -2660,6 +2694,7 @@ declare const conf: {
|
|
|
2660
2694
|
change?: boolean | undefined;
|
|
2661
2695
|
confirm?: boolean | undefined;
|
|
2662
2696
|
loadList?: boolean | undefined;
|
|
2697
|
+
needTip?: boolean | undefined;
|
|
2663
2698
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2664
2699
|
} | undefined;
|
|
2665
2700
|
} | undefined;
|
|
@@ -2748,6 +2783,7 @@ declare const conf: {
|
|
|
2748
2783
|
change?: boolean | undefined;
|
|
2749
2784
|
confirm?: boolean | undefined;
|
|
2750
2785
|
loadList?: boolean | undefined;
|
|
2786
|
+
needTip?: boolean | undefined;
|
|
2751
2787
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2752
2788
|
} | undefined;
|
|
2753
2789
|
} | undefined;
|
|
@@ -2820,6 +2856,7 @@ declare const conf: {
|
|
|
2820
2856
|
change?: boolean | undefined;
|
|
2821
2857
|
confirm?: boolean | undefined;
|
|
2822
2858
|
loadList?: boolean | undefined;
|
|
2859
|
+
needTip?: boolean | undefined;
|
|
2823
2860
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
2824
2861
|
} | undefined;
|
|
2825
2862
|
} | undefined;
|
|
@@ -2917,6 +2954,7 @@ declare const conf: {
|
|
|
2917
2954
|
} | undefined;
|
|
2918
2955
|
form?: {
|
|
2919
2956
|
label?: string | undefined;
|
|
2957
|
+
tip?: string | undefined;
|
|
2920
2958
|
} | undefined;
|
|
2921
2959
|
} | undefined;
|
|
2922
2960
|
show?: {
|
|
@@ -2968,13 +3006,13 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
2968
3006
|
row: Record<string, any>;
|
|
2969
3007
|
}, __VLS_61: {
|
|
2970
3008
|
row: Record<string, any>;
|
|
2971
|
-
}, __VLS_123: {}, __VLS_125: {},
|
|
3009
|
+
}, __VLS_123: {}, __VLS_125: {}, __VLS_205: {}, __VLS_218: string | number, __VLS_219: any, __VLS_225: {}, __VLS_231: {
|
|
2972
3010
|
row: any;
|
|
2973
|
-
},
|
|
3011
|
+
}, __VLS_249: {
|
|
2974
3012
|
row: any;
|
|
2975
|
-
},
|
|
3013
|
+
}, __VLS_283: {
|
|
2976
3014
|
row: any;
|
|
2977
|
-
},
|
|
3015
|
+
}, __VLS_294: {}, __VLS_300: {
|
|
2978
3016
|
row: {
|
|
2979
3017
|
title: string;
|
|
2980
3018
|
rules: any;
|
|
@@ -2989,6 +3027,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
2989
3027
|
key: string;
|
|
2990
3028
|
label: string;
|
|
2991
3029
|
value?: any;
|
|
3030
|
+
tip?: string | undefined;
|
|
2992
3031
|
children?: /*elided*/ any[] | undefined;
|
|
2993
3032
|
disabled?: {
|
|
2994
3033
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -3047,6 +3086,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3047
3086
|
change?: boolean | undefined;
|
|
3048
3087
|
confirm?: boolean | undefined;
|
|
3049
3088
|
loadList?: boolean | undefined;
|
|
3089
|
+
needTip?: boolean | undefined;
|
|
3050
3090
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3051
3091
|
} | undefined;
|
|
3052
3092
|
} | undefined;
|
|
@@ -3135,6 +3175,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3135
3175
|
change?: boolean | undefined;
|
|
3136
3176
|
confirm?: boolean | undefined;
|
|
3137
3177
|
loadList?: boolean | undefined;
|
|
3178
|
+
needTip?: boolean | undefined;
|
|
3138
3179
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3139
3180
|
} | undefined;
|
|
3140
3181
|
} | undefined;
|
|
@@ -3223,6 +3264,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3223
3264
|
change?: boolean | undefined;
|
|
3224
3265
|
confirm?: boolean | undefined;
|
|
3225
3266
|
loadList?: boolean | undefined;
|
|
3267
|
+
needTip?: boolean | undefined;
|
|
3226
3268
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3227
3269
|
} | undefined;
|
|
3228
3270
|
} | undefined;
|
|
@@ -3295,6 +3337,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3295
3337
|
change?: boolean | undefined;
|
|
3296
3338
|
confirm?: boolean | undefined;
|
|
3297
3339
|
loadList?: boolean | undefined;
|
|
3340
|
+
needTip?: boolean | undefined;
|
|
3298
3341
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3299
3342
|
} | undefined;
|
|
3300
3343
|
} | undefined;
|
|
@@ -3392,6 +3435,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3392
3435
|
} | undefined;
|
|
3393
3436
|
form?: {
|
|
3394
3437
|
label?: string | undefined;
|
|
3438
|
+
tip?: string | undefined;
|
|
3395
3439
|
} | undefined;
|
|
3396
3440
|
} | undefined;
|
|
3397
3441
|
show?: {
|
|
@@ -3417,6 +3461,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3417
3461
|
key: string;
|
|
3418
3462
|
label: string;
|
|
3419
3463
|
value?: any;
|
|
3464
|
+
tip?: string | undefined;
|
|
3420
3465
|
children?: /*elided*/ any[] | undefined;
|
|
3421
3466
|
disabled?: {
|
|
3422
3467
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -3475,6 +3520,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3475
3520
|
change?: boolean | undefined;
|
|
3476
3521
|
confirm?: boolean | undefined;
|
|
3477
3522
|
loadList?: boolean | undefined;
|
|
3523
|
+
needTip?: boolean | undefined;
|
|
3478
3524
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3479
3525
|
} | undefined;
|
|
3480
3526
|
} | undefined;
|
|
@@ -3563,6 +3609,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3563
3609
|
change?: boolean | undefined;
|
|
3564
3610
|
confirm?: boolean | undefined;
|
|
3565
3611
|
loadList?: boolean | undefined;
|
|
3612
|
+
needTip?: boolean | undefined;
|
|
3566
3613
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3567
3614
|
} | undefined;
|
|
3568
3615
|
} | undefined;
|
|
@@ -3651,6 +3698,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3651
3698
|
change?: boolean | undefined;
|
|
3652
3699
|
confirm?: boolean | undefined;
|
|
3653
3700
|
loadList?: boolean | undefined;
|
|
3701
|
+
needTip?: boolean | undefined;
|
|
3654
3702
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3655
3703
|
} | undefined;
|
|
3656
3704
|
} | undefined;
|
|
@@ -3723,6 +3771,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3723
3771
|
change?: boolean | undefined;
|
|
3724
3772
|
confirm?: boolean | undefined;
|
|
3725
3773
|
loadList?: boolean | undefined;
|
|
3774
|
+
needTip?: boolean | undefined;
|
|
3726
3775
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3727
3776
|
} | undefined;
|
|
3728
3777
|
} | undefined;
|
|
@@ -3820,6 +3869,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3820
3869
|
} | undefined;
|
|
3821
3870
|
form?: {
|
|
3822
3871
|
label?: string | undefined;
|
|
3872
|
+
tip?: string | undefined;
|
|
3823
3873
|
} | undefined;
|
|
3824
3874
|
} | undefined;
|
|
3825
3875
|
show?: {
|
|
@@ -3866,10 +3916,10 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3866
3916
|
submit: () => Promise<void>;
|
|
3867
3917
|
close: () => void;
|
|
3868
3918
|
};
|
|
3869
|
-
},
|
|
3919
|
+
}, __VLS_312: string | number, __VLS_313: {
|
|
3870
3920
|
row: Record<string, any>;
|
|
3871
3921
|
item: import("./indexType").CurdConfigColumn<any>;
|
|
3872
|
-
},
|
|
3922
|
+
}, __VLS_315: {
|
|
3873
3923
|
row: {
|
|
3874
3924
|
title: string;
|
|
3875
3925
|
rules: any;
|
|
@@ -3884,6 +3934,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3884
3934
|
key: string;
|
|
3885
3935
|
label: string;
|
|
3886
3936
|
value?: any;
|
|
3937
|
+
tip?: string | undefined;
|
|
3887
3938
|
children?: /*elided*/ any[] | undefined;
|
|
3888
3939
|
disabled?: {
|
|
3889
3940
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -3942,6 +3993,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
3942
3993
|
change?: boolean | undefined;
|
|
3943
3994
|
confirm?: boolean | undefined;
|
|
3944
3995
|
loadList?: boolean | undefined;
|
|
3996
|
+
needTip?: boolean | undefined;
|
|
3945
3997
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
3946
3998
|
} | undefined;
|
|
3947
3999
|
} | undefined;
|
|
@@ -4030,6 +4082,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4030
4082
|
change?: boolean | undefined;
|
|
4031
4083
|
confirm?: boolean | undefined;
|
|
4032
4084
|
loadList?: boolean | undefined;
|
|
4085
|
+
needTip?: boolean | undefined;
|
|
4033
4086
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4034
4087
|
} | undefined;
|
|
4035
4088
|
} | undefined;
|
|
@@ -4118,6 +4171,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4118
4171
|
change?: boolean | undefined;
|
|
4119
4172
|
confirm?: boolean | undefined;
|
|
4120
4173
|
loadList?: boolean | undefined;
|
|
4174
|
+
needTip?: boolean | undefined;
|
|
4121
4175
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4122
4176
|
} | undefined;
|
|
4123
4177
|
} | undefined;
|
|
@@ -4190,6 +4244,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4190
4244
|
change?: boolean | undefined;
|
|
4191
4245
|
confirm?: boolean | undefined;
|
|
4192
4246
|
loadList?: boolean | undefined;
|
|
4247
|
+
needTip?: boolean | undefined;
|
|
4193
4248
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4194
4249
|
} | undefined;
|
|
4195
4250
|
} | undefined;
|
|
@@ -4287,6 +4342,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4287
4342
|
} | undefined;
|
|
4288
4343
|
form?: {
|
|
4289
4344
|
label?: string | undefined;
|
|
4345
|
+
tip?: string | undefined;
|
|
4290
4346
|
} | undefined;
|
|
4291
4347
|
} | undefined;
|
|
4292
4348
|
show?: {
|
|
@@ -4312,6 +4368,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4312
4368
|
key: string;
|
|
4313
4369
|
label: string;
|
|
4314
4370
|
value?: any;
|
|
4371
|
+
tip?: string | undefined;
|
|
4315
4372
|
children?: /*elided*/ any[] | undefined;
|
|
4316
4373
|
disabled?: {
|
|
4317
4374
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -4370,6 +4427,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4370
4427
|
change?: boolean | undefined;
|
|
4371
4428
|
confirm?: boolean | undefined;
|
|
4372
4429
|
loadList?: boolean | undefined;
|
|
4430
|
+
needTip?: boolean | undefined;
|
|
4373
4431
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4374
4432
|
} | undefined;
|
|
4375
4433
|
} | undefined;
|
|
@@ -4458,6 +4516,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4458
4516
|
change?: boolean | undefined;
|
|
4459
4517
|
confirm?: boolean | undefined;
|
|
4460
4518
|
loadList?: boolean | undefined;
|
|
4519
|
+
needTip?: boolean | undefined;
|
|
4461
4520
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4462
4521
|
} | undefined;
|
|
4463
4522
|
} | undefined;
|
|
@@ -4546,6 +4605,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4546
4605
|
change?: boolean | undefined;
|
|
4547
4606
|
confirm?: boolean | undefined;
|
|
4548
4607
|
loadList?: boolean | undefined;
|
|
4608
|
+
needTip?: boolean | undefined;
|
|
4549
4609
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4550
4610
|
} | undefined;
|
|
4551
4611
|
} | undefined;
|
|
@@ -4618,6 +4678,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4618
4678
|
change?: boolean | undefined;
|
|
4619
4679
|
confirm?: boolean | undefined;
|
|
4620
4680
|
loadList?: boolean | undefined;
|
|
4681
|
+
needTip?: boolean | undefined;
|
|
4621
4682
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4622
4683
|
} | undefined;
|
|
4623
4684
|
} | undefined;
|
|
@@ -4715,6 +4776,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4715
4776
|
} | undefined;
|
|
4716
4777
|
form?: {
|
|
4717
4778
|
label?: string | undefined;
|
|
4779
|
+
tip?: string | undefined;
|
|
4718
4780
|
} | undefined;
|
|
4719
4781
|
} | undefined;
|
|
4720
4782
|
show?: {
|
|
@@ -4761,7 +4823,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4761
4823
|
submit: () => Promise<void>;
|
|
4762
4824
|
close: () => void;
|
|
4763
4825
|
};
|
|
4764
|
-
},
|
|
4826
|
+
}, __VLS_321: {
|
|
4765
4827
|
row: {
|
|
4766
4828
|
title: string;
|
|
4767
4829
|
rules: any;
|
|
@@ -4776,6 +4838,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4776
4838
|
key: string;
|
|
4777
4839
|
label: string;
|
|
4778
4840
|
value?: any;
|
|
4841
|
+
tip?: string | undefined;
|
|
4779
4842
|
children?: /*elided*/ any[] | undefined;
|
|
4780
4843
|
disabled?: {
|
|
4781
4844
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -4834,6 +4897,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4834
4897
|
change?: boolean | undefined;
|
|
4835
4898
|
confirm?: boolean | undefined;
|
|
4836
4899
|
loadList?: boolean | undefined;
|
|
4900
|
+
needTip?: boolean | undefined;
|
|
4837
4901
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4838
4902
|
} | undefined;
|
|
4839
4903
|
} | undefined;
|
|
@@ -4922,6 +4986,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
4922
4986
|
change?: boolean | undefined;
|
|
4923
4987
|
confirm?: boolean | undefined;
|
|
4924
4988
|
loadList?: boolean | undefined;
|
|
4989
|
+
needTip?: boolean | undefined;
|
|
4925
4990
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
4926
4991
|
} | undefined;
|
|
4927
4992
|
} | undefined;
|
|
@@ -5010,6 +5075,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5010
5075
|
change?: boolean | undefined;
|
|
5011
5076
|
confirm?: boolean | undefined;
|
|
5012
5077
|
loadList?: boolean | undefined;
|
|
5078
|
+
needTip?: boolean | undefined;
|
|
5013
5079
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5014
5080
|
} | undefined;
|
|
5015
5081
|
} | undefined;
|
|
@@ -5082,6 +5148,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5082
5148
|
change?: boolean | undefined;
|
|
5083
5149
|
confirm?: boolean | undefined;
|
|
5084
5150
|
loadList?: boolean | undefined;
|
|
5151
|
+
needTip?: boolean | undefined;
|
|
5085
5152
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5086
5153
|
} | undefined;
|
|
5087
5154
|
} | undefined;
|
|
@@ -5179,6 +5246,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5179
5246
|
} | undefined;
|
|
5180
5247
|
form?: {
|
|
5181
5248
|
label?: string | undefined;
|
|
5249
|
+
tip?: string | undefined;
|
|
5182
5250
|
} | undefined;
|
|
5183
5251
|
} | undefined;
|
|
5184
5252
|
show?: {
|
|
@@ -5204,6 +5272,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5204
5272
|
key: string;
|
|
5205
5273
|
label: string;
|
|
5206
5274
|
value?: any;
|
|
5275
|
+
tip?: string | undefined;
|
|
5207
5276
|
children?: /*elided*/ any[] | undefined;
|
|
5208
5277
|
disabled?: {
|
|
5209
5278
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -5262,6 +5331,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5262
5331
|
change?: boolean | undefined;
|
|
5263
5332
|
confirm?: boolean | undefined;
|
|
5264
5333
|
loadList?: boolean | undefined;
|
|
5334
|
+
needTip?: boolean | undefined;
|
|
5265
5335
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5266
5336
|
} | undefined;
|
|
5267
5337
|
} | undefined;
|
|
@@ -5350,6 +5420,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5350
5420
|
change?: boolean | undefined;
|
|
5351
5421
|
confirm?: boolean | undefined;
|
|
5352
5422
|
loadList?: boolean | undefined;
|
|
5423
|
+
needTip?: boolean | undefined;
|
|
5353
5424
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5354
5425
|
} | undefined;
|
|
5355
5426
|
} | undefined;
|
|
@@ -5438,6 +5509,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5438
5509
|
change?: boolean | undefined;
|
|
5439
5510
|
confirm?: boolean | undefined;
|
|
5440
5511
|
loadList?: boolean | undefined;
|
|
5512
|
+
needTip?: boolean | undefined;
|
|
5441
5513
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5442
5514
|
} | undefined;
|
|
5443
5515
|
} | undefined;
|
|
@@ -5510,6 +5582,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5510
5582
|
change?: boolean | undefined;
|
|
5511
5583
|
confirm?: boolean | undefined;
|
|
5512
5584
|
loadList?: boolean | undefined;
|
|
5585
|
+
needTip?: boolean | undefined;
|
|
5513
5586
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5514
5587
|
} | undefined;
|
|
5515
5588
|
} | undefined;
|
|
@@ -5607,6 +5680,7 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
5607
5680
|
} | undefined;
|
|
5608
5681
|
form?: {
|
|
5609
5682
|
label?: string | undefined;
|
|
5683
|
+
tip?: string | undefined;
|
|
5610
5684
|
} | undefined;
|
|
5611
5685
|
} | undefined;
|
|
5612
5686
|
show?: {
|
|
@@ -5665,9 +5739,9 @@ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$
|
|
|
5665
5739
|
} & {
|
|
5666
5740
|
[K in NonNullable<typeof __VLS_36>]?: (props: typeof __VLS_37) => any;
|
|
5667
5741
|
} & {
|
|
5668
|
-
[K in NonNullable<typeof
|
|
5742
|
+
[K in NonNullable<typeof __VLS_218>]?: (props: typeof __VLS_219) => any;
|
|
5669
5743
|
} & {
|
|
5670
|
-
[K in NonNullable<typeof
|
|
5744
|
+
[K in NonNullable<typeof __VLS_312>]?: (props: typeof __VLS_313) => any;
|
|
5671
5745
|
} & {
|
|
5672
5746
|
'box-left'?: (props: typeof __VLS_1) => any;
|
|
5673
5747
|
} & {
|
|
@@ -5681,23 +5755,23 @@ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$
|
|
|
5681
5755
|
} & {
|
|
5682
5756
|
'tools-right'?: (props: typeof __VLS_125) => any;
|
|
5683
5757
|
} & {
|
|
5684
|
-
'table-header-sortable'?: (props: typeof
|
|
5758
|
+
'table-header-sortable'?: (props: typeof __VLS_205) => any;
|
|
5685
5759
|
} & {
|
|
5686
|
-
'table-header-op'?: (props: typeof
|
|
5760
|
+
'table-header-op'?: (props: typeof __VLS_225) => any;
|
|
5687
5761
|
} & {
|
|
5688
|
-
'table-op-left'?: (props: typeof
|
|
5762
|
+
'table-op-left'?: (props: typeof __VLS_231) => any;
|
|
5689
5763
|
} & {
|
|
5690
|
-
'table-op-edit-right'?: (props: typeof
|
|
5764
|
+
'table-op-edit-right'?: (props: typeof __VLS_249) => any;
|
|
5691
5765
|
} & {
|
|
5692
|
-
'table-op-right'?: (props: typeof
|
|
5766
|
+
'table-op-right'?: (props: typeof __VLS_283) => any;
|
|
5693
5767
|
} & {
|
|
5694
|
-
'box-right'?: (props: typeof
|
|
5768
|
+
'box-right'?: (props: typeof __VLS_294) => any;
|
|
5695
5769
|
} & {
|
|
5696
|
-
'dialog-start'?: (props: typeof
|
|
5770
|
+
'dialog-start'?: (props: typeof __VLS_300) => any;
|
|
5697
5771
|
} & {
|
|
5698
|
-
'dialog-end'?: (props: typeof
|
|
5772
|
+
'dialog-end'?: (props: typeof __VLS_315) => any;
|
|
5699
5773
|
} & {
|
|
5700
|
-
'dialog-footer'?: (props: typeof
|
|
5774
|
+
'dialog-footer'?: (props: typeof __VLS_321) => any;
|
|
5701
5775
|
}>;
|
|
5702
5776
|
declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5703
5777
|
/**
|
|
@@ -5820,6 +5894,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
5820
5894
|
key: string;
|
|
5821
5895
|
label: string;
|
|
5822
5896
|
value?: any;
|
|
5897
|
+
tip?: string | undefined;
|
|
5823
5898
|
children?: /*elided*/ any[] | undefined;
|
|
5824
5899
|
disabled?: {
|
|
5825
5900
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -5878,6 +5953,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
5878
5953
|
change?: boolean | undefined;
|
|
5879
5954
|
confirm?: boolean | undefined;
|
|
5880
5955
|
loadList?: boolean | undefined;
|
|
5956
|
+
needTip?: boolean | undefined;
|
|
5881
5957
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5882
5958
|
} | undefined;
|
|
5883
5959
|
} | undefined;
|
|
@@ -5966,6 +6042,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
5966
6042
|
change?: boolean | undefined;
|
|
5967
6043
|
confirm?: boolean | undefined;
|
|
5968
6044
|
loadList?: boolean | undefined;
|
|
6045
|
+
needTip?: boolean | undefined;
|
|
5969
6046
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
5970
6047
|
} | undefined;
|
|
5971
6048
|
} | undefined;
|
|
@@ -6054,6 +6131,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6054
6131
|
change?: boolean | undefined;
|
|
6055
6132
|
confirm?: boolean | undefined;
|
|
6056
6133
|
loadList?: boolean | undefined;
|
|
6134
|
+
needTip?: boolean | undefined;
|
|
6057
6135
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6058
6136
|
} | undefined;
|
|
6059
6137
|
} | undefined;
|
|
@@ -6126,6 +6204,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6126
6204
|
change?: boolean | undefined;
|
|
6127
6205
|
confirm?: boolean | undefined;
|
|
6128
6206
|
loadList?: boolean | undefined;
|
|
6207
|
+
needTip?: boolean | undefined;
|
|
6129
6208
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6130
6209
|
} | undefined;
|
|
6131
6210
|
} | undefined;
|
|
@@ -6223,6 +6302,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6223
6302
|
} | undefined;
|
|
6224
6303
|
form?: {
|
|
6225
6304
|
label?: string | undefined;
|
|
6305
|
+
tip?: string | undefined;
|
|
6226
6306
|
} | undefined;
|
|
6227
6307
|
} | undefined;
|
|
6228
6308
|
show?: {
|
|
@@ -6248,6 +6328,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6248
6328
|
key: string;
|
|
6249
6329
|
label: string;
|
|
6250
6330
|
value?: any;
|
|
6331
|
+
tip?: string | undefined;
|
|
6251
6332
|
children?: /*elided*/ any[] | undefined;
|
|
6252
6333
|
disabled?: {
|
|
6253
6334
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -6306,6 +6387,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6306
6387
|
change?: boolean | undefined;
|
|
6307
6388
|
confirm?: boolean | undefined;
|
|
6308
6389
|
loadList?: boolean | undefined;
|
|
6390
|
+
needTip?: boolean | undefined;
|
|
6309
6391
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6310
6392
|
} | undefined;
|
|
6311
6393
|
} | undefined;
|
|
@@ -6394,6 +6476,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6394
6476
|
change?: boolean | undefined;
|
|
6395
6477
|
confirm?: boolean | undefined;
|
|
6396
6478
|
loadList?: boolean | undefined;
|
|
6479
|
+
needTip?: boolean | undefined;
|
|
6397
6480
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6398
6481
|
} | undefined;
|
|
6399
6482
|
} | undefined;
|
|
@@ -6482,6 +6565,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6482
6565
|
change?: boolean | undefined;
|
|
6483
6566
|
confirm?: boolean | undefined;
|
|
6484
6567
|
loadList?: boolean | undefined;
|
|
6568
|
+
needTip?: boolean | undefined;
|
|
6485
6569
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6486
6570
|
} | undefined;
|
|
6487
6571
|
} | undefined;
|
|
@@ -6554,6 +6638,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6554
6638
|
change?: boolean | undefined;
|
|
6555
6639
|
confirm?: boolean | undefined;
|
|
6556
6640
|
loadList?: boolean | undefined;
|
|
6641
|
+
needTip?: boolean | undefined;
|
|
6557
6642
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6558
6643
|
} | undefined;
|
|
6559
6644
|
} | undefined;
|
|
@@ -6651,6 +6736,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6651
6736
|
} | undefined;
|
|
6652
6737
|
form?: {
|
|
6653
6738
|
label?: string | undefined;
|
|
6739
|
+
tip?: string | undefined;
|
|
6654
6740
|
} | undefined;
|
|
6655
6741
|
} | undefined;
|
|
6656
6742
|
show?: {
|
|
@@ -6731,6 +6817,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6731
6817
|
key: string;
|
|
6732
6818
|
label: string;
|
|
6733
6819
|
value?: any;
|
|
6820
|
+
tip?: string | undefined;
|
|
6734
6821
|
children?: /*elided*/ any[] | undefined;
|
|
6735
6822
|
disabled?: {
|
|
6736
6823
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -6789,6 +6876,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6789
6876
|
change?: boolean | undefined;
|
|
6790
6877
|
confirm?: boolean | undefined;
|
|
6791
6878
|
loadList?: boolean | undefined;
|
|
6879
|
+
needTip?: boolean | undefined;
|
|
6792
6880
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6793
6881
|
} | undefined;
|
|
6794
6882
|
} | undefined;
|
|
@@ -6877,6 +6965,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6877
6965
|
change?: boolean | undefined;
|
|
6878
6966
|
confirm?: boolean | undefined;
|
|
6879
6967
|
loadList?: boolean | undefined;
|
|
6968
|
+
needTip?: boolean | undefined;
|
|
6880
6969
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6881
6970
|
} | undefined;
|
|
6882
6971
|
} | undefined;
|
|
@@ -6965,6 +7054,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
6965
7054
|
change?: boolean | undefined;
|
|
6966
7055
|
confirm?: boolean | undefined;
|
|
6967
7056
|
loadList?: boolean | undefined;
|
|
7057
|
+
needTip?: boolean | undefined;
|
|
6968
7058
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
6969
7059
|
} | undefined;
|
|
6970
7060
|
} | undefined;
|
|
@@ -7037,6 +7127,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7037
7127
|
change?: boolean | undefined;
|
|
7038
7128
|
confirm?: boolean | undefined;
|
|
7039
7129
|
loadList?: boolean | undefined;
|
|
7130
|
+
needTip?: boolean | undefined;
|
|
7040
7131
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7041
7132
|
} | undefined;
|
|
7042
7133
|
} | undefined;
|
|
@@ -7134,6 +7225,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7134
7225
|
} | undefined;
|
|
7135
7226
|
form?: {
|
|
7136
7227
|
label?: string | undefined;
|
|
7228
|
+
tip?: string | undefined;
|
|
7137
7229
|
} | undefined;
|
|
7138
7230
|
} | undefined;
|
|
7139
7231
|
show?: {
|
|
@@ -7176,6 +7268,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7176
7268
|
page: boolean;
|
|
7177
7269
|
scroll: boolean;
|
|
7178
7270
|
field: string;
|
|
7271
|
+
order: "asc" | "desc";
|
|
7179
7272
|
onEnd: (data: any[]) => any;
|
|
7180
7273
|
rule: "index" | "value";
|
|
7181
7274
|
api: Partial<{
|
|
@@ -7212,6 +7305,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7212
7305
|
page: boolean;
|
|
7213
7306
|
scroll: boolean;
|
|
7214
7307
|
field: string;
|
|
7308
|
+
order: "asc" | "desc";
|
|
7215
7309
|
onEnd: (data: any[]) => any;
|
|
7216
7310
|
rule: "index" | "value";
|
|
7217
7311
|
api: Partial<{
|
|
@@ -7249,14 +7343,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7249
7343
|
destroy: () => void;
|
|
7250
7344
|
getBody: () => HTMLElement | null;
|
|
7251
7345
|
loadModule: () => Promise<any>;
|
|
7252
|
-
applyRule: (data: any[], field: string, rule: "index" | "value", values: any[]) => void;
|
|
7346
|
+
applyRule: (data: any[], field: string, rule: "index" | "value", values: any[], order?: "asc" | "desc") => void;
|
|
7253
7347
|
sync: () => Promise<void>;
|
|
7254
7348
|
refreshList: () => Promise<void>;
|
|
7255
7349
|
fitHeight: boolean;
|
|
7256
7350
|
start: () => Promise<void>;
|
|
7257
7351
|
exit: () => Promise<void>;
|
|
7258
7352
|
save: () => Promise<void>;
|
|
7259
|
-
command: (command: "save" | "exit") => Promise<void>;
|
|
7260
7353
|
};
|
|
7261
7354
|
header: {
|
|
7262
7355
|
group: {
|
|
@@ -7307,6 +7400,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7307
7400
|
key: string;
|
|
7308
7401
|
label: string;
|
|
7309
7402
|
value?: any;
|
|
7403
|
+
tip?: string | undefined;
|
|
7310
7404
|
children?: /*elided*/ any[] | undefined;
|
|
7311
7405
|
disabled?: {
|
|
7312
7406
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -7365,6 +7459,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7365
7459
|
change?: boolean | undefined;
|
|
7366
7460
|
confirm?: boolean | undefined;
|
|
7367
7461
|
loadList?: boolean | undefined;
|
|
7462
|
+
needTip?: boolean | undefined;
|
|
7368
7463
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7369
7464
|
} | undefined;
|
|
7370
7465
|
} | undefined;
|
|
@@ -7453,6 +7548,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7453
7548
|
change?: boolean | undefined;
|
|
7454
7549
|
confirm?: boolean | undefined;
|
|
7455
7550
|
loadList?: boolean | undefined;
|
|
7551
|
+
needTip?: boolean | undefined;
|
|
7456
7552
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7457
7553
|
} | undefined;
|
|
7458
7554
|
} | undefined;
|
|
@@ -7541,6 +7637,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7541
7637
|
change?: boolean | undefined;
|
|
7542
7638
|
confirm?: boolean | undefined;
|
|
7543
7639
|
loadList?: boolean | undefined;
|
|
7640
|
+
needTip?: boolean | undefined;
|
|
7544
7641
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7545
7642
|
} | undefined;
|
|
7546
7643
|
} | undefined;
|
|
@@ -7613,6 +7710,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7613
7710
|
change?: boolean | undefined;
|
|
7614
7711
|
confirm?: boolean | undefined;
|
|
7615
7712
|
loadList?: boolean | undefined;
|
|
7713
|
+
needTip?: boolean | undefined;
|
|
7616
7714
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7617
7715
|
} | undefined;
|
|
7618
7716
|
} | undefined;
|
|
@@ -7710,6 +7808,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7710
7808
|
} | undefined;
|
|
7711
7809
|
form?: {
|
|
7712
7810
|
label?: string | undefined;
|
|
7811
|
+
tip?: string | undefined;
|
|
7713
7812
|
} | undefined;
|
|
7714
7813
|
} | undefined;
|
|
7715
7814
|
show?: {
|
|
@@ -7790,6 +7889,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7790
7889
|
page?: boolean | undefined;
|
|
7791
7890
|
scroll?: boolean | undefined;
|
|
7792
7891
|
field?: string | undefined;
|
|
7892
|
+
order?: "asc" | "desc" | undefined;
|
|
7793
7893
|
onEnd?: ((data: any[]) => any) | undefined;
|
|
7794
7894
|
rule?: "index" | "value" | undefined;
|
|
7795
7895
|
api?: {
|
|
@@ -7806,6 +7906,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7806
7906
|
key: string;
|
|
7807
7907
|
label: string;
|
|
7808
7908
|
value?: any;
|
|
7909
|
+
tip?: string | undefined;
|
|
7809
7910
|
children?: /*elided*/ any[] | undefined;
|
|
7810
7911
|
disabled?: {
|
|
7811
7912
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -7864,6 +7965,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7864
7965
|
change?: boolean | undefined;
|
|
7865
7966
|
confirm?: boolean | undefined;
|
|
7866
7967
|
loadList?: boolean | undefined;
|
|
7968
|
+
needTip?: boolean | undefined;
|
|
7867
7969
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7868
7970
|
} | undefined;
|
|
7869
7971
|
} | undefined;
|
|
@@ -7952,6 +8054,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
7952
8054
|
change?: boolean | undefined;
|
|
7953
8055
|
confirm?: boolean | undefined;
|
|
7954
8056
|
loadList?: boolean | undefined;
|
|
8057
|
+
needTip?: boolean | undefined;
|
|
7955
8058
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
7956
8059
|
} | undefined;
|
|
7957
8060
|
} | undefined;
|
|
@@ -8040,6 +8143,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8040
8143
|
change?: boolean | undefined;
|
|
8041
8144
|
confirm?: boolean | undefined;
|
|
8042
8145
|
loadList?: boolean | undefined;
|
|
8146
|
+
needTip?: boolean | undefined;
|
|
8043
8147
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
8044
8148
|
} | undefined;
|
|
8045
8149
|
} | undefined;
|
|
@@ -8112,6 +8216,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8112
8216
|
change?: boolean | undefined;
|
|
8113
8217
|
confirm?: boolean | undefined;
|
|
8114
8218
|
loadList?: boolean | undefined;
|
|
8219
|
+
needTip?: boolean | undefined;
|
|
8115
8220
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
8116
8221
|
} | undefined;
|
|
8117
8222
|
} | undefined;
|
|
@@ -8209,6 +8314,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8209
8314
|
} | undefined;
|
|
8210
8315
|
form?: {
|
|
8211
8316
|
label?: string | undefined;
|
|
8317
|
+
tip?: string | undefined;
|
|
8212
8318
|
} | undefined;
|
|
8213
8319
|
} | undefined;
|
|
8214
8320
|
show?: {
|
|
@@ -8285,6 +8391,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8285
8391
|
key: string;
|
|
8286
8392
|
label: string;
|
|
8287
8393
|
value?: any;
|
|
8394
|
+
tip?: string | undefined;
|
|
8288
8395
|
children?: /*elided*/ any[] | undefined;
|
|
8289
8396
|
disabled?: {
|
|
8290
8397
|
table?: boolean | ((data: any) => boolean) | undefined;
|
|
@@ -8343,6 +8450,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8343
8450
|
change?: boolean | undefined;
|
|
8344
8451
|
confirm?: boolean | undefined;
|
|
8345
8452
|
loadList?: boolean | undefined;
|
|
8453
|
+
needTip?: boolean | undefined;
|
|
8346
8454
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
8347
8455
|
} | undefined;
|
|
8348
8456
|
} | undefined;
|
|
@@ -8431,6 +8539,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8431
8539
|
change?: boolean | undefined;
|
|
8432
8540
|
confirm?: boolean | undefined;
|
|
8433
8541
|
loadList?: boolean | undefined;
|
|
8542
|
+
needTip?: boolean | undefined;
|
|
8434
8543
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
8435
8544
|
} | undefined;
|
|
8436
8545
|
} | undefined;
|
|
@@ -8519,6 +8628,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8519
8628
|
change?: boolean | undefined;
|
|
8520
8629
|
confirm?: boolean | undefined;
|
|
8521
8630
|
loadList?: boolean | undefined;
|
|
8631
|
+
needTip?: boolean | undefined;
|
|
8522
8632
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
8523
8633
|
} | undefined;
|
|
8524
8634
|
} | undefined;
|
|
@@ -8591,6 +8701,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8591
8701
|
change?: boolean | undefined;
|
|
8592
8702
|
confirm?: boolean | undefined;
|
|
8593
8703
|
loadList?: boolean | undefined;
|
|
8704
|
+
needTip?: boolean | undefined;
|
|
8594
8705
|
api?: ((data: any, type: "switch") => any) | undefined;
|
|
8595
8706
|
} | undefined;
|
|
8596
8707
|
} | undefined;
|
|
@@ -8688,6 +8799,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
8688
8799
|
} | undefined;
|
|
8689
8800
|
form?: {
|
|
8690
8801
|
label?: string | undefined;
|
|
8802
|
+
tip?: string | undefined;
|
|
8691
8803
|
} | undefined;
|
|
8692
8804
|
} | undefined;
|
|
8693
8805
|
show?: {
|