cross.js 858 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import { HcApi } from '../../request/index'
  2. export default {
  3. //获取分页
  4. async queryListData(form) {
  5. return HcApi({
  6. url: '/api/blade-manager/profiler/page',
  7. method: 'post',
  8. params: form,
  9. })
  10. },
  11. //查看详情
  12. async getOne(form) {
  13. return HcApi({
  14. url: '/api/blade-manager/profiler/getOne',
  15. method: 'get',
  16. params: form,
  17. })
  18. },
  19. //修改
  20. async edit(form) {
  21. return HcApi({
  22. url: '/api/blade-manager/profiler/edit',
  23. method: 'post',
  24. data: form,
  25. })
  26. },
  27. //查询测量人
  28. async getListUserName(form) {
  29. return HcApi({
  30. url: '/api/blade-manager/profiler/getListUserName',
  31. method: 'get',
  32. params: form,
  33. })
  34. },
  35. }