/** * Antcreditpay * @cloud */ export interface AntcreditpayProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 已选中的花呗方案手续费 */ totalCommision: number; /** * 花呗图标 */ logo: string; /** * 花呗标题 */ title: string; /** * 描述 */ desc: string; /** * 是否禁止选择 */ disable: String | Boolean; /** * 分期总额 */ total: number; /** * 完成按钮完本 */ confirm: string; /** * 弹出框标题 */ dialogTitle: string; /** * 隐藏字段 */ hidden: HiddenType; /** * 可选列表 */ options: OptionType[]; } export interface HiddenType { /** * 详细 */ details: string; /** * 接口名称 */ api: string; } export interface OptionType { /** * id */ id: string; /** * 花呗方案总手续费 */ totalCommsion: number; /** * 花呗方案的分期手续费 */ installmentCommision: number; /** * 花呗方案详情 */ plan: string; /** * 是否选中 */ isChecked: String | Boolean; /** * 分期数 */ num: number; }