2023-12-11

This commit is contained in:
2023-12-11 15:59:45 +08:00
parent 8fc32205c4
commit fc6090f1c0
5 changed files with 421 additions and 81 deletions

View File

@@ -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'
}
});
},
}