22 lines
678 B
TypeScript
22 lines
678 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Detail(props: {
|
|
createAt?: string;
|
|
withdrawMethod?: 'refund' | 'channel';
|
|
refundData: ({
|
|
lossExp: string;
|
|
channel: string;
|
|
priceYuan: string;
|
|
lossYuan: string;
|
|
finalYuan: string;
|
|
iState?: EntityDict['refund']['OpSchema']['iState'];
|
|
iStateColor?: string;
|
|
updateAt?: string;
|
|
reason?: string;
|
|
})[];
|
|
withdrawExactPrice: string;
|
|
t: (k: string, p?: any) => string;
|
|
step: 0 | 1 | 2;
|
|
iState?: EntityDict['withdraw']['OpSchema']['iState'];
|
|
}): import("react").JSX.Element;
|