25 lines
751 B
TypeScript
25 lines
751 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'accountOper', true, {
|
|
accountOpers?: Array<{
|
|
value: string;
|
|
time: string;
|
|
type: string;
|
|
symbol: string;
|
|
avail: string;
|
|
bgColor: string;
|
|
}>;
|
|
hasMore: boolean;
|
|
month?: Date;
|
|
monthStr: string;
|
|
type: 'in' | 'out' | 'both';
|
|
chooseMonth: boolean;
|
|
chooseType: boolean;
|
|
}, {
|
|
setMonth: (month?: Date) => void;
|
|
setType: (type: 'in' | 'out' | 'both') => void;
|
|
setChooseMonth: (cm: boolean) => void;
|
|
setChooseType: (ct: boolean) => void;
|
|
}>): React.JSX.Element;
|