forked from drone/command-center-dashboard

罗广辉
2025-04-07 da2a4e58ecc7c5da0a3ec726708a16c21e7f60e3
src/api/home/common.js
@@ -3,7 +3,7 @@
// 字典查询 行业 算法 工单类型
export const getDictionary = params => {
   return request({
      url: `/blade-system/dict-biz/listByCodes?code=${params}`,
      url: `/blade-system/dict-biz/listByCodes?codes=${params}`,
      method: 'get',
   })
}
@@ -11,9 +11,9 @@
// 区域
export const deptsByAreaCode = params => {
   return request({
      url: `/blade-system/dept/deptsByAreaCode`,
      url: `/blade-system/dept/deptsByAreaCode?areaCode=${params}`,
      method: 'get',
      params,
      params: {},
   })
}
@@ -25,3 +25,11 @@
      params,
   })
}
// 获取天气建议
export const getDroneSuggest = params => {
   return request({
      url: `/drone-device-core/dp/home/getDroneSuggest`,
      method: 'get',
      params,
   })
}