沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
提交 | 用户 | 时间
314507 1 import request from '@/config/axios'
H 2
3 // 获得地区树
4 export const getAreaTree = async () => {
5   return await request.get({ url: '/system/area/tree' })
6 }
7
8 // 获得 IP 对应的地区名
9 export const getAreaByIp = async (ip: string) => {
10   return await request.get({ url: '/system/area/get-by-ip?ip=' + ip })
11 }