12345678910111213141516171819202122232425262728 |
- declare const dll: ReportApi;
- interface ReportApi {
- /**
- *设计模板
- *
- * @param {string} fileName 模板路径
- * @param {string} tempData 临时演示数据
- * @memberof ReportApi
- */
- designerReport(fileName: string, tempData: string): void;
- /**
- *打印预览
- *
- * @param {string} fileName 模板路径
- * @param {string} jsonData 数据
- * @memberof ReportApi
- */
- reportShowPreview(fileName: string, jsonData: string): void;
- /**
- *打印
- *
- * @param {string} fileName 模板路径
- * @param {string} jsonData 数据
- * @memberof ReportApi
- */
- reportPrinter(fileName: string, jsonData: string): void;
- }
- export default dll;
|