Files
yudao-ui-admin-vben/src/api/system/area/index.ts
2023-07-29 18:46:43 +08:00

12 lines
292 B
TypeScript

import { defHttp } from '@/utils/http/axios'
// 获得地区树
export function getAreaTree() {
return defHttp.get({ url: '/system/area/tree' })
}
// 获得 IP 对应的地区名
export function getAreaByIp(ip: string) {
return defHttp.get({ url: `/system/area/get-by-ip?ip=${ip}` })
}