xinelu-applet-ui/api/pages/myinformation/myinformation.js

17 lines
347 B
JavaScript
Raw Normal View History

2023-09-22 11:30:57 +08:00
import request from "../../request.js"
2023-09-22 11:08:14 +08:00
export function appPersonal(patientId) {
return request({
url: `/nurseApp/login/appPersonal?patientId=${patientId}`,
method: 'GET'
})
}
//邀请
export function inviteFriends(patientId) {
return request({
url: `/nurseApplet/patientInfo/inviteFriends?inviteId=${patientId}`,
method: 'post'
})
}