研发图纸文件管理系统-前端项目
he wei
2023-02-17 4a2f97341543fee54dbe65b3cb6eef64bf74ea2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import axios from "@/assets/axios";
 
/**
 * 文件下载
 * @returns 
 */
export const downLoadFileByFilePath = (filePath) => {
  return axios({
    method: "GET",
    url: "bomFeedbak/downLoadFileByFilePath",
    params: { filePath },
    responseType: "blob"
  })
}