export default PayDetail; /** * - 奥创组件数据 */ export type UltronProps = { /** * - 组件实例数据 */ componentData: any; /** * - 异步提交 */ onChange: Function; /** * - 外层异步提交 */ onChangeData: Function; /** * - 表单提交 */ onSubmit: Function; /** * - 定制点 */ customization: any; /** * - 表单数据 */ fields: Fields; /** * - uuid */ uuid: string; /** * - events */ events: any; }; /** * - 可选列表配置 */ export type Fields = { /** * - 运费 */ postFees: PostFee[]; /** * - 详细 */ details: Detail[]; /** * - 优惠 */ promotions: Promotion[]; /** * - 实付款 */ actualFee: ActualFee; }; /** * - 可选列表配置 */ export type Detail = { /** * - name */ name: string; /** * - value */ value: string; }; /** * - 优惠 */ export type Promotion = { /** * - name */ name: string; /** * - value */ value: string; }; /** * - 运费 */ export type PostFee = { /** * - name */ name: string; /** * - value */ value: string; }; /** * - 运费 */ export type ActualFee = { /** * - name */ name: string; /** * - value */ value: string; }; /** * 奥创组件协议传入类型 * @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} Fields - 可选列表配置 * @property {PostFee[]} postFees - 运费 * @property {Detail[]} details - 详细 * @property {Promotion[]} promotions - 优惠 * @property {ActualFee} actualFee - 实付款 * * @typedef {Object} Detail - 可选列表配置 * @property {String} name - name * @property {String} value - value * * @typedef {Object} Promotion - 优惠 * @property {String} name - name * @property {String} value - value * * @typedef {Object} PostFee - 运费 * @property {String} name - name * @property {String} value - value * * @typedef {Object} ActualFee - 运费 * @property {String} name - name * @property {String} value - value * * @param {UltronProps} props */ declare function PayDetail(props: UltronProps): JSX.Element;