feat:【system】地区管理:100%

This commit is contained in:
YunaiV
2025-12-21 15:55:39 +08:00
parent 2d16080f03
commit aea01e4025

View File

@@ -0,0 +1,19 @@
import { http } from '@/http/http'
/** 地区信息 */
export interface Area {
id: number
name: string
parentId?: number
children?: Area[]
}
/** 获得地区树 */
export function getAreaTree() {
return http.get<Area[]>('/system/area/tree')
}
/** 获得 IP 对应的地区名 */
export function getAreaByIp(ip: string) {
return http.get<string>(`/system/area/get-by-ip?ip=${ip}`)
}