Files
ZhHealth/apis/interfaces/user.js
zhangmanman 1f45ed3e57 [档案]
2022-01-14 12:07:59 +08:00

28 lines
374 B
JavaScript

/**
* Web唐明明
* 匆匆数载恍如梦,岁月迢迢华发增。
* 碌碌无为枉半生,一朝惊醒万事空。
* moduleName: 用户
*/
import { request } from '../index'
// 用户
const info = () =>{
return request({
url: 'user'
})
}
// 我的档案
const records = () =>{
return request({
url: 'health/records'
})
}
export {
info,
records
}