代客下单增加用户扫描二维码支付

This commit is contained in:
2024-09-29 10:01:05 +08:00
parent b8e5751f30
commit e6e0ecced6
3 changed files with 80 additions and 12 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
}
});
}