index.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { apiResquest,apiResquestForm,apiResquestJsonList,apiResquestFormVideo,apiResquestTimer } from '@/api/request/request.js'
  2. //实验室-列表-获取学院列表下拉列表
  3. export const systemDeptDropList = (data) => {
  4. return apiResquest({
  5. url: `/system/dept/dropList`,
  6. method: 'POST',
  7. data: { ...data }
  8. })
  9. };
  10. //查询楼栋楼层
  11. export const laboratoryBigViewGetBuildByBigView = (data) => {
  12. return apiResquest({
  13. url: `/laboratory/bigView/getBuildByBigView`,
  14. method: 'GET',
  15. data: data,
  16. })
  17. };
  18. /*根据校区/楼栋/楼层查询实验室列表
  19. deptId:'校区查询'
  20. buildId:'楼栋查询'
  21. floorId:'楼层查询'
  22. */
  23. //实验室-列表
  24. export const laboratorySubRelInfoGetListByFloor = (data) => {
  25. return apiResquest({
  26. url: `/laboratory/subRelInfo/getListByFloor`,
  27. method: 'POST',
  28. data: { ...data }
  29. })
  30. };
  31. //根据学院id查询实验室列表
  32. export const laboratorySubRelInfoGetRelList = (data) => {
  33. return apiResquest({
  34. url: `/laboratory/subRelInfo/getRelList`,
  35. method: 'POST',
  36. data: { ...data }
  37. })
  38. };