You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
924 B
38 lines
924 B
import request from '@/axios'; |
|
// 月度仓储成本统计表接口 |
|
export const $_Getlist = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/list', |
|
method: 'get', |
|
params, |
|
}); |
|
}; |
|
|
|
// 获取仓库 |
|
export const $_getMyWarehouseList = params => { |
|
return request({ |
|
url: '/api/logpm-basicdata/warehouse/getMyWarehouseList', |
|
method: 'get', |
|
params, |
|
}); |
|
}; |
|
|
|
//月度仓储成本统计导出 |
|
export const $_expenseWarehouseMonth = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/export-expenseWarehouseMonth', |
|
method: 'get', |
|
params, |
|
responseType: 'blob' |
|
}); |
|
}; |
|
|
|
// 月度订单仓储成本明细列表 |
|
export const $_Monthlyorderwarehousing = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseOrderWarehouseMonth/list', |
|
method: 'get', |
|
params, |
|
}); |
|
}; |
|
|