/** * Alipay */ export interface AlipayProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 支付方式 id */ paymentMethodId: string; /** * 支付方式 code */ paymentMethodCode: string; /** * 支付宝icon */ iconUrl: string; /** * 标题 */ title: string; /** * 是否确认 */ checked: boolean; }