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