27 lines
765 B
TypeScript
27 lines
765 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function render(props: {
|
|
data: {
|
|
createAt?: string;
|
|
itemData: ({
|
|
type: string;
|
|
typeColor: string;
|
|
lossExp: string;
|
|
channel: string;
|
|
priceYuan: string;
|
|
lossYuan: string;
|
|
finalYuan: string;
|
|
iState?: string;
|
|
iStateColor?: string;
|
|
updateAt?: string;
|
|
reason?: string;
|
|
})[];
|
|
withdrawExactPrice: string;
|
|
step: 0 | 1 | 2;
|
|
iState?: EntityDict['withdraw']['OpSchema']['iState'];
|
|
};
|
|
methods: {
|
|
t: (key: string, param?: any) => string;
|
|
};
|
|
}): import("react").JSX.Element;
|