随笔分类 - vue
摘要:<template> <button @click="exportExcel">导出Excel</button> </template> <script> import XLSX from 'xlsx'; export default { methods: { exportExcel() { //
阅读全文
摘要:把返回类型(responseType: 'blob')写在接口定义的地方 studentchargeitemExport(params) { return axios({ url: `/charge-system/cs/cost/studentchargeitem/export`, response
阅读全文
摘要:RequestHttp.POST( "/charge/cost/sign/downLoadZip", para, "", `arraybuffer` //一定要写 ) .then(res => { console.info(res); var blob = new Blob([res.data],
阅读全文