index.ts 333 B

1234567891011
  1. import request from '@/config/axios'
  2. // 获得地区树
  3. export const getAreaTree = async (id: number) => {
  4. return await request.get({ url: '/system/area/tree?id=' + id })
  5. }
  6. // 获得 IP 对应的地区名
  7. export const getAreaByIp = async (ip: string) => {
  8. return await request.get({ url: '/system/area/get-by-ip?ip=' + ip })
  9. }