import { useState } from 'react'; import { Button, Modal } from '@/components/ui'; export type ReportWorkbookFormat = 'excel_drawing' | 'wps_cell_image'; export function ReportExportFormatModal({ busy = false, onClose, onConfirm, title = '选择报备文件格式', }: { busy?: boolean; onClose: () => void; onConfirm: (format: ReportWorkbookFormat) => void; title?: string; }) { const [format, setFormat] = useState('excel_drawing'); return ( } onClose={onClose} open title={title} >
); }