| 1234567891011121314151617181920 |
- interface CustomRender {
- customRender: string;
- }
- // 动态表头类型
- export interface ColumnType {
- key: string;
- dataIndex: string;
- title: string;
- align: string; // AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
- filteredValue?: string | null;
- slots?: CustomRender;
- onFilter?: Function;
- sorter?: Function;
- }
- export interface TableKey {
- table_pcweb_delivery: string; // 现货合同
- table_pcweb_userinfo: string; // 客户资料
- table_pcweb_warehouse: string; // 仓库信息
- }
|