From 4ed0702e4abb5af61f1aaf657a580fe6bee884d9 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 24 Mar 2021 09:31:30 +0800
Subject: [PATCH] 接口更改,部分图片修改
---
public/map/widgets/realTimePolice/RealTimePolice.js | 14 +-
public/map/popup/js/personnel-information-management.js | 2
src/styles/real.scss | 10 ++
public/map/popup/js/realtime-police-details.js | 12 +-
vue.config.js | 2
public/map/widgets/aPoliceTeam/APoliceTeam.js | 38 ++++----
public/map/popup/js/realtime-equipment-history.js | 2
public/map/popup/js/equipment-history.js | 2
public/map/popup/js/owner-details.js | 2
public/map/popup/js/police-details.js | 2
public/map/widgets/patrolManagement/PatrolManagement.js | 36 ++++----
public/map/widgets/policeDispatching/PoliceDispatching.js | 36 ++++----
public/img/big-img-close.png | 0
src/page/index/logo.vue | 29 +++++++
public/map/popup/js/routename-and-peoplename.js | 2
src/views/realTimePolice/real.vue | 5
public/map/widgets/analysisAndJudgment/AnalysisAndJudgment.js | 12 +-
public/map/popup/js/route-name-layer.js | 2
src/views/home/home.vue | 2
public/map/popup/js/equipment-details.js | 2
public/map/widgets/alertSecurity/AlertSecurity.js | 4
public/map/popup/js/clientPopup.js | 4
public/map/index.html | 6
src/views/distribution/index.vue | 4
24 files changed, 134 insertions(+), 96 deletions(-)
diff --git a/public/img/big-img-close.png b/public/img/big-img-close.png
new file mode 100644
index 0000000..57f495f
--- /dev/null
+++ b/public/img/big-img-close.png
Binary files differ
diff --git a/public/map/index.html b/public/map/index.html
index 9943814..8f218cd 100644
--- a/public/map/index.html
+++ b/public/map/index.html
@@ -6,9 +6,9 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<link rel="stylesheet" type="text/css"
- href="https://web.byisf.com:18001/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/dijit/themes/tundra/tundra.css" />
+ href="https://web.byisf.com/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/dijit/themes/tundra/tundra.css" />
<link rel="stylesheet" type="text/css"
- href="https://web.byisf.com:18001/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/esri/css/esri.css" />
+ href="https://web.byisf.com/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/esri/css/esri.css" />
<link rel="stylesheet" href="./lib/layui/css/layui.css" />
<link rel="stylesheet" href="./css/forestry-map.css" />
<link type="text/css" rel="stylesheet" href="framework.css" />
@@ -29,7 +29,7 @@
<script src="env.js"></script>
<script type="text/javascript"
- src="https://web.byisf.com:18001/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/init.js"></script>
+ src="https://web.byisf.com/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/init.js"></script>
<script src='./lib/zTree_v3/js/jquery.ztree.all.js'></script>
<script>
var _framework = null;
diff --git a/public/map/popup/js/clientPopup.js b/public/map/popup/js/clientPopup.js
index 647ec93..80098cd 100644
--- a/public/map/popup/js/clientPopup.js
+++ b/public/map/popup/js/clientPopup.js
@@ -31,7 +31,7 @@
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/equipment/equipment/detail?id=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/equipment/equipment/detail?id=' + code,
type: 'GET',
dataType: 'JSON',
success: function (data) {
@@ -73,7 +73,7 @@
$("#client_bc").off("click").click(function () {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/equipment/equipment/updateClinent?',
+ url: 'https://web.byisf.com/api/blade-jfpts/equipment/equipment/updateClinent?',
data: {
"id": code,
diff --git a/public/map/popup/js/equipment-details.js b/public/map/popup/js/equipment-details.js
index 4719ba6..3fed863 100644
--- a/public/map/popup/js/equipment-details.js
+++ b/public/map/popup/js/equipment-details.js
@@ -4,7 +4,7 @@
// 查看设备的详细信息
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/equipment/equipment/detail?id=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/equipment/equipment/detail?id=' + code,
type: 'GET',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/equipment-history.js b/public/map/popup/js/equipment-history.js
index bbdfaba..0a2f16e 100644
--- a/public/map/popup/js/equipment-history.js
+++ b/public/map/popup/js/equipment-history.js
@@ -3,7 +3,7 @@
console.log(code, 1212121);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=' + code,
type: 'POST',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/owner-details.js b/public/map/popup/js/owner-details.js
index 1641655..5c48c28 100644
--- a/public/map/popup/js/owner-details.js
+++ b/public/map/popup/js/owner-details.js
@@ -4,7 +4,7 @@
// 查看警情的详细信息
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/suser/suser/detail?id=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/suser/suser/detail?id=' + code,
type: 'GET',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/personnel-information-management.js b/public/map/popup/js/personnel-information-management.js
index 6613a97..ac2010b 100644
--- a/public/map/popup/js/personnel-information-management.js
+++ b/public/map/popup/js/personnel-information-management.js
@@ -5,7 +5,7 @@
var viewVideoLayer = null;
// 查看保安人员的详细信息
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/security/security/selectInfo?snumber=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/security/security/selectInfo?snumber=' + code,
type: 'POST',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/police-details.js b/public/map/popup/js/police-details.js
index e6d642e..f5478ad 100644
--- a/public/map/popup/js/police-details.js
+++ b/public/map/popup/js/police-details.js
@@ -4,7 +4,7 @@
// 查看警情的详细信息
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + code,
type: 'POST',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/realtime-equipment-history.js b/public/map/popup/js/realtime-equipment-history.js
index 3ff0af9..d6697e7 100644
--- a/public/map/popup/js/realtime-equipment-history.js
+++ b/public/map/popup/js/realtime-equipment-history.js
@@ -3,7 +3,7 @@
console.log(code, 1212121);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=' + code,
type: 'POST',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/realtime-police-details.js b/public/map/popup/js/realtime-police-details.js
index f12d1e0..e555ea4 100644
--- a/public/map/popup/js/realtime-police-details.js
+++ b/public/map/popup/js/realtime-police-details.js
@@ -19,7 +19,7 @@
// 查看警情的详细信息
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/selectInfo?id=' + code,
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/selectInfo?id=' + code,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -123,7 +123,7 @@
return
}
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/saves',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/saves',
type: 'POST',
data: {
rName: result.rname,
@@ -205,7 +205,7 @@
$(this).addClass('on');
$.ajax({
- url: "https://web.byisf.com:18001/talk?deviceCode=" + $('.realtime-police-details-box>div:eq(1)').data('code'),
+ url: "https://web.byisf.com/talk?deviceCode=" + $('.realtime-police-details-box>div:eq(1)').data('code'),
type: "POST",
data: '12345',
dataType: 'JSON',
@@ -249,7 +249,7 @@
var getPCMBlob = recorder.getPCMBlob();
$.ajax({
- url: "https://web.byisf.com:18001/talk",
+ url: "https://web.byisf.com/talk",
type: 'POST',
data: {
PktType: URL.createObjectURL(getPCMBlob),
@@ -285,7 +285,7 @@
layer.confirm('确定撤销该警情?', { icon: 3, title: '提示' }, function (index) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/deletejj',
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/deletejj',
type: 'POST',
data: {
id: id
@@ -320,7 +320,7 @@
function updateJType(id, czTime, bz, jjTime) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/updateJtype',
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/updateJtype',
type: 'POST',
data: {
id: id,
diff --git a/public/map/popup/js/route-name-layer.js b/public/map/popup/js/route-name-layer.js
index f54d0cf..18e13c7 100644
--- a/public/map/popup/js/route-name-layer.js
+++ b/public/map/popup/js/route-name-layer.js
@@ -16,7 +16,7 @@
// 查看保安人员下拉
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/security/security/selectry',
+ url: 'https://web.byisf.com/api/blade-jfpts/security/security/selectry',
type: 'GET',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/popup/js/routename-and-peoplename.js b/public/map/popup/js/routename-and-peoplename.js
index a65ebea..837c565 100644
--- a/public/map/popup/js/routename-and-peoplename.js
+++ b/public/map/popup/js/routename-and-peoplename.js
@@ -27,7 +27,7 @@
// 查看保安人员下拉
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/security/security/selectry',
+ url: 'https://web.byisf.com/api/blade-jfpts/security/security/selectry',
type: 'GET',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/widgets/aPoliceTeam/APoliceTeam.js b/public/map/widgets/aPoliceTeam/APoliceTeam.js
index 261b1e9..52cf3c5 100644
--- a/public/map/widgets/aPoliceTeam/APoliceTeam.js
+++ b/public/map/widgets/aPoliceTeam/APoliceTeam.js
@@ -264,7 +264,7 @@
$('.police-container-distribute-details .content table tbody').empty();
var str = '';
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -295,7 +295,7 @@
var str = '';
$('.police-container-distribute-details .security-guard-nearby .security-staff-content tbody').empty();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/position/position/selectry',
+ url: 'https://web.byisf.com/api/blade-jfpts/position/position/selectry',
type: 'POST',
data: {
coordinate: "point(" + $(this).attr('lgtd') + "," + $(this).attr('lttd') + ")"
@@ -363,7 +363,7 @@
}
// 发送请求修改警单数据
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/updateInfo',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/updateInfo',
type: 'POST',
data: {
id: id,
@@ -402,7 +402,7 @@
var str = '';
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -769,7 +769,7 @@
if ($(this).index() == 1) {
$('.police-dispatching .police-container .police-container-patrol .main-content .select-list ul').empty();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/selectqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/selectqy',
type: 'GET',
dataType: 'JSON',
success: function (res) {
@@ -929,7 +929,7 @@
that.layuiLayer.msg('人员未更改!');
} else {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/duty/duty/updatedtInfo',
+ url: 'https://web.byisf.com/api/blade-jfpts/duty/duty/updatedtInfo',
type: 'POST',
data: {
rid: routeId,
@@ -1019,7 +1019,7 @@
if (that.tabIndex == 1) {
if (that.patrolIndex == 1) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/insertlx',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/insertlx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1035,7 +1035,7 @@
that.polygonData = [];
that.getRouteInformation($('.police-dispatching .police-container .police-container-patrol .table .tbody tbody'), '');
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/duty/duty/insertduty',
+ url: 'https://web.byisf.com/api/blade-jfpts/duty/duty/insertduty',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1060,7 +1060,7 @@
// that.pepleRealId = pepleRealId;
} else {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/insterqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/insterqy',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1079,7 +1079,7 @@
}
} else if (that.tabIndex == 2) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/enclosure/enclosure/insertes',
+ url: 'https://web.byisf.com/api/blade-jfpts/enclosure/enclosure/insertes',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1117,7 +1117,7 @@
$('.police-dispatching .police-container .distribute-district .select-list ul').empty();
$('.police-dispatching .police-container .distribute-district .select-list ul').append("<li key='addvcd' addvcd=''>全部</li>");
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/district/district/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/district/district/selectList',
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -1473,7 +1473,7 @@
dom.empty();
var that = this;
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1536,7 +1536,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1580,7 +1580,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1623,7 +1623,7 @@
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/queryBa',
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/queryBa',
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -1671,7 +1671,7 @@
}
})
// $.ajax({
- // url: 'https://web.byisf.com:18001/api/blade-jfpts/security/security/selectList',
+ // url: 'https://web.byisf.com/api/blade-jfpts/security/security/selectList',
// type: 'POST',
// dataType: 'JSON',
// success: function (data) {
@@ -1906,7 +1906,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/updatelx',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/updatelx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1954,7 +1954,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/updateqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/updateqy',
type: 'POST',
dataType: 'JSON',
data: {
@@ -2010,7 +2010,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/enclosure/enclosure/updatee',
+ url: 'https://web.byisf.com/api/blade-jfpts/enclosure/enclosure/updatee',
type: 'POST',
dataType: 'JSON',
data: {
diff --git a/public/map/widgets/alertSecurity/AlertSecurity.js b/public/map/widgets/alertSecurity/AlertSecurity.js
index 9c71421..4123c68 100644
--- a/public/map/widgets/alertSecurity/AlertSecurity.js
+++ b/public/map/widgets/alertSecurity/AlertSecurity.js
@@ -203,7 +203,7 @@
var lttd = that.getQueryStringByKey('wd');
$.ajax({
- url: "https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/detail?id=" + openid,
+ url: "https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/detail?id=" + openid,
type: 'get',
dataType: 'JSON',
success: function (data) {
@@ -212,7 +212,7 @@
})
$.ajax({
- url: "https://web.byisf.com:18001/api/blade-jfpts/position/position/selectfj",
+ url: "https://web.byisf.com/api/blade-jfpts/position/position/selectfj",
type: 'POST',
dataType: 'JSON',
data: {
diff --git a/public/map/widgets/analysisAndJudgment/AnalysisAndJudgment.js b/public/map/widgets/analysisAndJudgment/AnalysisAndJudgment.js
index 94233c8..98bbd67 100644
--- a/public/map/widgets/analysisAndJudgment/AnalysisAndJudgment.js
+++ b/public/map/widgets/analysisAndJudgment/AnalysisAndJudgment.js
@@ -661,7 +661,7 @@
dom.children('.select-list').children('ul').append($("<li areaid='all'>全部</li>"));
var that = this;
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-system/region/select?code=3601',
+ url: 'https://web.byisf.com/api/blade-system/region/select?code=3601',
type: 'GET',
dataType: 'JSON',
success: function (data) {
@@ -684,7 +684,7 @@
dom.empty();
var that = this;
$.ajax({
- url: "https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/page?current=1&size=99999&waringType=&beginTime=" + beginTime + "&endTime=" +endTime +"&province=36&city=3601&district=" + addvcd,
+ url: "https://web.byisf.com/api/blade-jfpts/alarm/alarm/page?current=1&size=99999&waringType=&beginTime=" + beginTime + "&endTime=" +endTime +"&province=36&city=3601&district=" + addvcd,
type: 'get',
dataType: 'JSON',
success: function (data) {
@@ -735,7 +735,7 @@
dom.children('.select-list').children('ul').empty();
dom.children('.select-list').children('ul').append($("<li ownerid='all'>全部</li>"));
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/lx/lx/seleclx',
+ url: 'https://web.byisf.com/api/blade-jfpts/lx/lx/seleclx',
type: 'GET',
dataType: 'JSON',
success: function (data) {
@@ -751,7 +751,7 @@
dom.children('.select-list').children('ul').empty();
dom.children('.select-list').children('ul').append($("<li>全部</li>"));
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/dj/dj/selectName?tnumbers=' + tnumbers,
+ url: 'https://web.byisf.com/api/blade-jfpts/dj/dj/selectName?tnumbers=' + tnumbers,
type: 'GET',
dataType: 'JSON',
success: function (data) {
@@ -767,7 +767,7 @@
dom.empty();
var that = this;
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/suser/suser/selectList?type=' + type + '&dj=' + dj,
+ url: 'https://web.byisf.com/api/blade-jfpts/suser/suser/selectList?type=' + type + '&dj=' + dj,
type: 'GET',
dataType: 'JSON',
success: function (data) {
@@ -803,7 +803,7 @@
dom.empty();
var that = this;
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/equipment/equipment/selectList?deviceType=' + deviceType,
+ url: 'https://web.byisf.com/api/blade-jfpts/equipment/equipment/selectList?deviceType=' + deviceType,
type: 'GET',
dataType: 'JSON',
success: function (data) {
diff --git a/public/map/widgets/patrolManagement/PatrolManagement.js b/public/map/widgets/patrolManagement/PatrolManagement.js
index 7ad83b0..df7a95b 100644
--- a/public/map/widgets/patrolManagement/PatrolManagement.js
+++ b/public/map/widgets/patrolManagement/PatrolManagement.js
@@ -256,7 +256,7 @@
$('.police-container-distribute-details .content table tbody').empty();
var str = '';
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -287,7 +287,7 @@
var str = '';
$('.police-container-distribute-details .security-guard-nearby .security-staff-content tbody').empty();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/position/position/selectry',
+ url: 'https://web.byisf.com/api/blade-jfpts/position/position/selectry',
type: 'POST',
data: {
coordinate: "point(" + $(this).attr('lgtd') + "," + $(this).attr('lttd') + ")"
@@ -355,7 +355,7 @@
}
// 发送请求修改警单数据
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/updateInfo',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/updateInfo',
type: 'POST',
data: {
id: id,
@@ -394,7 +394,7 @@
var str = '';
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -757,7 +757,7 @@
if ($(this).index() == 1) {
$('.police-dispatching .police-container .police-container-patrol .main-content .select-list ul').empty();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/selectqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/selectqy',
type: 'GET',
dataType: 'JSON',
success: function (res) {
@@ -917,7 +917,7 @@
that.layuiLayer.msg('人员未更改!');
} else {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/duty/duty/updatedtInfo',
+ url: 'https://web.byisf.com/api/blade-jfpts/duty/duty/updatedtInfo',
type: 'POST',
data: {
rid: routeId,
@@ -1007,7 +1007,7 @@
if (that.tabIndex == 1) {
if (that.patrolIndex == 1) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/insertlx',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/insertlx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1023,7 +1023,7 @@
that.polygonData = [];
that.getRouteInformation($('.police-dispatching .police-container .police-container-patrol .table .tbody tbody'), '');
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/duty/duty/insertduty',
+ url: 'https://web.byisf.com/api/blade-jfpts/duty/duty/insertduty',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1048,7 +1048,7 @@
// that.pepleRealId = pepleRealId;
} else {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/insterqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/insterqy',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1067,7 +1067,7 @@
}
} else if (that.tabIndex == 2) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/enclosure/enclosure/insertes',
+ url: 'https://web.byisf.com/api/blade-jfpts/enclosure/enclosure/insertes',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1105,7 +1105,7 @@
$('.police-dispatching .police-container .distribute-district .select-list ul').empty();
$('.police-dispatching .police-container .distribute-district .select-list ul').append("<li key='addvcd' addvcd=''>全部</li>");
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/district/district/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/district/district/selectList',
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -1465,7 +1465,7 @@
dom.empty();
var that = this;
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1528,7 +1528,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1572,7 +1572,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1614,7 +1614,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/security/security/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/security/security/selectList',
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -1845,7 +1845,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/updatelx',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/updatelx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1893,7 +1893,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/updateqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/updateqy',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1949,7 +1949,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/enclosure/enclosure/updatee',
+ url: 'https://web.byisf.com/api/blade-jfpts/enclosure/enclosure/updatee',
type: 'POST',
dataType: 'JSON',
data: {
diff --git a/public/map/widgets/policeDispatching/PoliceDispatching.js b/public/map/widgets/policeDispatching/PoliceDispatching.js
index 663deae..96223cc 100644
--- a/public/map/widgets/policeDispatching/PoliceDispatching.js
+++ b/public/map/widgets/policeDispatching/PoliceDispatching.js
@@ -256,7 +256,7 @@
$('.police-container-distribute-details .content table tbody').empty();
var str = '';
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -287,7 +287,7 @@
var str = '';
$('.police-container-distribute-details .security-guard-nearby .security-staff-content tbody').empty();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/position/position/selectry',
+ url: 'https://web.byisf.com/api/blade-jfpts/position/position/selectry',
type: 'POST',
data: {
coordinate: "point(" + $(this).attr('lgtd') + "," + $(this).attr('lttd') + ")"
@@ -355,7 +355,7 @@
}
// 发送请求修改警单数据
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/updateInfo',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/updateInfo',
type: 'POST',
data: {
id: id,
@@ -394,7 +394,7 @@
var str = '';
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectdInfo?deviceNumber=&id=' + id,
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -757,7 +757,7 @@
if ($(this).index() == 1) {
$('.police-dispatching .police-container .police-container-patrol .main-content .select-list ul').empty();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/selectqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/selectqy',
type: 'GET',
dataType: 'JSON',
success: function (res) {
@@ -917,7 +917,7 @@
that.layuiLayer.msg('人员未更改!');
} else {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/duty/duty/updatedtInfo',
+ url: 'https://web.byisf.com/api/blade-jfpts/duty/duty/updatedtInfo',
type: 'POST',
data: {
rid: routeId,
@@ -1007,7 +1007,7 @@
if (that.tabIndex == 1) {
if (that.patrolIndex == 1) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/insertlx',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/insertlx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1023,7 +1023,7 @@
that.polygonData = [];
that.getRouteInformation($('.police-dispatching .police-container .police-container-patrol .table .tbody tbody'), '');
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/duty/duty/insertduty',
+ url: 'https://web.byisf.com/api/blade-jfpts/duty/duty/insertduty',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1048,7 +1048,7 @@
// that.pepleRealId = pepleRealId;
} else {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/insterqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/insterqy',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1067,7 +1067,7 @@
}
} else if (that.tabIndex == 2) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/enclosure/enclosure/insertes',
+ url: 'https://web.byisf.com/api/blade-jfpts/enclosure/enclosure/insertes',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1105,7 +1105,7 @@
$('.police-dispatching .police-container .distribute-district .select-list ul').empty();
$('.police-dispatching .police-container .distribute-district .select-list ul').append("<li key='addvcd' addvcd=''>全部</li>");
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/district/district/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/district/district/selectList',
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -1458,7 +1458,7 @@
dom.empty();
var that = this;
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1521,7 +1521,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1565,7 +1565,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/selectList',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1607,7 +1607,7 @@
that.currentDrawing = [];
that.entityPolygonAll.clear();
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/security/security/selectList',
+ url: 'https://web.byisf.com/api/blade-jfpts/security/security/selectList',
type: 'POST',
dataType: 'JSON',
success: function (data) {
@@ -1838,7 +1838,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/routeIn/routein/updatelx',
+ url: 'https://web.byisf.com/api/blade-jfpts/routeIn/routein/updatelx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1886,7 +1886,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/regions/regions/updateqy',
+ url: 'https://web.byisf.com/api/blade-jfpts/regions/regions/updateqy',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1942,7 +1942,7 @@
dataStr = dataStr.substring(0, dataStr.length - 1);
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/enclosure/enclosure/updatee',
+ url: 'https://web.byisf.com/api/blade-jfpts/enclosure/enclosure/updatee',
type: 'POST',
dataType: 'JSON',
data: {
diff --git a/public/map/widgets/realTimePolice/RealTimePolice.js b/public/map/widgets/realTimePolice/RealTimePolice.js
index 3079a9d..4b8e92c 100644
--- a/public/map/widgets/realTimePolice/RealTimePolice.js
+++ b/public/map/widgets/realTimePolice/RealTimePolice.js
@@ -474,7 +474,7 @@
}
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/jingdan/jingdan/saves',
+ url: 'https://web.byisf.com/api/blade-jfpts/jingdan/jingdan/saves',
type: 'POST',
data: {
rName: $(_self).data('rname'),
@@ -586,7 +586,7 @@
// 行政区
// $.ajax({
- // url: 'https://web.byisf.com:18001/api/blade-jfpts/district/district/selectList',
+ // url: 'https://web.byisf.com/api/blade-jfpts/district/district/selectList',
// type: 'POST',
// dataType: 'JSON',
// success: function (data) {
@@ -603,7 +603,7 @@
// // 警情类型下拉
// $.ajax({
- // url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/selectScount',
+ // url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/selectScount',
// type: 'GET',
// dataType: 'JSON',
// success: function (data) {
@@ -633,7 +633,7 @@
that.updateRealTable = table.render({
elem: '#real_time_table'
, height: (layerTabHei - 20)
- , url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/selectList' //数据接口
+ , url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/selectList' //数据接口
, method: "post"
, where: { jtype: '', beginTime: that.realBeginTime, endTime: that.realEndTime }
, parseData: function (res) { //res 即为原始返回的数据
@@ -1049,7 +1049,7 @@
that.realTimeQuery = setInterval(function () {
if (that.historyPoliceId != null) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/selecttx',
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/selecttx',
type: 'POST',
dataType: 'JSON',
data: {
@@ -1340,7 +1340,7 @@
layer.confirm('确定撤销该警情?', { icon: 3, title: '提示' }, function (index) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/deletejj',
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/deletejj',
type: 'POST',
data: {
id: id
@@ -1443,7 +1443,7 @@
updateJType: function (id, czTime, bz, jjTime) {
$.ajax({
- url: 'https://web.byisf.com:18001/api/blade-jfpts/alarm/alarm/updateJtype',
+ url: 'https://web.byisf.com/api/blade-jfpts/alarm/alarm/updateJtype',
type: 'POST',
data: {
id: id,
diff --git a/src/page/index/logo.vue b/src/page/index/logo.vue
index d219349..a5439ad 100644
--- a/src/page/index/logo.vue
+++ b/src/page/index/logo.vue
@@ -333,6 +333,8 @@
peopleList: [],
peopleName: "",
peoplePhone: "",
+ ofX: null,
+ ofY: null,
};
},
created() {
@@ -390,6 +392,12 @@
that.peopleName = that.form.oneContacts;
that.peoplePhone = that.form.onePhone;
that.dialogTableVisible = true;
+
+ that.ofX = null;
+ that.ofY = null;
+
+ window.addEventListener("mousemove", that.handleMousemove);
+
that.$refs.realAudio.src = "./realVideo/audio.mp3";
that.$refs.realAudio.play();
}
@@ -399,10 +407,10 @@
},
closeDialog() {
//关闭窗口回调,关闭警报
- this.$refs.realAudio.pause();
this.videoConversationReal = false;
this.oldVideoSatart = false;
},
+
getDate() {
// 当前时间
var timestamp = Date.parse(new Date());
@@ -532,6 +540,11 @@
)
.then(function () {
that.dialogTableVisible = false;
+
+ that.$router.push({
+ path: "/policeTracking/track",
+ query: that.form,
+ });
});
},
beginTimeOrEndTime(time) {
@@ -743,6 +756,20 @@
}
});
},
+
+ // 监听鼠标的移动事件
+ handleMousemove(e) {
+ if (
+ (this.ofX != null && e.offsetX != this.ofX) ||
+ (this.ofY != null && e.offsetY != this.ofY)
+ ) {
+ this.$refs.realAudio.pause();
+ window.removeEventListener("mousemove", this.handleMousemove);
+ }
+
+ this.ofX = e.offsetX;
+ this.ofY = e.offsetY;
+ },
},
};
</script>
diff --git a/src/styles/real.scss b/src/styles/real.scss
index ed7c488..74ac371 100644
--- a/src/styles/real.scss
+++ b/src/styles/real.scss
@@ -18,3 +18,13 @@
}
+// 警情追踪图片放大中的关闭按钮的样式调整
+.el-icon-circle-close {
+ width: 40px;
+ height: 40px;
+ background: url(/img/big-img-close.png) no-repeat;
+ background-size: 100% 100%;
+}
+.el-icon-circle-close:before {
+ content: '';
+}
\ No newline at end of file
diff --git a/src/views/distribution/index.vue b/src/views/distribution/index.vue
index d898a3b..7b17b4e 100644
--- a/src/views/distribution/index.vue
+++ b/src/views/distribution/index.vue
@@ -263,7 +263,7 @@
}
var newAxios = axios.create({
- baseURL: "https://web.byisf.com:18001",
+ baseURL: "https://web.byisf.com",
withCredentials: false,
headers: {},
});
@@ -298,7 +298,7 @@
getSelectOptions() {
var newAxios = axios.create({
- baseURL: "https://web.byisf.com:18001",
+ baseURL: "https://web.byisf.com",
withCredentials: false,
headers: {},
});
diff --git a/src/views/home/home.vue b/src/views/home/home.vue
index a202209..4822ab8 100644
--- a/src/views/home/home.vue
+++ b/src/views/home/home.vue
@@ -8,7 +8,7 @@
-->
<template>
<iframe v-show="iframeState" id="show-iframe" frameborder=0 name="showHere" scrolling=auto
- src="https://web.byisf.com:18001/bigScreen/view/1349193280059879426"></iframe>
+ src="https://web.byisf.com/bigScreen/view/1349193280059879426"></iframe>
</template>
<script>
diff --git a/src/views/realTimePolice/real.vue b/src/views/realTimePolice/real.vue
index d9d0c45..4861120 100644
--- a/src/views/realTimePolice/real.vue
+++ b/src/views/realTimePolice/real.vue
@@ -2,7 +2,7 @@
* @Author: Morpheus
* @Date: 2021-03-17 15:21:33
* @Last Modified by: Morpheus
- * @Last Modified time: 2021-03-22 09:29:16
+ * @Last Modified time: 2021-03-22 11:52:42
*/
<template>
<basic-container>
@@ -1110,8 +1110,9 @@
}
)
.then(function () {
- that.onLoad(that.page, that.query);
that.dialogTableVisible = false;
+ that.onLoad(that.page, that.query);
+ that.$router.push({ path: "/policeTracking/track", query: that.form });
});
},
beginTimeOrEndTime(time) {
diff --git a/vue.config.js b/vue.config.js
index a931fb0..87e33bf 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -35,7 +35,7 @@
'/api': {
//本地服务接口地址
//target: 'http://localhost:82/',
- target: 'https://web.byisf.com:18001/api/',
+ target: 'https://web.byisf.com/api/',
//远程演示服务地址,可用于直接启动项目
//target: 'https://saber.bladex.vip/api',
ws: true,
--
Gitblit v1.9.3