无人机管理后台前端(已迁走)
张含笑
2025-08-15 e52521dc7a3e52cf53e2ab2b4e1c71cfe0b4a10d
src/api/dataCenter/dataCenter.js
@@ -81,3 +81,27 @@
        },
   })
}
// 获取机场下的文件夹
export const getJobIdsBySnApi = (params, dockSn) => {
   return request({
      url: `/drone-device-core/wayline/api/v1/workspaces/getJobIdsBySn`,
      method: 'get',
      params,
   })
}
// 附件下载
export const attachDownload = (data) => {
   return request({
      url: `/blade-resource/attach/download`,
      method: 'post',
      data
   })
}
// AI识别中心模块
export const aiImagesPage = data => {
   return request({
      url: `/blade-resource/attach/aiImagesPage?current=${data.current}&size=${data.size}`,
      method: 'post',
      data: data,
   })
}