修改增加部分api

This commit is contained in:
2024-10-09 17:33:01 +08:00
parent 2b9aacdf73
commit f700096359
3 changed files with 14 additions and 2 deletions

View File

@@ -319,3 +319,15 @@ export function $changeUseType(data) {
}
});
}
// 退款
export function $returnOrder(data) {
return request({
url: '/api/place/returnOrder',
method: "post",
data:{
shopId: uni.getStorageSync("shopId"),
...data
}
});
}