This commit is contained in:
2024-10-08 10:56:44 +08:00
3 changed files with 167 additions and 53 deletions

View File

@@ -428,3 +428,14 @@ export function $changeUseType(data) {
}
});
}
//店铺订单支付获取链接
export function $getOrderPayUrl(data) {
return request({
url: '/api/shopPayApi/getOrderPayUrl',
method: "get",
params:{
shopId: localStorage.getItem("shopId"),
...data
}
});
}