From cc1c0a396698648256c350f6f0fe2cb2f0b02c7e Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Wed, 27 Mar 2024 15:44:10 +0800
Subject: [PATCH] 许可按钮放出,备案审批按钮放出
---
src/api/index/index.js | 94 ++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 89 insertions(+), 5 deletions(-)
diff --git a/src/api/index/index.js b/src/api/index/index.js
index 1f9bb78..ab8b2e1 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -87,18 +87,28 @@
method: "post"
});
};
-// 资格审查异常人员清单
-export const qualificationPages = () => {
+// 资格审查异常人员清单/现实表现差人员清单
+export const qualificationPages = params => {
return request({
url: "/api/blade-user/pages",
- method: "get"
+ method: "get",
+ params: params
});
};
// 监管处罚数量
-export const selectCf = () => {
+export const selectCf = params => {
return request({
url: "/api/information/selectCf",
- method: "post"
+ method: "post",
+ params: params
+ });
+};
+// 监管处罚公司清单
+export const punishList = params => {
+ return request({
+ url: "/api/punish/page",
+ method: "get",
+ params: params
});
};
// 公司材料不全数量
@@ -108,3 +118,77 @@
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
+ });
+};
+
+// 获取树形辖区
+export const lazyTrees = () => {
+ return request({
+ url: "/api/jurisdiction/lazy-trees",
+ method: "get"
+ });
+};
+// 各辖区单位统计情况模块表格接口
+export const getSecurityUnitInfoPage = params => {
+ return request({
+ url: "/api/information/getSecurityUnitInfoPage",
+ method: "get",
+ params: params
+ });
+};
+// 获取押运人员列表
+export const getSelectPeo = params => {
+ return request({
+ url: "/api/blade-user/selectPeo",
+ method: "get",
+ params: params
+ });
+};
+
+// 获取车辆列表
+export const getSelectCar = (param) => {
+ return request({
+ url: '/api/car/selectCar',
+ method: 'get',
+ params: param
+ })
+}
+
+// 获取枪支列表
+export const getSelectGun = (param) => {
+ return request({
+ url: '/api/equipage/selectGun',
+ method: 'get',
+ params: param
+ })
+}
+// 现实表现弹窗接口
+export const xsbxPages = params => {
+ return request({
+ url: "/api/information/selectBxc",
+ method: "post",
+ params: params
+ });
+};
--
Gitblit v1.9.3