/** * Promotionbar * @cloud */ export interface PromotionbarProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * title */ title: string; /** * 详细信息 */ desc: string; /** * value */ value: string; /** * 是否隐藏右箭头 */ hideOption: boolean; /** * 可选的列表 */ options: OptionType[]; } export interface OptionType { /** * title */ title: string; /** * 详细信息 */ price: string; /** * 是否隐藏右箭头 */ isChecked: boolean; }