/** * Seller * @cloud */ export interface SellerProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 卖家商铺图标 */ shopImg: string; /** * 店铺名称 */ shopName: string; /** * 店铺链接 */ url: string; /** * id */ id: number; /** * 支持跳转 */ jump: boolean; }