无人机管理后台前端(已迁走)
罗广辉
2025-10-11 02409bfbe15f22fc3b5dccadabfd860a660a49d9
src/api/dataCenter/dataCenter.js
@@ -81,3 +81,44 @@
        },
   })
}
// 获取机场下的文件夹
export const getJobIdsBySnApi = (params, dockSn) => {
   return request({
      url: `/drone-device-core/wayline/api/v1/workspaces/getJobIdsBySn`,
      method: 'get',
      params,
      customize: params.areaCode
   })
}
// 附件下载
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,
   })
}
// 收藏
export const starAdd = (data) => {
   return request({
      url: `/blade-resource/attach/favorite`,
      method: 'post',
      data
   })
}
// 取消收藏
export const cancelStar = (data) => {
   return request({
      url: `/blade-resource/attach/favorite/${data}`,
      method: 'delete',
   })
}