石广澎
2023-12-12 122f6d1db1e0af5ede6f96cd390f393e5f222e99
admin-web/src/api/exportExcel.js
@@ -4,7 +4,7 @@
export function outputExport(params) {
    return request({
        url: '/pc/l/wh/form/output/list/export',
        responseType: 'blob', // 指定响应数据类型为Blob
        // responseType: 'blob', // 指定响应数据类型为Blob
        method: 'get',
        params,
    });
@@ -47,3 +47,12 @@
        params,
    });
}
// 部门物品报废单导出
export function deptScrappedExport(params) {
    return request({
        url: '/pc/l/wh/form/scrapped/deptList/export',
        responseType: 'blob', // 指定响应数据类型为Blob
        method: 'get',
        params,
    });
}