import { ResponseDataProps, SearchValue } from '../../types'; /** * 表格组件props */ export interface EventTableProps { /** * 查询结果 */ dataSource: ResponseDataProps; /** * 查询条件 */ searchData: SearchValue; /** * 展示列表 */ showList: string[]; /** * 是否是事件概览, 事件概览时才可以点击指标 */ isOverview?: boolean; /** * 改变展示内容 */ changeShow: (names: string[]) => void; }