xinelu-applet-ui/api/pages/myinformation/myinformation.js
2023-09-22 15:07:20 +08:00

17 lines
347 B
JavaScript

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'
})
}