|
|
@@ -1031,8 +1031,15 @@ let rptControlObj = {
|
|
|
rptTplObj.pdfFont['SmartSimsun'].push(fontProperty);
|
|
|
if (rptTplObj.pdfFont['SmartSimsun'].length === 2) {
|
|
|
me._hidePdfIniPage();
|
|
|
+ $.bootstrapLoading.end();
|
|
|
setTimeout(function() {
|
|
|
- me.getPDFEx();
|
|
|
+ if (!$('#ini_PDF_cover').is(':visible')) {
|
|
|
+ me.getPDFEx();
|
|
|
+ } else {
|
|
|
+ setTimeout(function() {
|
|
|
+ me.getPDFEx();
|
|
|
+ }, 2000);
|
|
|
+ }
|
|
|
}, 1000); // 1000毫秒足够关闭PDF初始化page了,另:不能直接把me.getPDFEx()作为函数放进来,否则容易冲突
|
|
|
}
|
|
|
},
|