2025-10-22 17:54:38 +08:00
|
|
|
|
import type { CSSProperties, FC } from "react";
|
|
|
|
|
|
|
|
|
|
|
|
export interface PdfProps {
|
|
|
|
|
|
/** pdf 文件地址 */
|
|
|
|
|
|
file: string;
|
2025-11-08 15:52:06 +08:00
|
|
|
|
/** pdf 文件名 */
|
|
|
|
|
|
name?: string;
|
2025-10-22 17:54:38 +08:00
|
|
|
|
/** 是否显示弹窗 */
|
|
|
|
|
|
visible?: boolean;
|
|
|
|
|
|
/** 关闭弹窗的方法 */
|
|
|
|
|
|
onCancel?: () => void;
|
|
|
|
|
|
/** 是否使用内联模式,true为不使用弹窗,默认为false */
|
|
|
|
|
|
inline?: boolean;
|
|
|
|
|
|
/** 内联模式下的样式 */
|
|
|
|
|
|
style?: CSSProperties;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
declare const Pdf: FC<PdfProps>;
|
|
|
|
|
|
|
|
|
|
|
|
export default Pdf;
|