From 66244bdc2eef86222f3dc9abb9480d1baadd0722 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 19 Aug 2021 17:13:41 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/zhba_regulatory

---
 src/api/index/index.js |   45 +++++++++++++++++++++++++++++++--------------
 1 files changed, 31 insertions(+), 14 deletions(-)

diff --git a/src/api/index/index.js b/src/api/index/index.js
index e48484f..1f9bb78 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -19,27 +19,28 @@
     method: "get"
   });
 };
-export const getLiveLocationVoList = (params) => {
+export const getLiveLocationVoList = params => {
   return request({
     url: "/api/liveLocation/getLiveLocationVoList",
     method: "get",
     params: params
   });
 };
+// 获取辖区列表
 export const lazyTreeJu = () => {
   return request({
     url: "/api/information/lazyTreeJu",
     method: "post"
   });
 };
-export const noholderNum = (params) => {
+export const noholderNum = params => {
   return request({
     url: "/api/information/selectInCount",
     method: "post",
     params: params
   });
 };
-export const noSocialSecurity = (params) => {
+export const noSocialSecurity = params => {
   return request({
     url: "/api/information/selectCs",
     method: "post",
@@ -49,31 +50,31 @@
 export const selectFj = () => {
   return request({
     url: "/api/information/selectFj",
-    method: "post",
+    method: "post"
   });
 };
-export const selectBx = (params) => {
+export const selectBx = params => {
   return request({
     url: "/api/information/selectBx",
     method: "post",
     params: params
   });
 };
-export const selectExtype = (params) => {
+export const selectExtype = params => {
   return request({
     url: "/api/information/selectExtype",
     method: "post",
     params: params
   });
 };
-export const seCountUg = (params) => {
+export const seCountUg = params => {
   return request({
     url: "/api/information/seCountUg",
     method: "post",
     params: params
   });
 };
-export const seCountI = (params) => {
+export const seCountI = params => {
   return request({
     url: "/api/information/seCountI",
     method: "post",
@@ -83,11 +84,27 @@
 export const selectExtypeUser = () => {
   return request({
     url: "/api/information/selectExtypeUser",
-    method: "post",
+    method: "post"
   });
 };
-
- 
-
-
-
+// 资格审查异常人员清单
+export const qualificationPages = () => {
+  return request({
+    url: "/api/blade-user/pages",
+    method: "get"
+  });
+};
+// 监管处罚数量
+export const selectCf = () => {
+  return request({
+    url: "/api/information/selectCf",
+    method: "post"
+  });
+};
+// 公司材料不全数量
+export const selectCl = () => {
+  return request({
+    url: "/api/information/selectCl",
+    method: "post"
+  });
+};

--
Gitblit v1.9.3