import { CompanyPaymentAccountSearch } from '@/components'; import { useIntl } from '@@/exports'; import { ProFormDependency, ProFormSelectProps, } from '@ant-design/pro-components'; export type ICompanyPaymentAccountSelectProps = { onFinish?: (accountList: BusinessAPI.CompanyPaymentAccountVO[]) => void; params: BusinessAPI.CompanyPaymentAccountPageQry; } & ProFormSelectProps; export default function CompanyPaymentAccountSelect( props: ICompanyPaymentAccountSelectProps, ) { const intl = useIntl(); console.log('props', props); return ( {({ companyPaymentAccountVO, canChangeAccount }, form) => { return ( ); }} ); }