NurseStationApp/api/startup/index.js

8 lines
211 B
JavaScript
Raw Normal View History

2022-11-23 16:41:09 +08:00
import request from "../request.js"
export function getExistPatientByPatientId(patientId) {
return request({
url: `/nurseApplet/login/getExistPatientByPatientId?patientId=${patientId}`,
method: 'GET'
})
}