service.js 391 B

123456789101112131415161718
  1. /**
  2. * @author Jacker
  3. * @date 2021-07-22 16:00
  4. */
  5. import request from '../../service/request';
  6. /*
  7. * 科室列表查询查询
  8. * @params
  9. * parentId string 父科室id
  10. * keyWord string 关键字
  11. * hospitalDistrictId 院区id
  12. * */
  13. // eslint-disable-next-line
  14. export const getDepartmentList = params => {
  15. const url = '/isvRequest.order.departmentList';
  16. return request.post(url, params);
  17. };