From 98091511a4fa958ae8d6c243fba27cc9f9bcb62d Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Wed, 10 Jun 2026 23:29:26 +0800
Subject: [PATCH] feat(map): 添加楼栋人数统计功能
---
src/api/dept/index.js | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/api/dept/index.js b/src/api/dept/index.js
index 5a3f3e2..3a2742e 100644
--- a/src/api/dept/index.js
+++ b/src/api/dept/index.js
@@ -319,6 +319,17 @@
})
}
+// 楼栋人数统计
+export const getBuildingPersonStatistic = (params) => {
+ return request({
+ url: `/api/villagePersonInfo/villagePersonInfo/getBuildingPersonStatistic`,
+ method: 'get',
+ params: {
+ ...params
+ }
+ })
+}
+
// 户籍人口、重点人口信息
export const getVillagePersonInfo = (resBusId, buildId, status, current, realName, phone) => {
return request({
--
Gitblit v1.9.3