平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 line
525 B

  1. import http from '@/http/api.js'
  2. // 获取监控分组
  3. export const groupList = (params) => {
  4. return http.request({
  5. url: '/api/business/cameraGroup/getNoPageList',
  6. method: 'get',
  7. params
  8. })
  9. }
  10. // 获取监控列表
  11. export const list = (params) => {
  12. return http.request({
  13. url: '/api/business/cameraInfo/getPageList',
  14. method: 'get',
  15. params
  16. })
  17. }
  18. // 停止视频流获取
  19. export const stopUrl = (params) => {
  20. return http.request({
  21. url: '/api/business/deviceApi/getStopVideoLive',
  22. method: 'get',
  23. params
  24. })
  25. }