From dc5c26bba870e2c8ab3b01ac1da8bf619c706bfe Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Mon, 22 Apr 2024 15:52:24 +0800
Subject: [PATCH] 用户登录修改
---
src/api/publicSecurity/ninePlaceManage.js | 29 ++++++++++++++++++++++++++++-
1 files changed, 28 insertions(+), 1 deletions(-)
diff --git a/src/api/publicSecurity/ninePlaceManage.js b/src/api/publicSecurity/ninePlaceManage.js
index 460ef4d..b73d693 100644
--- a/src/api/publicSecurity/ninePlaceManage.js
+++ b/src/api/publicSecurity/ninePlaceManage.js
@@ -27,10 +27,37 @@
}
// 隐患统计
-export const getYHTJList = (params) => {
+export const getYHTJList = (data) => {
return request({
url: "/api/blade-taskPlaceRectification/taskPlaceRectification/rectificationStatistics",
method: "post",
+ data
+ })
+}
+
+// 问题类型字典
+export const getPatrolGroupTree = (params) => {
+ return request({
+ url: "/api/patrol/patrolGroup/getPatrolGroupTree",
+ method: "get",
params
})
}
+
+// 九小类型字典
+export const getDictBizTree = (params) => {
+ return request({
+ url: "/api/blade-system/dict-biz/tree",
+ method: "get",
+ params
+ })
+}
+
+// 民警审核接口
+export const applyRectification = (data) => {
+ return request({
+ url: "/api/blade-taskPlaceRectification/taskPlaceRectification/applyRectification",
+ method: "post",
+ data
+ })
+}
\ No newline at end of file
--
Gitblit v1.9.3