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

9 lines
191 B
JavaScript

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