/** * Paystatus * @cloud */ export interface PaystatusProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 剩余时间 */ time: string; /** * prefix */ prefix: string; /** * suffix */ suffix: string; /** * 实付款 */ actualFee: string; /** * 优惠 */ promotionFee: string; /** * 按钮名称 */ options: OptionType[]; } export interface OptionType { /** * 操作Code */ id: string; /** * 操作文案 */ actionText: string; /** * 链接 */ actionUrl: string; /** * 操作类型async/link/submit等 */ optionType: string; }