NurseStationApp/api/disease/index.js

9 lines
188 B
JavaScript
Raw Normal View History

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