Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
1b2a8b4530 | 10 months ago |
|
0c6c9b0c01 | 10 months ago |
@ -1,26 +0,0 @@
|
|||||||
import request from '@/utils/request'
|
|
||||||
|
|
||||||
// * 警力分布 - 派出所信息
|
|
||||||
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/devopsDeviceStatus',
|
|
||||||
method: 'get',
|
|
||||||
params
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,38 +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
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
import request from '@/utils/request'
|
|
||||||
|
|
||||||
// * 字典
|
|
||||||
export const getDictData = (dictType) => {
|
|
||||||
return request.get(`/system/dict/data/type/${dictType}`)
|
|
||||||
}
|
|
@ -1,6 +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/transitHuntersUserRecord', { params })
|
|
@ -1,6 +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(',') } })
|
|
@ -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,41 +0,0 @@
|
|||||||
import request from '@/utils/request'
|
|
||||||
// 人脸抓拍
|
|
||||||
export function transitUserRecord(params) {
|
|
||||||
return request({
|
|
||||||
url: '/base/transitUserRecord',
|
|
||||||
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
|
|
||||||
})
|
|
||||||
}
|
|
@ -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: 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: 2.8 MiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 4.0 MiB |
Before Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 2.7 MiB |
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 |
After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 367 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: 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: 688 B |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 620 B |
Before Width: | Height: | Size: 179 KiB |
Before Width: | Height: | Size: 181 B After Width: | Height: | Size: 181 B |
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 376 B |
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 244 B |
Before Width: | Height: | Size: 765 B After Width: | Height: | Size: 765 B |
Before Width: | Height: | Size: 3.1 KiB |