import { SearchValue, ResponseDataProps } from '../../types'; export interface RenderContentProps { /** * 查询状态 */ loading?: boolean; /** * 查询结果 */ eventData?: ResponseDataProps; /** * 查询条件 */ searchData?: SearchValue; /** * 显示列表 */ showList: string[]; /** * 是否是城市 */ isCity?: boolean; /** * 添加或者编辑,另存为到看板,添加到常用场景成功之后回调 */ afterEditTarget?: (type: string, value?: any) => void; /** * 改变显示内容 */ onChangeShow?: (data: string[]) => void; }