打印报表调用PageReport.print() 方法,具体使用参考文档:https://demo.grapecity.com.cn/ac ... portsJSViewer/Print
- import { Core } from "@grapecity/activereports";
- const report = new Core.PageReport();
- await report.load("/reports/text-only.rdlx-json");
- const doc = await report.run();
- doc.print();
复制代码
|
|