index.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <div class="app-container">
  3. <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleClick" class="not-print-content">打印</el-button>
  4. <div class="container" style="margin-top: 20px;">
  5. <div v-show="loading" class="well loading">正在加载中,请耐心等待...</div>
  6. <div v-show="!loading" class="well" ref="output"></div>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import { getExtend, readBuffer, render } from '@/utils/util';
  12. import { parse } from 'qs';
  13. import axios from 'axios'
  14. export default {
  15. data() {
  16. return {
  17. loading: false,
  18. url: '',
  19. fileName: '',
  20. id: ''
  21. }
  22. },
  23. created() {
  24. this.loading = true
  25. this.url = this.$route.query.url || ''
  26. this.fileName = this.$route.query.fileName || ''
  27. this.id = this.$route.query.id || ''
  28. console.log(this.url)
  29. console.log(this.fileName)
  30. console.log(this.id)
  31. if(this.url != '') {
  32. this.getLoadEnclosure();
  33. }
  34. },
  35. methods: {
  36. handleClick() {
  37. if (!!window.ActiveXObject || "ActiveXObject" in window) {
  38. //是否ie
  39. remove_ie_header_and_footer();
  40. }
  41. window.print();
  42. },
  43. //去掉页眉页脚
  44. remove_ie_header_and_footer() {
  45. var hkey_path =
  46. "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
  47. try {
  48. var RegWsh = new ActiveXObject("WScript.Shell");
  49. RegWsh.RegWrite(hkey_path + "header", "");
  50. RegWsh.RegWrite(hkey_path + "footer", "");
  51. } catch (e) {}
  52. },
  53. getLoadEnclosure() {
  54. const filename = this.fileName
  55. axios({
  56. url: "http://124.232.146.72:7015/api/common/attach/"+this.id,
  57. method: 'get',
  58. responseType: 'blob',
  59. }).then(({ data }) => {
  60. if (!data) {
  61. console.error('文件下载失败');
  62. }
  63. const file = new File([ data ], filename, {});
  64. this.handleChange({ target: { files: [ file ] } });
  65. }).finally(() => {
  66. this.loading = false;
  67. })
  68. },
  69. async handleChange(e) {
  70. this.loading = true;
  71. try {
  72. const [ file ] = e.target.files;
  73. this.filename = file.name && decodeURIComponent(file.name) || '';
  74. const arrayBuffer = await readBuffer(file);
  75. this.loading = false
  76. this.last = await this.displayResult(arrayBuffer, file)
  77. console.log("last")
  78. console.log(this.last)
  79. } catch (e) {
  80. console.error(e)
  81. } finally {
  82. this.loading = false
  83. }
  84. },
  85. displayResult(buffer, file) {
  86. // 取得文件名
  87. const { name } = file;
  88. // 取得扩展名
  89. const extend = getExtend(name);
  90. // 输出目的地
  91. const { output } = this.$refs;
  92. // 生成新的dom
  93. const node = document.createElement('div');
  94. // 添加孩子,防止vue实例替换dom元素
  95. if (this.last) {
  96. output.removeChild(this.last.$el);
  97. this.last.$destroy();
  98. }
  99. const child = output.appendChild(node);
  100. // 调用渲染方法进行渲染
  101. return new Promise((resolve, reject) => render(buffer, extend, child)
  102. .then(resolve).catch(reject));
  103. }
  104. }
  105. }
  106. </script>
  107. <style scoped>
  108. @media print {
  109. .not-print-content {
  110. display: none;
  111. }
  112. }
  113. @page { margin: 0; }
  114. </style>