index.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import {
  2. apiResquest,
  3. apiResquestForm,
  4. apiResquestJsonList,
  5. apiResquestFormVideo,
  6. apiResquestTimer
  7. } from '@/api/request/request.js'
  8. //气瓶选择分页
  9. export const airbottleNewQpAppletBottlePage = (data) => {
  10. return apiResquest({
  11. url: '/airbottle-new/qp/applet/bottle/page',
  12. method: 'POST',
  13. data: data,
  14. })
  15. };
  16. //实验室选择分页
  17. export const airbottleNewQpAppletBottleSubjectsPage = (data) => {
  18. return apiResquest({
  19. url: '/airbottle-new/qp/applet/bottle/subjects/page',
  20. method: 'POST',
  21. data: data,
  22. })
  23. };
  24. //气瓶详情
  25. export const airbottleNewQpAppletBottleDetail = (data) => {
  26. return apiResquest({
  27. url: '/airbottle-new/qp/applet/bottle/detail',
  28. method: 'GET',
  29. data: data,
  30. })
  31. };
  32. //气瓶字典查询
  33. export const airBottleNewQpDictList = (data) => {
  34. return apiResquest({
  35. url: '/airbottle-new/qp/dict/list',
  36. method: 'GET',
  37. data: data,
  38. })
  39. };
  40. /*查询用户列表-下拉列表 - 无权限
  41. * userName : '', 名称
  42. * userType: '', 0.系统 1.老师 2.学生
  43. */
  44. export const systemUserSelectUser = (data) => {
  45. return apiResquest({
  46. url: '/system/user/dropList',
  47. method: 'POST',
  48. data: data,
  49. })
  50. };
  51. //查询学院列表
  52. export const getDeptDropList = (data) => {
  53. return apiResquest({
  54. url: '/system/dept/dropList',
  55. method: 'POST',
  56. data: data,
  57. })
  58. };
  59. //楼栋楼层
  60. export const systemBuildingGetTreeList = (data) => {
  61. return apiResquest({
  62. url: '/system/building/getTreeList',
  63. method: 'POST',
  64. data: data,
  65. })
  66. };