|
@@ -1205,11 +1205,11 @@ export default {
|
|
|
getImg() {
|
|
|
var iframeHtml;
|
|
|
let iframeBody;
|
|
|
- if (toolCount == 1) {
|
|
|
+ if (this.toolCount == 1) {
|
|
|
iframeHtml = this.$refs.whiteBoard;
|
|
|
- } else if (toolCount == 3) {
|
|
|
+ } else if (this.toolCount == 3) {
|
|
|
iframeHtml = this.$refs.mind;
|
|
|
- } else if (toolCount == 7) {
|
|
|
+ } else if (this.toolCount == 7) {
|
|
|
iframeHtml = this.$refs.grid;
|
|
|
}
|
|
|
iframeBody = iframeHtml.contentWindow.document.body;
|