import request from '@/axios' // 字典查询 行业 算法 工单类型 export const getDictionary = params => { return request({ url: `/blade-system/dict-biz/listByCodes?code=${params}`, method: 'get', }) } // 区域 export const deptsByAreaCode = params => { return request({ url: `/blade-system/dept/deptsByAreaCode`, method: 'get', params, }) } // 获取机场信息 export const getDockInfo = params => { return request({ url: `/drone-device-core/dp/home/getDockInfo`, method: 'get', params, }) }