export default ItemInfo; /** * - 奥创组件数据 */ export type UltronProps = { /** * - 组件实例数据 */ componentData: any; /** * - 异步提交 */ onChange: Function; /** * - 外层异步提交 */ onChangeData: Function; /** * - 表单提交 */ onSubmit: Function; /** * - 定制点 */ customization: Customization; /** * - 表单数据 */ fields: Fields; /** * - uuid */ uuid: string; /** * - events */ events: any; }; /** * - skuLevel */ export type SkuLevel = { /** * - style */ style: Style; /** * - title */ title: string; }; /** * - style */ export type Style = { /** * - color * * 表单数据 */ color: string; }; /** * - 输入数据 */ export type Fields = { /** * - 商品数量 */ count: string; /** * - 是否禁用 */ disabled: boolean; /** * - 商品主图 */ icon: string; /** * - 商品价格 */ price: string; /** * - 商品标题 */ title: string; /** * - 标签 */ tagList: Tag[]; /** * - 发货时间描述 */ assistMessage: string; /** * - 物流状态 */ logisticsStatus: string; /** * - 订单状态 */ orderStatus: string; /** * - skuText */ subtitles: string; /** * - sku说明 */ skuLevel: SkuLevel[]; /** * - timeLimit */ timeLimit: string; /** * - 商品重量 */ weight: 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 * * @typedef {Object} SkuLevel - skuLevel * @property {Style} style - style * @property {String} title - title * * @typedef {Object} Style - style * @property {String} color - color * * 表单数据 * @typedef {Object} Fields - 输入数据 * @property {String} count - 商品数量 * @property {Boolean} disabled - 是否禁用 * @property {String} icon - 商品主图 * @property {String} price - 商品价格 * @property {String} title - 商品标题 * @property {Tag[]} tagList - 标签 * @property {String} assistMessage - 发货时间描述 * @property {String} logisticsStatus - 物流状态 * @property {String} orderStatus - 订单状态 * @property {String} subtitles - skuText * @property {SkuLevel[]} skuLevel - sku说明 * @property {String} timeLimit - timeLimit * @property {String} weight - 商品重量 * * @typedef {Object} Tag - 标签 * @property {String} text - 文案 * @property {String} type - 类型 * 定制点数据 * @typedef {Object} Customization - 定制点数据 * * @param {UltronProps} props */ declare function ItemInfo(props: UltronProps): JSX.Element;