显示学校

This commit is contained in:
wzy-warehouse
2026-04-21 20:56:25 +08:00
parent 89d6313542
commit 16d049d082
16 changed files with 326 additions and 8 deletions
+18
View File
@@ -7,6 +7,7 @@ import { getBasePoints as getDangerousSourceBasePoints, getPointDetailById as ge
import { getBasePoints as getEmergencyShelterBasePoints, getPointDetailById as getEmergencyShelterPointDetailById} from './emergency-shelter'
import { getBasePoints as getFirefighterBasePoints, getPointDetailById as getFirefighterPointDetailById} from './firefighter'
import { getBasePoints as getStorePointsBasePoints, getPointDetailById as getStorePointsPointDetailById} from './store-points'
import { getBasePoints as getSchoolsBasePoints, getPointDetailById as getSchoolsPointDetailById} from './schools'
import type { ApiResponse } from '@/types/ApiResponse'
import type { XianHiddenDangerSpots } from '@/types/base/XianHiddenDangerSpots'
import type { XianRiskSpots } from '@/types/base/XianRiskSpots'
@@ -15,6 +16,7 @@ import type { XianDangerousSource } from '@/types/base/XianDangerousSource'
import type { XianEmergencyShelter } from '@/types/base/XianEmergencyShelter'
import type { XianFirefighter } from '@/types/base/XianFirefighter'
import type { XianStorePoints } from '@/types/base/XianStorePoints'
import type { XianSchool } from '@/types/base/XianSchool'
/**
* API接口统一导出对象
@@ -142,4 +144,20 @@ export const $api = {
*/
getPointDetailById: (id: number): Promise<ApiResponse<XianStorePoints>> => getStorePointsPointDetailById(id),
},
// 学校信息
schools: {
/**
* 获取所有基础学校
* @returns 学校数据数组
*/
getBasePoints: (): Promise<ApiResponse<XianSchool[]>> => getSchoolsBasePoints(),
/**
* 根据id获取学校详情
* @param id - 学校id
* @returns 学校详情
*/
getPointDetailById: (id: number): Promise<ApiResponse<XianSchool>> => getSchoolsPointDetailById(id),
},
}
+20
View File
@@ -0,0 +1,20 @@
import type { ApiResponse } from "@/types/ApiResponse"
import type { XianSchool } from "@/types/base/XianSchool"
import httpInstance from "@/utils/request/http"
/**
* 获取学校基础数据
* @returns 学校数据数组
*/
export const getBasePoints = (): Promise<ApiResponse<XianSchool[]>> => {
return httpInstance.get('/school/base-points')
}
/**
* 根据id获取学校详情
* @param id - 学校id
* @returns 学校详情
*/
export const getPointDetailById = (id: number): Promise<ApiResponse<XianSchool>> => {
return httpInstance.get(`/school/point-detail/${id}`)
}