保安监管系统-验收版本
+
liuyg
2021-12-04 5ac2d2cacaefc00ec7ce2cf34f62337a9f9ad309
src/api/index/index.js
@@ -224,3 +224,47 @@
    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',
  })
}
// 现实表现弹窗接口
export const xsbxPages = params => {
  return request({
    url: "/api/information/selectBxc",
    method: "post",
    params: params
  });
};