无人机管理后台前端(已迁走)
chenyao
2025-09-17 92af1d75c0e194bbe52faeb3eca3ca79ccca5b2a
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',
   })
}