Compare commits
23 Commits
Author | SHA1 | Date |
---|---|---|
|
43b8610dac | 1 year ago |
|
b8594272be | 1 year ago |
|
a8ae73b977 | 1 year ago |
|
3179e86625 | 1 year ago |
|
e3f08837b1 | 1 year ago |
|
050d776cd8 | 1 year ago |
|
18cdc3ff57 | 1 year ago |
|
3d17616047 | 1 year ago |
|
f5345e1452 | 1 year ago |
|
1441da5e73 | 1 year ago |
|
f2b8b4f9e4 | 1 year ago |
|
361452b465 | 1 year ago |
|
1a19526ff9 | 1 year ago |
|
dba5cb545d | 1 year ago |
|
7586f80297 | 1 year ago |
|
2704c38b58 | 1 year ago |
|
fe333b5a71 | 1 year ago |
|
21b507ca41 | 1 year ago |
|
cef0fbfc57 | 1 year ago |
|
ba870087d8 | 1 year ago |
|
4d8a0b2922 | 1 year ago |
|
a4f4a5e01c | 1 year ago |
|
e4b493bb67 | 1 year ago |
@ -0,0 +1,26 @@
|
||||
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
|
||||
})
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
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,9 +1,9 @@
|
||||
import request from '@/utils/request'
|
||||
// 查询在控人员数据
|
||||
export function get_list(params) {
|
||||
return request({
|
||||
url:'/sheyang/gambler',
|
||||
method:'get',
|
||||
params
|
||||
})
|
||||
return request({
|
||||
url: '/sheyang/gambler',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// * 字典
|
||||
export const getDictData = (dictType) => {
|
||||
return request.get(`/system/dict/data/type/${dictType}`)
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export const getResources = () =>
|
||||
request.post('/base/poaching/overviewResources')
|
||||
export const getStatistics = () =>
|
||||
request.post('/base/poaching/personnelStatistics')
|
@ -0,0 +1,3 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export const listHunter = (params) => request.get('/base/transitHuntersUserRecord', { params })
|
@ -0,0 +1,6 @@
|
||||
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(',') } })
|
@ -0,0 +1,6 @@
|
||||
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,9 +1,9 @@
|
||||
import request from '@/utils/request'
|
||||
// 查询所有菜单内容
|
||||
export function get_menu(params) {
|
||||
return request({
|
||||
url:'/system/menu/list',
|
||||
method:'get',
|
||||
params
|
||||
})
|
||||
return request({
|
||||
url: '/system/menu/list',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
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
|
||||
})
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
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
|
||||
})
|
||||
}
|
After Width: | Height: | Size: 2.8 MiB |
After Width: | Height: | Size: 4.0 MiB |
After Width: | Height: | Size: 121 KiB |
After Width: | Height: | Size: 121 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.9 KiB |
After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 2.8 MiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 4.0 MiB |
After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 2.7 MiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 136 KiB |
Before Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 367 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 383 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 223 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 940 B |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 503 B |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 140 KiB |
After Width: | Height: | Size: 170 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 685 B |
After Width: | Height: | Size: 737 B |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 422 B |
After Width: | Height: | Size: 622 B |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 503 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1019 B |
After Width: | Height: | Size: 912 B |
After Width: | Height: | Size: 690 B |
After Width: | Height: | Size: 736 B |
After Width: | Height: | Size: 483 B |
After Width: | Height: | Size: 478 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 124 KiB |
After Width: | Height: | Size: 688 B |
Before Width: | Height: | Size: 521 B After Width: | Height: | Size: 521 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 |
After Width: | Height: | Size: 620 B |
After 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 |