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