oak-pay-business/es/components/withdraw/detail/web.pc.js

14 lines
598 B
JavaScript

import React from 'react';
import WithdrawDetail from '../dry/Detail.pc';
import Styles from './web.pc.module.less';
export default function render(props) {
const { withdrawExactPrice, withdrawMethod, refundData, createAtStr, step, iState } = props.data;
const { t } = props.methods;
if (refundData) {
return (<div className={Styles.container}>
<WithdrawDetail withdrawExactPrice={withdrawExactPrice} withdrawMethod={withdrawMethod} refundData={refundData} t={t} step={step} createAt={createAtStr} iState={iState}/>
</div>);
}
return null;
}