客户档案加上打卡记录以及体重趋势图

This commit is contained in:
xiezhijun
2021-04-10 18:10:36 +08:00
parent fe7834e640
commit 78399c52e7
16 changed files with 802 additions and 150 deletions

View File

@ -60,3 +60,14 @@ export function getPunchLogDetail(id) {
params: {}
})
}
// 根据用户ID查询打卡日志详情
export function getAllPunchLogByCustomerId(query) {
return request({
url: '/custom/wxUserLog/getAllPunchLogByCustomerId',
method: 'get',
params: query
})
}