feat: 客户checkin

This commit is contained in:
zhangyh
2025-10-27 11:43:07 +08:00
parent 0fb4ca004a
commit 7155e5705d
6 changed files with 123 additions and 86 deletions

View File

@@ -98,3 +98,16 @@ export function getTryOnEffectStyleList(styleId: string | number) {
method: 'get',
})
}
interface CustomerInfo {
name: string
email: string
}
export const customerCheckin = (data: CustomerInfo) => {
return request({
url: '/api/customers/checkIn',
method: 'get',
params: data,
})
}