NurseStationApp/api/userdata/index.js
2022-10-13 16:06:57 +08:00

12 lines
207 B
JavaScript

import request from "../request.js"
export function getRegisterPatientInfo(patientId) {
return request({
url: `/nurseApplet/login/getRegisterPatientInfo?patientId=${patientId}`,
method: 'GET'
})
}