|
@@ -91,9 +91,13 @@
|
|
|
:total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="container" id="container" v-else>
|
|
|
- <iframe id="excelIframe" height="100%" width="100%" src="/marketfront/static/views/onlineShareExcel.html"
|
|
|
- frameborder="0"></iframe>
|
|
|
+ <fullscreen :fullscreen.sync="excelFullScreen" class="container">
|
|
|
+ <iframe id="excelIframe" height="100%" width="100%"
|
|
|
+ src="/marketfront/static/views/onlineShareExcel.html"
|
|
|
+ frameborder="0"></iframe>
|
|
|
+ </fullscreen>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -264,6 +268,7 @@ export default {
|
|
|
woNo: '',
|
|
|
moveMenuList: [],
|
|
|
addShareType: 0,
|
|
|
+ excelFullScreen: false,
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -743,6 +748,9 @@ export default {
|
|
|
) || null
|
|
|
);
|
|
|
},
|
|
|
+ processFullScreen() {
|
|
|
+ this.excelFullScreen = !this.excelFullScreen;
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
this.woNo = this.getUrlKey("id")//获取地址栏参数
|
|
@@ -760,6 +768,9 @@ export default {
|
|
|
this.getTreeData();
|
|
|
},
|
|
|
created() {
|
|
|
+ window['fullScreen'] = (rp) => {
|
|
|
+ this.processFullScreen(rp);
|
|
|
+ }
|
|
|
window['backToExcelList'] = (rp) => {
|
|
|
this.closeExcel(rp);
|
|
|
}
|