123456789101112131415161718192021222324252627282930 |
- <template>
- <div style="height: 100%" class="container">
- <iframe
- height="100%"
- width="100%"
- src="/static/views/excel.html"
- frameborder="0"
- ></iframe>
- </div>
- </template>
- <script>
- export default {
- mounted() {
- // let _this = this;
- // window.onbeforeunload = function (e) {
- // if (_this.$route.name == "excel") {
- // e = e || window.event;
- // // 兼容IE8和Firefox 4之前的版本
- // if (e) {
- // e.returnValue = "关闭提示1111";
- // }
- // // Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+
- // return "关闭提示222";
- // } else {
- // window.onbeforeunload = null;
- // }
- // };
- },
- };
- </script>
|