feat: 代客下单更新,修复店铺列表编辑展示问题
This commit is contained in:
@@ -19,6 +19,22 @@ const Api = {
|
||||
data
|
||||
});
|
||||
},
|
||||
//正扫
|
||||
scanPay(data: any) {
|
||||
return request<any>({
|
||||
url: `${baseURL}/scanPay`,
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
},
|
||||
//会员支付
|
||||
vipPay(data: any) {
|
||||
return request<any>({
|
||||
url: `${baseURL}/vipPay`,
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
},
|
||||
//现金支付
|
||||
cashPay(data: any) {
|
||||
return request<any>({
|
||||
@@ -26,7 +42,15 @@ const Api = {
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
}
|
||||
},
|
||||
// 获取店铺订单支付URL
|
||||
orderPayUrl(params: any) {
|
||||
return request<any>({
|
||||
url: `${baseURL}/shopPayApi/orderPayUrl`,
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user