支持多包裹快递展示物流信息

This commit is contained in:
15386982806
2024-01-10 18:56:18 +08:00
parent 7148b32c43
commit 2d0b78af52
3 changed files with 41 additions and 3 deletions

View File

@@ -319,3 +319,12 @@ export function reBuy(sn) {
params,
});
}
// 查看包裹列表
export function getPackage(orderSn) {
return http.request({
url: `/order/order/getPackage/${orderSn}`,
method: Method.GET,
needToken: true,
});
}