/** * Custompromotion * @cloud */ export interface CustompromotionProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 标题 */ title: string; /** * 描述 */ desc: string; /** * value */ value: string; /** * 是否隐藏右箭头 */ hideOption: boolean; /** * 可选列表 */ options: OptionType[]; } export interface OptionType { /** * id */ id: string; /** * title */ title: string; /** * 价格 */ price: number; /** * 是否禁用 */ disabled: boolean; /** * 是否玄宗 */ isChecked: boolean; }