futian.liu
2023-12-09 09ff6c03b1d1b89fe08b7354ac936b7c81e5a3aa
1
2
3
4
5
6
7
8
9
10
11
 
import request from '@/utils/request';
// 物品查询导出
export function doExport(params) {
    return request({
        url: '/pc/fin/warehouse/ledger/getDeptListExport',
        responseType: 'blob', // 指定响应数据类型为Blob
        method: 'post',
        params,
    });
}