1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div>
- </div>
- </template>
-
- <script>
- export default {
- layout: "blank_layout",
- created(){
- this.$axios.get("/api/bxh/pdf", { params:{project_id: +this.$route.params.id}}).then((res) => {
- fetch(res.result.file_path, {
- method: 'get',
- responseType: 'arraybuffer',
- })
- .then(function (res) {
- if (res.status !== 200) {
- return res.json()
- }
- return res.arrayBuffer()
- })
- .then((blobRes) => {
- // 生成 Blob 对象,设置 type 等信息
- const e = new Blob([blobRes], {
- type: 'application/octet-stream',
- 'Content-Disposition': 'attachment'
- })
- // 将 Blob 对象转为 url
- const link = window.URL.createObjectURL(e)
- let a = document.createElement('a');
- a.href = link;
- a.download = res.result.file_name;
- a.click();
- }).catch(err => {
- console.error(err)
- })
- });
- },
- method:{
- }
- };
- </script>
|