|
@@ -112,8 +112,10 @@ class PlatformService extends JsonRpcClientBase {
|
|
|
}
|
|
|
|
|
|
///打开测量页面(独立窗口)
|
|
|
- Future<bool?> openReportDesignerAsync() async {
|
|
|
- var rpcRst = await call("OpenReportDesigner");
|
|
|
+ Future<bool?> openReportDesignerAsync(
|
|
|
+ String templateId, String name, String type, String token) async {
|
|
|
+ var rpcRst =
|
|
|
+ await call("OpenReportDesigner", [templateId, name, type, token]);
|
|
|
return rpcRst;
|
|
|
}
|
|
|
}
|