增加退款退菜功能

This commit is contained in:
2024-10-22 13:28:09 +08:00
parent 9593d8f906
commit 36d667326e
5 changed files with 254 additions and 10 deletions

View File

@@ -439,3 +439,14 @@ export function $getOrderPayUrl(data) {
}
});
}
//退款
export function $returnOrder(data) {
return request({
url: '/api/place/returnOrder',
method: "post",
data:{
shopId: localStorage.getItem("shopId"),
...data
}
});
}