毕设
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.0 KiB

1 year ago
// 通过患者ID查询患者详情
export function upload(params){
return uni.$u.http.post('/common/upload', params)
}
// 登录
export function userlogin(params){
return uni.$u.http.post('/login', params)
}
// 获取验证码
export function getSmsCode(params){
return uni.$u.http.get('/user/getSmsCode', params)
}
// 用户用户信息
export function userInfo(params){
return uni.$u.http.get('/getInfo', params)
}
// 患者列表
export function patientQuery(params){
return uni.$u.http.post('/patient/query', params)
}
// 查询统计数量
export function queryNum(params){
return uni.$u.http.post('/patient/queryNum', params)
}
// 新增患者
export function queryAdd(params){
return uni.$u.http.post('/patient/add', params)
}
// 新增患者
export function queryUpd(params){
return uni.$u.http.post('/patient/upd', params)
}
// 通过患者ID查询患者详情
export function queryById(params){
return uni.$u.http.post('/patient/queryById', params)
}
// 通过患者ID获取测评ID
export function patientRegist(params){
return uni.$u.http.post('/patient/regist', params)
}
// 评估结果查询
export function pgQuery(params){
return uni.$u.http.post('/evaluation/pg/query', params)
}
// 评估信息提交
export function pgSubmit(params){
return uni.$u.http.post('/evaluation/pg/submit', params)
}
// AD8结果查询
export function ad8Query(params){
return uni.$u.http.post('/evaluation/ad8/query', params)
}
// AD8信息提交
export function ad8Submit(params){
return uni.$u.http.post('/evaluation/ad8/submit', params)
}
// 登记详情接口
export function detailSubmit(params){
return uni.$u.http.post('/evaluation/detail/submit', params)
}
// 登记详情接口
export function detailQuery(params){
return uni.$u.http.post('/evaluation/detail/query', params)
}
// 提交签名
export function complete(params){
return uni.$u.http.post('/evaluation/complete', params)
}
// 查询签名
export function completeById(params){
return uni.$u.http.post('/evaluation/queryById', params)
1 year ago
}