index.vue 721 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div style="height: 100%" class="container">
  3. <iframe
  4. height="100%"
  5. width="100%"
  6. src="/static/views/excel.html"
  7. frameborder="0"
  8. ></iframe>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. mounted() {
  14. // let _this = this;
  15. // window.onbeforeunload = function (e) {
  16. // if (_this.$route.name == "excel") {
  17. // e = e || window.event;
  18. // // 兼容IE8和Firefox 4之前的版本
  19. // if (e) {
  20. // e.returnValue = "关闭提示1111";
  21. // }
  22. // // Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+
  23. // return "关闭提示222";
  24. // } else {
  25. // window.onbeforeunload = null;
  26. // }
  27. // };
  28. },
  29. };
  30. </script>