2022-11-01 14:59:38 +08:00
|
|
|
import request from "../request.js"
|
|
|
|
|
export function appPersonal(patientId) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApp/login/appPersonal?patientId=${patientId}`,
|
|
|
|
|
method: 'GET'
|
|
|
|
|
})
|
2023-02-13 15:24:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//注销
|
|
|
|
|
export function accountCancellation(patientId) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApplet/login/accountCancellation?patientId=${patientId}`,
|
|
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|