Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
1b2a8b4530 | 10 months ago |
|
0c6c9b0c01 | 10 months ago |
@ -1,54 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
import axios from 'axios'
|
||||
|
||||
// * 警力分布 - 派出所信息
|
||||
export const getPoliceHouseAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/metaPoliceStationInfo',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
// * 警力分布 - 警务室信息
|
||||
export const getPoliceOfficeAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/metaPoliceOfficeInfo',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
// * 警力分布 - 执法记录仪信息
|
||||
export const getDeviceStatusAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/devopsVideoInfo',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 350M 数据,第三方接口
|
||||
export const get350mDataAPI = (params) => {
|
||||
return axios({
|
||||
url: 'http://50.144.13.130:30000/pgis2/pgis-deploy/pdt/v2/list?serviceToken=0ceec8c6-dfbb-462e-876d-15fa90fae54b&device_id=51533549',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 实时警情
|
||||
export const postRealPoliceAPI = (data) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/realTimeAlarmSituation',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// * 警车数据
|
||||
export const postPoliceCarAPI = (data) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/policeVehicleList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
// TODO 楼栋信息模块
|
||||
|
||||
// * 获取楼栋信息
|
||||
export const postBuildInformationAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/buildingInformation',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 获取房屋结构
|
||||
export const postBuildStructureAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/buildStructure',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 获取实有房屋统计
|
||||
export const postBuildRealEstateAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/buildRealEstate',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 获取实有人口统计
|
||||
export const postBuildRealActualAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/buildRealActual',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 楼栋信息 - 户室信息
|
||||
export const postBuildHouseAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/buildInformation',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// * 楼栋信息 - 楼栋点位统计
|
||||
export const postBuildLocationAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/bigscreen/buildLocationStatistics',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// * 字典
|
||||
export const getDictData = (dictType) => {
|
||||
return request.get(`/system/dict/data/type/${dictType}`)
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export const getResources = () => request.post('/base/poaching/overviewResources')
|
||||
export const getStatistics = () => request.post('/base/poaching/personnelStatistics')
|
@ -1,3 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export const listHunter = (params) => request.get('/base/transitHuntersUserModelRecord', { params })
|
@ -1,14 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export const listUser = (params) =>
|
||||
request.get('/base/metaHuntersInfo', { params })
|
||||
export const addUser = (data) => request.post('/base/metaHuntersInfo', data)
|
||||
export const editUser = (data) => request.put('/base/metaHuntersInfo', data)
|
||||
export const delUser = (idList) =>
|
||||
request.delete('/base/metaHuntersInfo', {
|
||||
params: { idList: idList.join(',') }
|
||||
})
|
||||
export const getUserType = () =>
|
||||
request.get('/system/dict/data/list', {
|
||||
params: { dictType: 'hunters_user_type' }
|
||||
})
|
@ -1,6 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export const listVehicle = (params) => request.get('/base/transitHuntersVehicleRecord', { params })
|
||||
export const addVehicle = (data) => request.post('/base/transitHuntersVehicleRecord', data)
|
||||
export const editVehicle = (data) => request.put('/base/transitHuntersVehicleRecord', data)
|
||||
export const delVehicle = (idList) => request.delete('/base/transitHuntersVehicleRecord', { params: { idList: idList.join(',') } })
|
@ -1,49 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
// 人脸抓拍
|
||||
export function getTransitUserAPI(params) {
|
||||
return request({
|
||||
url: '/base/transitImpUserRecord',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
//车辆抓拍
|
||||
export function transitVehicleRecord(params) {
|
||||
return request({
|
||||
url: '/base/transitVehicleRecord',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
//人车数量
|
||||
export function humanVehicleStatistics(params) {
|
||||
return request({
|
||||
url: '/base/perceptionDevice/humanVehicleStatistics',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
//人流量
|
||||
export function humanTrafficStatistics(params) {
|
||||
return request({
|
||||
url: '/base/perceptionDevice/humanTrafficStatistics',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
//车流量
|
||||
export function vehicleTrafficStatistics(params) {
|
||||
return request({
|
||||
url: '/base/perceptionDevice/vehicleTrafficStatistics',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
// 感知设备点位
|
||||
export function get_device(params) {
|
||||
return request({
|
||||
url: '/base/devopsDeviceInfo',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// * 查询监控设备列表
|
||||
export const getDeviceListAPI = (params) => {
|
||||
return request({
|
||||
url: '/base/devopsVideoInfo',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
export function get_channel_data(params) {
|
||||
return request({
|
||||
url: '/base/devopsVideoInfo',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
Before Width: | Height: | Size: 2.8 MiB |
Before Width: | Height: | Size: 4.0 MiB |
Before Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 383 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 2.8 MiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 4.0 MiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 136 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 383 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 223 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 940 B |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 503 B |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 140 KiB |
Before Width: | Height: | Size: 170 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 685 B |
Before Width: | Height: | Size: 737 B |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 422 B |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 503 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1019 B |
Before Width: | Height: | Size: 912 B |
Before Width: | Height: | Size: 690 B |
Before Width: | Height: | Size: 736 B |
Before Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 478 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 688 B |
Before Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |