From 8afb1cbbeeccc488b43d33da8ca83f4e3ff1f2b4 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 08 Feb 2023 16:50:20 +0800
Subject: [PATCH] 视频监控树结构更改,地图添加影像服务
---
src/api/dept/index.js | 175 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 170 insertions(+), 5 deletions(-)
diff --git a/src/api/dept/index.js b/src/api/dept/index.js
index ae52282..89e4cb7 100644
--- a/src/api/dept/index.js
+++ b/src/api/dept/index.js
@@ -2,11 +2,11 @@
* @Author: shuishen 1109946754@qq.com
* @Date: 2022-11-30 15:18:29
* @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2022-12-05 15:23:32
+ * @LastEditTime: 2023-02-03 11:50:17
* @FilePath: \srs-police-affairs\src\api\dept\index.js
- * @Description:
- *
- * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved.
+ * @Description:
+ *
+ * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved.
*/
import request from "@/router/axios.js"
@@ -146,4 +146,169 @@
infos,
}
})
-}
\ No newline at end of file
+}
+
+// 小区树形数据
+export const getPoliceStationLazyTree = (type, id) => {
+ return request({
+ url: `/api/policeStationInfo/policeStationInfo/getPoliceStationLazyTree`,
+ method: 'get',
+ params: {
+ type,
+ id
+ }
+ })
+}
+
+// 小区树形数据
+export const getPoliceStationTrees = (params) => {
+ return request({
+ url: `/api/policeStationInfo/policeStationInfo/getPoliceStationTrees`,
+ method: 'get',
+ params: {
+ ...params
+ }
+ })
+}
+
+// 转id
+export const getAoiByBgId = (bg_id) => {
+ return request({
+ url: `/sf3d/area/getAoiByBgId`,
+ method: 'get',
+ requestBaseUrl: 'fengt',
+ params: {
+ bg_id,
+ adcode: 361102,
+ type: 0
+ }
+ })
+}
+
+// 责任民警所属辖区
+export const getVillageInfo = (aoiId) => {
+ return request({
+ url: `/api/villageInfo/villageInfo/details`,
+ method: 'get',
+ params: {
+ aoiId
+ }
+ })
+}
+
+// 派出所默认展示小区
+export const getPoliceSationVillageInfo = (deptId) => {
+ return request({
+ url: `/api/villageInfo/villageInfo/details`,
+ method: 'get',
+ params: {
+ deptId
+ }
+ })
+}
+
+// 户籍人口、重点人口信息
+export const getVillagePersonStatisticInfoByBuildId = (buildId) => {
+ return request({
+ url: `/api/villagePersonInfo/villagePersonInfo/getVillagePersonStatisticInfoByBuildId`,
+ method: 'get',
+ params: {
+ buildId
+ }
+ })
+}
+
+// 户籍人口、重点人口信息
+export const getVillagePersonInfo = (resBusId, buildId, status, current, realName, phone) => {
+ return request({
+ url: `/api/villagePersonInfo/villagePersonInfo/page`,
+ method: 'get',
+ params: {
+ resBusId,
+ buildId,
+ status,
+ current,
+ realName,
+ phone
+ }
+ })
+}
+
+// 获取各个派出所的人口数量,以及人口总数和重点人员数量
+export const getVillagePersonStatisticInfo = () => {
+ return request({
+ url: `/api/villagePersonInfo/villagePersonInfo/getVillagePersonStatisticInfo`,
+ method: 'get',
+ })
+}
+
+/**
+ * @description: 获取首页重点人员的数据
+ * @param {*} params
+ * @return {*}
+ */
+export const getPersonInfo = (params) => {
+ return request({
+ url: '/api/villagePersonInfo/villagePersonInfo/keyPersonnelCount',
+ method: 'get',
+ params: {
+ ...params,
+ }
+ })
+}
+
+
+/**
+ * @description: 获取首页重点人员列表信息
+ * @param {*} params
+ * @return {*}
+ */
+export const getPersonInfoPage = (params) => {
+ return request({
+ url: '/api/villagePersonInfo/villagePersonInfo/page',
+ method: 'get',
+ params: {
+ ...params,
+ }
+ })
+}
+
+// 获取对应id下的派出所的责任区人口
+export const getVillagePersonStatisticInfoByPoliceStationId = (id, name) => {
+ return request({
+ url: `/api/villagePersonInfo/villagePersonInfo/getVillagePersonStatisticInfoByPoliceStationId`,
+ method: 'get',
+ params: {
+ id,
+ name
+ }
+ })
+}
+
+// 获取该责任区下的人员列表信息
+export const getAreaPage = (current, areaId, policeName, phone, size) => {
+ return request({
+ url: `/api/policeStationInfo/policeStationInfo/getAreaPage`,
+ method: 'get',
+ params: {
+ current,
+ areaId,
+ policeName,
+ phone,
+ size
+ }
+ })
+}
+
+
+// 获取现有房屋
+export const getHouseStatisticInfo = (deptId, isFollow) => {
+ return request({
+ url: `/api/houseStatistic/houseStatistic/getHouseStatisticInfo`,
+ method: 'get',
+ params: {
+ deptId,
+ isFollow
+ }
+ })
+}
--
Gitblit v1.9.3