/** * Logistics * @cloud */ export interface LogisticsProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 订单号 */ orderId: string; /** * 物流信息 */ info: InfoType; /** * 接口名称 */ api: string; /** * 接口版本号 */ v: string; /** * 状态Icon */ statusIcon: string; /** * 跳转链接 */ viewLogisticUrl: string; } export interface InfoType { /** * 物流详情 */ message: string; /** * 物流时间 */ time: string; }