feat: 初始化

This commit is contained in:
George
2025-07-07 15:55:44 +08:00
commit 9b7bfcfe5a
969 changed files with 123036 additions and 0 deletions

19
types/components.ts Normal file
View File

@ -0,0 +1,19 @@
interface OptionItem {
label: string;
value: any;
}
export interface ColumnItem {
label: string;
dataIndex: string;
dataType: 'text' | 'select';
valuEnum?: OptionItem[];
hideInSearch?: boolean;
hideInTable?: boolean;
span?: number;
width?: number;
}
export interface ReportTableProps {
title?: string;
columns?: ColumnItem[];
}
export interface TableConfig {}