xinelu-applet-ui/api/pagesB/disease/index.js
2023-09-22 11:08:14 +08:00

9 lines
188 B
JavaScript

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