From dbb160f7ce6c334ee561e551930ec72b5f5db899 Mon Sep 17 00:00:00 2001
From: zhengpz <1838927346@qq.com>
Date: Tue, 07 Dec 2021 21:09:14 +0800
Subject: [PATCH] 预警输入框禁用

---
 src/api/index/index.js |   56 +++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 53 insertions(+), 3 deletions(-)

diff --git a/src/api/index/index.js b/src/api/index/index.js
index 162ebb1..01ea140 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -47,10 +47,16 @@
     params: params
   });
 };
+// export const selectFj = () => {
+//   return request({
+//     url: "/api/information/selectFj",
+//     method: "post"
+//   });
+// };
 export const selectFj = () => {
   return request({
-    url: "/api/information/selectFj",
-    method: "post"
+    url: "/api/information/selectSubstationWarnInfo",
+    method: "get"
   });
 };
 export const selectBx = params => {
@@ -217,4 +223,48 @@
     method: "get",
     params: params
   });
-};
\ No newline at end of file
+};
+
+// 获取押运人员列表
+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 getGunPosition = () => {
+  return request({
+    url: '/api/gun/getGunList',
+    method: 'get',
+  })
+}
+
+// 现实表现弹窗接口
+export const xsbxPages = params => {
+  return request({
+    url: "/api/information/selectBxc",
+    method: "post",
+    params: params
+  });
+};

--
Gitblit v1.9.3