feat: 代客下单更新,修复店铺列表编辑展示问题

This commit is contained in:
2025-03-04 10:34:19 +08:00
parent b71ca19c0d
commit bd59f05d26
19 changed files with 953 additions and 312 deletions

View File

@@ -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
});
},
};