/** * Resultinfo * @cloud */ export interface ResultinfoProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 类型normal还是主题 */ type: string; /** * 支付结果图标 */ statusIcon: string; /** * 支付结果文案 */ statusText: string; /** * 标题 */ payInfo: string; /** * 标题 */ discountInfo: string; /** * 标题 */ actions: ActionType[]; /** * 是否rerender */ reload: boolean; } export interface ActionType { /** * 按钮文案 */ text: string; /** * 按钮地址 */ url: string; /** * 强调显示 */ highlight: boolean; }