This commit is contained in:
曹辉 2023-03-09 15:28:33 +08:00
parent 21262d0eb3
commit d0f74e28e6

View File

@ -1,17 +1,17 @@
import request from "../request.js"
//健康咨询
export function selectDepartment() {
export function selectDepartment(pageNum,pageSize) {
return request({
url: `/nurseApp/healthConsultation/selectDepartment`,
url: `/nurseApp/healthConsultation/selectDepartment?pageNum=${pageNum}&pageSize=${pageSize}`,
method: 'GET'
})
}
//人员
export function selectHospitalPerson(departmentId) {
export function selectHospitalPerson(pageNum,pageSize,departmentId) {
return request({
url: `/nurseApp/healthConsultation/selectHospitalPerson?departmentId=${departmentId}`,
url: `/nurseApp/healthConsultation/selectHospitalPerson?pageNum=${pageNum}&pageSize=${pageSize}&departmentId=${departmentId}`,
method: 'GET'
})
}