随笔分类 -  vue

摘要:使用vue-pdf@4.3.0控制台报错 1、在node_modules中找到vue-pdf,src下的pdfjsWrapper.js 具体原因是191行 if ( pdfRender !== null ) { if ( canceling ) return; canceling = true; p 阅读全文
posted @ 2026-01-08 15:02 黄橙 阅读(30) 评论(0) 推荐(0)
摘要:<template> <button @click="exportExcel">导出Excel</button> </template> <script> import XLSX from 'xlsx'; export default { methods: { exportExcel() { // 阅读全文
posted @ 2024-03-25 16:46 黄橙 阅读(960) 评论(0) 推荐(0)
摘要:把返回类型(responseType: 'blob')写在接口定义的地方 studentchargeitemExport(params) { return axios({ url: `/charge-system/cs/cost/studentchargeitem/export`, response 阅读全文
posted @ 2023-02-13 10:16 黄橙 阅读(73) 评论(0) 推荐(0)
摘要:RequestHttp.POST( "/charge/cost/sign/downLoadZip", para, "", `arraybuffer` //一定要写 ) .then(res => { console.info(res); var blob = new Blob([res.data], 阅读全文
posted @ 2023-02-13 10:16 黄橙 阅读(86) 评论(0) 推荐(0)