zsysview 0.0.61 → 0.0.62
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/zsysview.es.d.ts +27 -0
- package/package.json +1 -1
package/dist/zsysview.es.d.ts
CHANGED
|
@@ -51,8 +51,35 @@ export declare const addFrameRouter: (r: RouteRecordRaw) => void;
|
|
|
51
51
|
|
|
52
52
|
export declare const breadcrumb: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
53
53
|
|
|
54
|
+
declare interface ExportColumn {
|
|
55
|
+
ColumnTitle: string;
|
|
56
|
+
ColumnName: string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export declare interface ListConfig {
|
|
60
|
+
ApiUrl: string;
|
|
61
|
+
QuickConditionsGroups?: QuickConditionsGroup[];
|
|
62
|
+
HideBottomToolbar?: boolean;
|
|
63
|
+
KeywordTip?: string;
|
|
64
|
+
ExportUrl?: string;
|
|
65
|
+
ExportColumn?: ExportColumn[];
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
declare interface QuickConditionsGroup {
|
|
69
|
+
Label: string;
|
|
70
|
+
QuickConditions: SqlQueryParam[];
|
|
71
|
+
Select: number;
|
|
72
|
+
}
|
|
73
|
+
|
|
54
74
|
export declare const router: Router;
|
|
55
75
|
|
|
76
|
+
declare interface SqlQueryParam {
|
|
77
|
+
label: string;
|
|
78
|
+
column: string | null;
|
|
79
|
+
condition?: string | null | unknown;
|
|
80
|
+
value?: number | string | null | unknown;
|
|
81
|
+
}
|
|
82
|
+
|
|
56
83
|
export declare const zsysapp: App<Element>;
|
|
57
84
|
|
|
58
85
|
export declare const zsyslist: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|