/** * Voucherinfo * @cloud */ export interface VoucherinfoProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 已选中的值 */ desc: string; /** * 跳转链接 */ extraLink: string; /** * 引导选择的文本 */ title: string; /** * icon地址 */ iconUrl: string; /** * 配置选项 */ options: OptionType[]; } export interface OptionType { /** * id */ id: string; /** * title */ title: string; /** * disable */ disable: String | Boolean; /** * isChecked */ isChecked: String | Boolean; }