添加预约时间

This commit is contained in:
2025-05-17 15:15:11 +08:00
parent 7ae003c61f
commit cdf7e721c5
7 changed files with 101 additions and 39 deletions

View File

@ -66,6 +66,7 @@ export function getVerifyLists(data) {
params: data,
});
}
// 核销详情
export function verification(data) {
return request.post("order/verification", data);
@ -75,11 +76,18 @@ export function verification(data) {
export function verificationConfirm(data) {
return request.post("order/verificationConfirm", data);
}
//确认收货组件
export function getwxReceiveDetail(params) {
return request.get("order/wxReceiveDetail", { params });
}
//查询确认收货
export function getwechatSyncCheck(params) {
return request.get("order/wechatSyncCheck", { params });
}
// 店铺预约时间
export function yuyueTime(data) {
return request.post("order/yuyueTime", data)
}