/** * Tradeselect * @cloud */ export interface TradeselectProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 标题名称 */ title: string; /** * 选中文本 */ selectedName: string; /** * 选项 */ options: OptionItemType[]; /** * 选中id */ selectedId: string; } export interface OptionItemType { /** * 文本 */ text: string; /** * 是否选中 */ checked: boolean; /** * id */ id: string; }