/** * Methods * @cloud */ export interface MethodsProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 标题 */ title: string; /** * 支付方式列表 */ methods: MethodType[]; } export interface MethodType { /** * 支付方式Icon */ iconUrl: string; /** * 支付方式文案 */ name: string; }