forked from drone/command-center-dashboard

chenyao
2025-04-03 195c32c2280c0d4e9288b1c7d31603a3a819ac2e
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: {},
   })
}