| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { http } from '@/utils/http/axios';
- // 问题类型接口1:AI检测
- export const getAIList = () => {
- return http.request({
- url: '/admin/algo/queryAlgoInfo',
- method: 'get',
- });
- };
- // 问题类型接口2:人工上报
- export const getManualList = () => {
- return http.request({
- url: '/admin/issueManage/getIssueTypeList',
- method: 'get',
- });
- };
- // 地点获取接口:获取问题单地点列表(现为从公司-车间-工位-相机树中提取)
- export const getWorkLocationList = () => {
- return http.request({
- url: '/admin/cameraPreview/queryCameraTree',
- method: 'get',
- });
- };
- // AI问题类型(issueMainType-issueType)
- export const getAIMainList = () => {
- return http.request(
- {
- url: '/issue/getIssueSubTypeList',
- method: 'get',
- },
- {
- isShowErrorMessage: false,
- },
- );
- };
|