20 lines
681 B
TypeScript
20 lines
681 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'withdraw', false, {
|
|
createAtStr: string;
|
|
withdrawMethod?: 'refund' | 'channel';
|
|
refundData?: ({
|
|
lossExp: string;
|
|
channel: string;
|
|
priceYuan: string;
|
|
lossYuan: string;
|
|
finalYuan: string;
|
|
iState: EntityDict['refund']['OpSchema']['iState'];
|
|
iStateColor: string;
|
|
})[];
|
|
withdrawExactPrice: string;
|
|
step: 1 | 2;
|
|
iState?: EntityDict['withdraw']['OpSchema']['iState'];
|
|
}>): React.JSX.Element | null;
|