From 9a1a448d6bc80cb085e64f7117b2dfd53eceb779 Mon Sep 17 00:00:00 2001
From: zhengpz <1838927346@qq.com>
Date: Mon, 30 Aug 2021 10:26:50 +0800
Subject: [PATCH] Merge branch 'master' of http://s16s652780.51mypc.cn:49896/r/zhba_regulatory
---
src/api/index/index.js | 139 +++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 130 insertions(+), 9 deletions(-)
diff --git a/src/api/index/index.js b/src/api/index/index.js
index 56e5eed..225c952 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -2,22 +2,143 @@
// http://2h3f861221.wicp.vip:58646/information/SelectCount
export const securityTotal = () => {
return request({
- url: "http://2h3f861221.wicp.vip:58646/information/SelectCount",
+ url: "/api/information/SelectCount",
method: "post"
});
};
export const holderNum = () => {
return request({
- url: "http://2h3f861221.wicp.vip:58646/information/SelectCounthold",
+ url: "/api/information/SelectCounthold",
method: "post"
});
};
export const securityPer = () => {
- return request({
- url: "http://2h3f861221.wicp.vip:58646/performance/queryYearPer",
- method: "get"
- });
- };
-
-
+ return request({
+ url: "/api/performance/queryYearPer",
+ method: "get"
+ });
+};
+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 => {
+ return request({
+ url: "/api/information/selectInCount",
+ method: "post",
+ params: params
+ });
+};
+export const noSocialSecurity = params => {
+ return request({
+ url: "/api/information/selectCs",
+ method: "post",
+ params: params
+ });
+};
+export const selectFj = () => {
+ return request({
+ url: "/api/information/selectFj",
+ method: "post"
+ });
+};
+export const selectBx = params => {
+ return request({
+ url: "/api/information/selectBx",
+ method: "post",
+ params: params
+ });
+};
+export const selectExtype = params => {
+ return request({
+ url: "/api/information/selectExtype",
+ method: "post",
+ params: params
+ });
+};
+export const seCountUg = params => {
+ return request({
+ url: "/api/information/seCountUg",
+ method: "post",
+ params: params
+ });
+};
+export const seCountI = params => {
+ return request({
+ url: "/api/information/seCountI",
+ method: "post",
+ params: params
+ });
+};
+export const selectExtypeUser = () => {
+ return request({
+ url: "/api/information/selectExtypeUser",
+ method: "post"
+ });
+};
+// 资格审查异常人员清单
+export const qualificationPages = params => {
+ return request({
+ url: "/api/blade-user/pages",
+ method: "get",
+ params: params
+ });
+};
+// 监管处罚数量
+export const selectCf = params => {
+ return request({
+ url: "/api/information/selectCf",
+ method: "post",
+ params: params
+ });
+};
+// 监管处罚公司清单
+export const punishList = params => {
+ return request({
+ url: "/api/punish/page",
+ method: "get",
+ params: params
+ });
+};
+// 公司材料不全数量
+export const selectCl = () => {
+ return request({
+ url: "/api/information/selectCl",
+ method: "post"
+ });
+};
+// 有名无实
+export const selectYs = params => {
+ return request({
+ url: "/api/information/selectYs",
+ method: "post",
+ params: params
+ });
+};
+// 经营不善
+export const selectJy = params => {
+ return request({
+ url: "/api/information/selectJy",
+ method: "post",
+ params: params
+ });
+};
+// 违规经营
+export const selectWg = params => {
+ return request({
+ url: "/api/information/selectWg",
+ method: "post",
+ params: params
+ });
+};
--
Gitblit v1.9.3