From fd1274d07f1e68ed28bdb08bd95e5bb27c4e2da1 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Sun, 25 Jun 2023 14:24:23 +0800
Subject: [PATCH] git无法使用期间修改……
---
src/api/home/index.js | 50 +++++++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 47 insertions(+), 3 deletions(-)
diff --git a/src/api/home/index.js b/src/api/home/index.js
index 91ad0d8..3c78192 100644
--- a/src/api/home/index.js
+++ b/src/api/home/index.js
@@ -25,14 +25,15 @@
* @param {*}
* @returns
*/
-export const getSchedulingList = (current, size, params) => {
+// export const getSchedulingList = (current, size, params) => {
+export const getSchedulingList = (params) => {
return request({
url: `/api/scheduling/scheduling/page`,
method: 'get',
params: {
...params,
- current: current,
- size: size
+ // current: current,
+ // size: size
}
})
}
@@ -197,4 +198,47 @@
})
}
+//实有房屋统计
+export const getVillageStatisticData = (params) => {
+ return request({
+ url: `/api/villageDetail/villageDetail/getVillageStatisticData`,
+ method: 'get',
+ params: params
+ })
+}
+//实有房屋统计--详情
+export const getVillageStatisticDetail = (params) => {
+ return request({
+ url: `/api/villageDetail/villageDetail/page`,
+ method: 'get',
+ params: params
+ })
+}
+
+//关注场所统计
+export const getPlaceOfConcernStatisticData = (params) => {
+ return request({
+ url: `/api/placeOfConcern/placeOfConcern/getPlaceOfConcernStatisticData`,
+ method: 'get',
+ params: params
+ })
+}
+
+//关注场所统计--详情
+export const getPlaceOfConcernStatisticDetail = (params) => {
+ return request({
+ url: `/api/placeOfConcern/placeOfConcern/page`,
+ method: 'get',
+ params: params
+ })
+}
+
+//实有住宅和关注场所统计总数
+export const getVillageDetailAndPlaceStatisticNumber = (params) => {
+ return request({
+ url: `/api/placeOfConcern/placeOfConcern/getVillageDetailAndPlaceStatisticNumber`,
+ method: 'get',
+ params: params
+ })
+}
--
Gitblit v1.9.3