|
@@ -329,7 +329,15 @@ let zTreeOprObj = {
|
|
|
JpcCanvasOutput.drawPageBorder(me.currentRptPageRst, canvas, getScreenDPI());
|
|
|
}
|
|
|
if (is_debug) {
|
|
|
- console.log(result.debugInfo);
|
|
|
+ console.log('含有key的debug信息:');
|
|
|
+ for (const k in result.debugInfo.key) {
|
|
|
+ console.log(k + ':', ...result.debugInfo.key[k]);
|
|
|
+ }
|
|
|
+ //console.log(result.debugInfo.key);
|
|
|
+ console.log('其他debug信息:');
|
|
|
+ for (const di of result.debugInfo.other) {
|
|
|
+ console.log(...di);
|
|
|
+ }
|
|
|
}
|
|
|
}, function(err){
|
|
|
// hintBox.unWaitBox();
|