Compare commits

...

28 Commits

Author SHA1 Message Date
wjl61901 f0ff1d27cb 非法涉猎
1 year ago
wjl61901 0bd62c534c 非法涉猎
1 year ago
wjl61901 a235c250f7 非法涉猎 滞留时长
1 year ago
wjl61901 0f063d7980 非法涉猎
1 year ago
wjl61901 46c1e48bd7 非法涉猎
1 year ago
wjl61901 ac12aa52da 非法涉猎 预警详情图片
1 year ago
wjl61901 c97165f98d 非法涉猎 预警详情图片
1 year ago
wjl61901 81eb39d076 非法涉猎 预警详情图片
1 year ago
wjl61901 c699fe28c5 非法涉猎(首页8条及按钮位置)
1 year ago
wjl61901 38404275fa 非法涉猎
1 year ago
wjl61901 ca17ab28c3 非法涉猎
1 year ago
wjl61901 f0464b3a24 非法涉猎
1 year ago
wjl61901 0064a22b53 非法涉猎
1 year ago
wjl61901 011cc6f8a4 非法涉猎
1 year ago
独树的风 f904028c4f Merge branch 'dev' of http://8.136.197.230:3000/sheyang/sheyangCoastalSystem into dev
1 year ago
独树的风 ff2dcf3b7d 提交
1 year ago
guomingxin ecfa69d89e Merge pull request 'hezhengao' (#2) from hezhengao into dev
1 year ago
何峥傲 1a19526ff9 url
1 year ago
何峥傲 dba5cb545d 12.9/19.17
1 year ago
何峥傲 7586f80297 hzahza
1 year ago
独树的风 2704c38b58 更改 request baseURL
1 year ago
独树的风 fe333b5a71 update:更新
1 year ago
独树的风 21b507ca41 Merge branch 'dev' of http://8.136.197.230:3000/sheyang/sheyangCoastalSystem into dev
1 year ago
独树的风 cef0fbfc57 update:更改
1 year ago
何峥傲 ba870087d8 2023/12/7/20.49
1 year ago
何峥傲 4d8a0b2922 2323/12/07/15.21
1 year ago
guomingxin a4f4a5e01c Merge pull request 'update: 更新' (#1) from master into dev
1 year ago
独树的风 e4b493bb67 update: 更新配置文件
1 year ago

@ -0,0 +1 @@
VUE_APP_OSS = http://50.146.63.224:8118

@ -9,7 +9,7 @@
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<!-- <script type="text/javascript" src="<%= BASE_URL %>js/liveplayer-lib.min.js"></script> -->
<script type="text/javascript" src="./liveplayer-lib.min.js"></script>
<!-- 引入MineMap API插件 -->
<link rel="stylesheet" href="http://50.144.11.244:21009/support/static/api/demo/js-api/zh/css/demo.css">
<link rel="stylesheet" href="http://50.144.11.244:21009/minemapapi/v2.1.0/minemap.css">

File diff suppressed because one or more lines are too long

@ -8,8 +8,8 @@
<script>
export default {
name: "App",
};
name: 'App'
}
</script>
<style lang="scss">

@ -27,6 +27,15 @@ export const keyPersonnelAPI = (data) => {
})
}
//*重点人员信息(轮播)
export const MetaImpUserInfo = (data) => {
return request({
url: '/base/metaImpUserInfo',
method: 'get',
data
})
}
// * 警力分布
export const PoliceForceDistributionAPI = (data) => {
return request({
@ -36,6 +45,22 @@ export const PoliceForceDistributionAPI = (data) => {
})
}
// * 警情统计
export const PoliceStatisticsAPI = (data) => {
return request({
url: '/base/bigscreen/policeSituationStatistics',
method: 'post',
data
})
}
// * 警情信息表
export const MetaAlarmInfo = (data) => {
return request({
url: '/base/metaAlarmInfo',
method: 'get',
data
})
}
// * 涉海要素
export const seaRelatedElementsAPI = (data) => {
return request({

@ -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,4 @@
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/transitHuntersUserModelRecord', { params })

@ -0,0 +1,7 @@
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' } })

@ -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,25 @@
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
})
}

@ -0,0 +1,10 @@
import request from '@/utils/request'
// * 查询监控设备列表
export const getDeviceListAPI = (params) => {
return request({
url: '/base/devopsVideoInfo',
method: 'get',
params
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 940 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 503 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 503 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1019 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 912 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 736 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 483 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 B

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 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: 521 B

After

Width:  |  Height:  |  Size: 521 B

@ -1,4 +1,5 @@
html,body {
html,
body {
margin: 0;
padding: 0;
box-sizing: border-box;
@ -7,4 +8,68 @@ html,body {
// * logo
a.minemap-ctrl-logo {
display: none;
}
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 6px;
}
.query-form {
color: white;
.el-form-item {
width: 17vw;
display: inline-flex;
margin-right: 0;
margin-bottom: 3vh;
.el-form-item__label {
width: 6vw;
padding: 0;
color: white;
}
.el-form-item__content {
flex: 1;
}
.el-input,
.el-select {
width: 100%;
}
.el-range-input,
.el-input__inner {
color: white !important;
}
}
}
.el-range-input,
.el-input__inner {
background: rgba(2, 43, 91, 0.31);
border: 1px solid rgba(127, 207, 244, 0.55);
}
.fy-center {
display: flex;
align-items: center;
}
.f-center {
display: flex;
align-items: center;
justify-content: center;
}
.flex-col{
display: flex;
flex-direction: column;
}
.flex-1 {
flex: 1;
}
.line-1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;
width: 1px;
}

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 79 KiB

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 254 KiB

Before

Width:  |  Height:  |  Size: 176 KiB

After

Width:  |  Height:  |  Size: 176 KiB

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Before

Width:  |  Height:  |  Size: 313 KiB

After

Width:  |  Height:  |  Size: 313 KiB

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save