无人机管理后台前端(已迁走)
张含笑
2025-08-14 53b06d19ad96aab229f8ee43e9d2e67a53224ef1
src/api/dataCenter/dataCenter.js
@@ -2,7 +2,7 @@
// 列表接口
export const getaiImagesPageAPI = (data,params) => {
    return request({
      url: `/blade-resource//attach/attachmentsPage`,
      url: `/blade-resource/attach/attachmentsPage`,
      method: 'post',
      data,params
   })
@@ -35,6 +35,23 @@
      data
   })
}
// 查询下载状态
export const getDownloadStatusApi = (data) => {
   return request({
      url: `/blade-resource/attach/getDownloadStatus`,
      method: 'post',
      data
   })
}
// 取消下载
export const cancelDownloadApi = (data) => {
   return request({
      url: `/blade-resource/attach/cancelDownload`,
      method: 'post',
      data
   })
}
// 地图
export const getMapInfoAPI = (jobId) => {
    return request({
@@ -53,4 +70,14 @@
      method: 'post',
      params:data
   })
}
}
// 正射文件
export const getOrthoimageInfo = jobId => {
   return request({
      url: '/drone-odm/odmTaskInfo/odmTaskInfo/getOrthoimageInfo',
      method: 'get',
      params: {
         jobId,
        },
   })
}