2023-12-11
This commit is contained in:
@@ -34,5 +34,27 @@ export default {
|
||||
},
|
||||
|
||||
|
||||
// 获取配货列表
|
||||
distributionList: function(data) {
|
||||
return request({
|
||||
url: '/lpksreservoorder/orderListByStore',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
},
|
||||
|
||||
// 导出报表
|
||||
distributionExportExcel: function(data) {
|
||||
return request({
|
||||
url: '/lpksreservoorder/exportExcelByStore',
|
||||
method: 'post',
|
||||
responseType: 'blob', // 表明返回服务器返回的数据类型
|
||||
data: data,
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user