8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
import request from "../request.js"
|
|
export function appPersonal(patientId) {
|
|
return request({
|
|
url: `/nurseApp/login/appPersonal?patientId=${patientId}`,
|
|
method: 'GET'
|
|
})
|
|
}
|