si-yb-util.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import request from '../../utils/request'
  2. // 查询下拉小科室
  3. export function selectSmallDept(data) {
  4. return request({
  5. url: '/ybUtil/selectSmallDept',
  6. method: 'post',
  7. data,
  8. })
  9. }
  10. // 查询下拉医生
  11. export function selectDoctor(data) {
  12. return request({
  13. url: '/ybUtil/selectDoctor',
  14. method: 'post',
  15. data,
  16. })
  17. }
  18. // 查询下拉所有小科室
  19. export function selectAllSmallDept(data) {
  20. return request({
  21. url: '/ybUtil/selectAllSmallDept',
  22. method: 'post',
  23. data,
  24. })
  25. }
  26. // 查询下拉所有医生(关联所属科室联动查询,没有科室查询所有医生)
  27. export function selectAllDoctor(data) {
  28. return request({
  29. url: '/ybUtil/selectAllDoctor',
  30. method: 'post',
  31. data,
  32. })
  33. }
  34. // 查询下拉所有小科室
  35. export function selectAllDept(data) {
  36. return request({
  37. url: '/ybUtil/selectAllDept',
  38. method: 'post',
  39. data,
  40. })
  41. }
  42. // 查询下拉所有号别数据
  43. export function selectAllRegLevel(data) {
  44. return request({
  45. url: '/ybUtil/selectAllRegLevel',
  46. method: 'post',
  47. data,
  48. })
  49. }