|
|
@@ -13,6 +13,7 @@
|
|
|
style="height: calc(100vh - 100px); position: absolute; left: -1000000px"
|
|
|
frameborder="0"
|
|
|
allowfullscreen="true"
|
|
|
+ ref="Iframe"
|
|
|
id="Iframe"
|
|
|
></iframe>
|
|
|
|
|
|
@@ -90,7 +91,7 @@
|
|
|
fileNames[fileNames.length - 1];
|
|
|
this.fileUrl = '/kkfile/onlinePreview?url=' + btoa(url);
|
|
|
this.$nextTick(() => {
|
|
|
- setImmediate(() => {
|
|
|
+ this.$refs.Iframe.onload = () => {
|
|
|
var iframe = document.getElementById('Iframe');
|
|
|
console.log(iframe);
|
|
|
var iframeDocument = iframe.contentWindow.document;
|
|
|
@@ -105,7 +106,7 @@
|
|
|
`src="${window.location.origin}$1"`
|
|
|
)
|
|
|
);
|
|
|
- });
|
|
|
+ };
|
|
|
});
|
|
|
}
|
|
|
}
|