_id.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div>
  3. </div>
  4. </template>
  5. <script>
  6. export default {
  7. layout: "blank_layout",
  8. created(){
  9. this.$axios.get("/api/bxh/pdf", { params:{project_id: +this.$route.params.id}}).then((res) => {
  10. fetch(res.result.file_path, {
  11. method: 'get',
  12. responseType: 'arraybuffer',
  13. })
  14. .then(function (res) {
  15. if (res.status !== 200) {
  16. return res.json()
  17. }
  18. return res.arrayBuffer()
  19. })
  20. .then((blobRes) => {
  21. // 生成 Blob 对象,设置 type 等信息
  22. const e = new Blob([blobRes], {
  23. type: 'application/octet-stream',
  24. 'Content-Disposition': 'attachment'
  25. })
  26. // 将 Blob 对象转为 url
  27. const link = window.URL.createObjectURL(e)
  28. let a = document.createElement('a');
  29. a.href = link;
  30. a.download = res.result.file_name;
  31. a.click();
  32. }).catch(err => {
  33. console.error(err)
  34. })
  35. });
  36. },
  37. method:{
  38. }
  39. };
  40. </script>