/** * Iteminfo * @cloud */ export interface IteminfoProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 商品数量 */ count: string; /** * 是否禁用 */ disabled: boolean; /** * 商品主图 */ icon: string; /** * 商品价格 */ price: string; /** * 商品标题 */ title: string; /** * 标签 */ tagList: TagType[]; /** * 发货时间描述 */ assistMessage: string; /** * 物流状态 */ logisticsStatus: string; /** * 订单状态 */ orderStatus: string; /** * skuText */ subtitles: string; /** * sku说明 */ skuLevel: SkuLevelType[]; /** * timeLimit */ timeLimit: string; /** * 商品重量 */ weight: string; } export interface TagType { /** * 文案 */ text: string; /** * 类型 定制点数据 */ type: string; } export interface StyleType { /** * color */ color: string; } export interface SkuLevelType { /** * style */ style: StyleType; /** * title */ title: string; }