From b2501d9e55f30f32165e4d76ef2b27c01f1bf7c4 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 02 Dec 2021 18:54:03 +0800
Subject: [PATCH] 部分修改

---
 src/api/index/index.js |   35 +++++++++++++++++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/src/api/index/index.js b/src/api/index/index.js
index ac53e9d..62f839f 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -224,3 +224,38 @@
     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 getGunPosition = () => {
+  return request({
+    url: '/api/gun/getGunList',
+    method: 'get',
+  })
+}

--
Gitblit v1.9.3