wangjuncheng
2025-04-21 036647fcdc936273e78597408ee3fba09534ffd8
src/api/index.js
@@ -40,6 +40,26 @@
   })
   return await response.json()
}
export async function getDevicetListData() {
   const response = await fetch("/json/综合监测设备信息.json", {
      mode: "cors",
      cache: "no-cache",
      headers: {
         "Content-Type": "application/json",
      },
   })
   return await response.json()
}
export async function getDistrictListData() {
   const response = await fetch("/json/隐患点信息.json", {
      mode: "cors",
      cache: "no-cache",
      headers: {
         "Content-Type": "application/json",
      },
   })
   return await response.json()
}
export async function getDistrictCount() {
   const response = await fetch("/json/北京市隐患点按区统计.json", {