修改小问题
This commit is contained in:
+4
-4
@@ -1,7 +1,7 @@
|
||||
import type { DisasterType } from '@/types/common/DisasterType.ts'
|
||||
import { getSm2PublicKey } from './crypto'
|
||||
import { getBasePoins as getHiddenDangerBasePoints, getPointDetailById as getHiddenDangerPointDetailById} from './hidden-danger-spots'
|
||||
import { getBasePoins as getRiskBasePoints, getPointDetailById as getRiskPointDetailById} from './risk-spots'
|
||||
import { getBasePoints as getHiddenDangerBasePoints, getPointDetailById as getHiddenDangerPointDetailById} from './hidden-danger-spots'
|
||||
import { getBasePoints as getRiskBasePoints, getPointDetailById as getRiskPointDetailById} from './risk-spots'
|
||||
import { getBasePoints as getHospitalsBasePoints, getPointDetailById as getHospitalsPointDetailById} from './hospitals'
|
||||
import { getBasePoints as getDangerousSourceBasePoints, getPointDetailById as getDangerousSourcePointDetailById} from './dangerous-source'
|
||||
import { getBasePoints as getEmergencyShelterBasePoints, getPointDetailById as getEmergencyShelterPointDetailById} from './emergency-shelter'
|
||||
@@ -45,7 +45,7 @@ export const $api = {
|
||||
* @param disasterType - 灾害类型
|
||||
* @returns 隐患点数据数组
|
||||
*/
|
||||
getBasePoins: (disasterType: DisasterType): Promise<ApiResponse<XianHiddenDangerSpots[]>> => getHiddenDangerBasePoints(disasterType),
|
||||
getBasePoints: (disasterType: DisasterType): Promise<ApiResponse<XianHiddenDangerSpots[]>> => getHiddenDangerBasePoints(disasterType),
|
||||
|
||||
/**
|
||||
* 根据id获取隐患点详情
|
||||
@@ -61,7 +61,7 @@ export const $api = {
|
||||
* 获取所有基础风险点
|
||||
* @returns 风险点数据数组
|
||||
*/
|
||||
getBasePoins: (): Promise<ApiResponse<XianRiskSpots[]>> => getRiskBasePoints(),
|
||||
getBasePoints: (): Promise<ApiResponse<XianRiskSpots[]>> => getRiskBasePoints(),
|
||||
|
||||
/**
|
||||
* 根据id获取风险点详情
|
||||
|
||||
@@ -8,7 +8,7 @@ import httpInstance from "@/utils/request/http"
|
||||
* @param disasterType - 灾害类型
|
||||
* @returns 隐患点数据数组
|
||||
*/
|
||||
export const getBasePoins = (disasterType: DisasterType): Promise<ApiResponse<XianHiddenDangerSpots[]>> => {
|
||||
export const getBasePoints = (disasterType: DisasterType): Promise<ApiResponse<XianHiddenDangerSpots[]>> => {
|
||||
return httpInstance.get('/hidden-danger-spots/base-points', {
|
||||
params: {
|
||||
disasterType
|
||||
|
||||
@@ -6,7 +6,7 @@ import httpInstance from "@/utils/request/http"
|
||||
* 获取风险点基础数据
|
||||
* @returns 风险点数据数组
|
||||
*/
|
||||
export const getBasePoins = (): Promise<ApiResponse<XianRiskSpots[]>> => {
|
||||
export const getBasePoints = (): Promise<ApiResponse<XianRiskSpots[]>> => {
|
||||
return httpInstance.get('/risk-spots/base-points')
|
||||
}
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
// 获取钩子函数
|
||||
const { field, getDisasterIcon } = useHiddenPoint();
|
||||
|
||||
$api.hiddenDangerSpots.getBasePoins(props.disasterType).then((res) => {
|
||||
$api.hiddenDangerSpots.getBasePoints(props.disasterType).then((res) => {
|
||||
baseHiddenPoints.value = res.data;
|
||||
});
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
// 获取钩子函数
|
||||
const { informationBoxTitle, field, getDisasterIcon } = useRiskPoint();
|
||||
|
||||
$api.riskSpots.getBasePoins().then((res) => {
|
||||
$api.riskSpots.getBasePoints().then((res) => {
|
||||
riskPoints.value = res.data;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user