interface.ts 543 B

1234567891011121314151617181920
  1. interface CustomRender {
  2. customRender: string;
  3. }
  4. // 动态表头类型
  5. export interface ColumnType {
  6. key: string;
  7. dataIndex: string;
  8. title: string;
  9. align: string; // AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
  10. filteredValue?: string | null;
  11. slots?: CustomRender;
  12. onFilter?: Function;
  13. sorter?: Function;
  14. }
  15. export interface TableKey {
  16. table_pcweb_delivery: string; // 现货合同
  17. table_pcweb_userinfo: string; // 客户资料
  18. table_pcweb_warehouse: string; // 仓库信息
  19. }