...
|
...
|
@@ -244,7 +244,7 @@ global.openDetail = (resId, resType, proxy) => { |
|
|
* @param code 报表code
|
|
|
* @param parans map参数 key:参数key value:参数值
|
|
|
*/
|
|
|
global.openReport = (code, parans) => {
|
|
|
global.openReport = (code, parans, width, height) => {
|
|
|
|
|
|
let arr = [];
|
|
|
if (Object.keys(parans).length > 0) {
|
...
|
...
|
@@ -261,7 +261,7 @@ global.openReport = (code, parans) => { |
|
|
if (arr.length > 0) {
|
|
|
url += "&" + arr.join('&')
|
|
|
}
|
|
|
global.openBlankWindow(url);
|
|
|
global.openBlankWindow(url, width, height);
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
|