/** * Eticket * @cloud */ export interface EticketProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 电子凭证列表 */ data: ItemType[]; } export interface CertificateType { /** * 二维码 */ QRCode: object; /** * 二维码替代图片 */ QRCodeCoverUrl: string; /** * 码信息 */ barCode: string; /** * 是否无效 */ isInvalid: boolean; /** * 标题 */ title: string; /** * 核销码 */ titleCode: string; } export interface AnyType { } export interface ContentItemType { /** * 信息列表 */ data: AnyType[]; /** * 服务类型 */ type: string; } export interface ServiceInfoType { /** * 信息列表 */ content: ContentItemType[]; /** * 信息标题 */ title: string; } export interface ItemType { /** * 凭证信息 */ certificate: CertificateType; /** * 服务信息 */ serviceInfo: ServiceInfoType[]; }