26 lines
743 B
TypeScript
26 lines
743 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { SysAccountOperType } from '../../../types/sysAccountOper';
|
|
type SAOType = SysAccountOperType | 'all';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'accountOper', true, {
|
|
sysAccountOpers?: Array<{
|
|
value: string;
|
|
time: string;
|
|
type: string;
|
|
symbol: string;
|
|
bgColor: string;
|
|
}>;
|
|
month?: Date;
|
|
monthStr: string;
|
|
type: SAOType;
|
|
typesOptions: {
|
|
label: string;
|
|
value: SAOType;
|
|
}[];
|
|
}, {
|
|
setMonth: (month?: Date) => void;
|
|
setType: (type: SAOType) => void;
|
|
}>): React.JSX.Element;
|
|
export {};
|