feat:【system】地区管理:100%
This commit is contained in:
19
src/api/system/area/index.ts
Normal file
19
src/api/system/area/index.ts
Normal 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}`)
|
||||
}
|
||||
Reference in New Issue
Block a user