NurseStationApp/api/Personal/Personal.js

17 lines
344 B
JavaScript
Raw Normal View History

2023-03-08 09:46:11 +08:00
import request from "../request.js"
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'
})
}