export default Status; /** * - 奥创组件数据 */ export type UltronProps = { /** * - 组件实例数据 */ componentData: any; /** * - 异步提交 */ onChange: Function; /** * - 外层异步提交 */ onChangeData: Function; /** * - 表单提交 */ onSubmit: Function; /** * - 定制点 */ customization: Customization; /** * - 表单数据 */ fields: Fields; /** * - uuid */ uuid: string; /** * - events */ events: any; /** * - children * * 表单数据 */ children: any; }; /** * - 输入数据 */ export type Fields = { /** * - 分包裹的包裹名称 */ title: string; /** * - 物流订单中的商品列表 */ packageItemList: Item[]; /** * - 物流公司代码 */ partnerCode: string; /** * - 物流公司名称 */ partnerName: string; /** * - 物流状态 */ actionText: string; /** * - 运单号码 */ mailNo: string; /** * - 复制 */ copy: boolean; /** * - 布局方向column或row */ direction: string; /** * - 分包裹 */ packageSplit: boolean; }; /** * 奥创组件协议传入类型 */ export type Item = { /** * - 商品图片 */ itemPic: string; /** * - 商品名称 */ title: string; /** * - 商品ID */ itemId: string; /** * - 价格 */ price: string; /** * - 数量 */ quantity: string; /** * - 商品SKU */ sku: string; /** * - 标签 */ tagList: Tag[]; /** * - 发货时间描述 */ assistMessage: string; /** * - 物流状态 */ logisticsStatus: string; /** * - 订单状态 */ orderStatus: string; }; /** * - 标签 */ export type Tag = { /** * - 文案 */ text: string; /** * - 类型 * * * 定制点数据 */ type: string; }; /** * - 定制点数据 */ export type Customization = any; /** * 奥创组件协议传入类型 * @typedef {Object} UltronProps - 奥创组件数据 * @property {Object} componentData - 组件实例数据 * @property {Function} onChange - 异步提交 * @property {Function} onChangeData - 外层异步提交 * @property {Function} onSubmit - 表单提交 * @property {Customization} customization - 定制点 * @property {Fields} fields - 表单数据 * @property {String} uuid - uuid * @property {Object} events - events * @property {Object} children - children * * 表单数据 * @typedef {Object} Fields - 输入数据 * @property {String} title - 分包裹的包裹名称 * @property {Item[]} packageItemList - 物流订单中的商品列表 * @property {String} partnerCode - 物流公司代码 * @property {String} partnerName - 物流公司名称 * @property {String} actionText - 物流状态 * @property {String} mailNo - 运单号码 * @property {Boolean} copy - 复制 * @property {String} direction - 布局方向column或row * @property {Boolean} packageSplit - 分包裹 * * @typedef {Object} Item * @property {String} itemPic - 商品图片 * @property {String} title - 商品名称 * @property {String} itemId - 商品ID * @property {String} price - 价格 * @property {String} quantity - 数量 * @property {String} sku - 商品SKU * @property {Tag[]} tagList - 标签 * @property {String} assistMessage - 发货时间描述 * @property {String} logisticsStatus - 物流状态 * @property {String} orderStatus - 订单状态 * * @typedef {Object} Tag - 标签 * @property {String} text - 文案 * @property {String} type - 类型 * * * 定制点数据 * @typedef {Object} Customization - 定制点数据 * * @param {UltronProps} props */ declare function Status(props: UltronProps): JSX.Element;