17 lines
376 B
JavaScript
17 lines
376 B
JavaScript
import request from "../request.js"
|
|
|
|
//健康咨询
|
|
export function selectDepartment() {
|
|
return request({
|
|
url: `/nurseApp/healthConsultation/selectDepartment`,
|
|
method: 'GET'
|
|
})
|
|
}
|
|
|
|
//人员
|
|
export function selectHospitalPerson(departmentId) {
|
|
return request({
|
|
url: `/nurseApp/healthConsultation/selectHospitalPerson?departmentId=${departmentId}`,
|
|
method: 'GET'
|
|
})
|
|
} |