nurseWeChatAppletUI/api/Personal/Personal.js

17 lines
344 B
JavaScript
Raw Permalink Normal View History

2023-01-12 16:16:36 +08:00
import request from "../request.js"
2023-02-24 14:35:29 +08:00
export function appPersonal(patientId) {
return request({
url: `/nurseApp/login/appPersonal?patientId=${patientId}`,
method: 'GET'
})
}
2023-03-02 11:22:01 +08:00
//邀请
export function inviteFriends(patientId) {
return request({
url: `/nurseApplet/patientInfo/inviteFriends?inviteId=${patientId}`,
method: 'post'
})
}