/** * Status * @cloud */ export interface StatusProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 物流订单中的商品列表 */ packageItemList: ItemType[]; /** * 物流公司代码 */ partnerCode: string; /** * 物流公司名称 */ partnerName: string; /** * 物流状态 */ actionText: string; } export interface ItemType { /** * itemPic */ itemPic: string; /** * title */ title: string; }