alert.ts 542 B

1234567891011121314151617181920212223242526
  1. import { http } from '@/utils/http/axios';
  2. // 问题类型接口1:AI检测
  3. export const getAIList = () => {
  4. return http.request({
  5. url: '/cameraPreview/getAlgoList',
  6. method: 'get'
  7. });
  8. };
  9. // 问题类型接口2:人工上报
  10. export const getManualList = () => {
  11. return http.request({
  12. url: '/issue/getIssueTypeList',
  13. method: 'get'
  14. });
  15. };
  16. // 地点获取接口:获取问题单地点列表
  17. export const getWorkLocationList = () => {
  18. return http.request({
  19. url: '/issue/getSiteList',
  20. method: 'get'
  21. });
  22. };