/** * Invoice * @cloud */ export interface InvoiceProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 图标 */ iconUrl: string; /** * 标题 */ title: string; /** * 值 */ value: string; /** * 跳转链接 */ url: string; /** * 发票信息 */ bill: BillType; } export interface BillType { /** * 发票类型 */ type: string; /** * 发票抬头 */ head: string; /** * 发票内容 */ content: string; /** * 个人名称 */ username: string; /** * 单位名称 */ company: string; /** * 税号 */ invoiceNumber: string; /** * 其他 */ other: string; /** * 电子邮件 */ email: string; /** * 电话号码 */ phone: string; }