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

@@ -3,7 +3,7 @@ import request from '@/utils/request'
interface LoginParamsType {
name?: string // 姓名
email: string // 邮箱
password: string // 密码
password?: string // 密码
operationType: 'REGISTER' | 'LOGIN' | 'FORGET_PWD'
verifyCode?: string // 验证码
}

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