Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gassafety
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
gassafety
Commits
8d2d798e
Commit
8d2d798e
authored
Dec 16, 2021
by
yaqizhang
Browse files
Options
Browse Files
Download
Plain Diff
添加单位,解决冲突
parents
e2bbaee9
777f4375
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
54 additions
and
8 deletions
+54
-8
TDeviceReportDataController.java
...ontroller/dataMonitoring/TDeviceReportDataController.java
+16
-0
ITDeviceReportDataService.java
.../com/zehong/system/service/ITDeviceReportDataService.java
+8
-0
TDeviceReportDataServiceImpl.java
...ong/system/service/impl/TDeviceReportDataServiceImpl.java
+15
-0
reportData.js
gassafety-web/src/api/dataMonitoring/reportData.js
+10
-2
markerInfoWindow.vue
...fety-web/src/components/PopWindowGis/markerInfoWindow.vue
+1
-1
markerInfoWindowWarn.vue
...-web/src/components/PopWindowGis/markerInfoWindowWarn.vue
+4
-5
No files found.
gassafety-admin/src/main/java/com/zehong/web/controller/dataMonitoring/TDeviceReportDataController.java
View file @
8d2d798e
...
...
@@ -91,6 +91,22 @@ public class TDeviceReportDataController extends BaseController
return
AjaxResult
.
success
(
deviceReportDataVo
);
}
/**
* 地图弹窗获取设备监控数据详细信息
*/
@GetMapping
(
value
=
"getWindowData/{deviceId}"
)
public
AjaxResult
getWindowData
(
@PathVariable
(
"deviceId"
)
int
deviceId
)
throws
Exception
{
TDeviceReportData
deviceReportData
=
null
;
try
{
deviceReportData
=
tDeviceReportDataService
.
selectWindowDataByDeviceId
(
deviceId
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
throw
new
Exception
(
"地图弹窗获取设备监控数据详细信息失败"
);
}
return
AjaxResult
.
success
(
deviceReportData
);
}
/**
* 新增设备监控
*/
...
...
gassafety-system/src/main/java/com/zehong/system/service/ITDeviceReportDataService.java
View file @
8d2d798e
...
...
@@ -23,6 +23,14 @@ public interface ITDeviceReportDataService
*/
public
DeviceReportDataVo
selectTDeviceReportDataByDeviceId
(
int
deviceId
)
throws
Exception
;
/**
* 地图弹窗获取实时数据
*
* @param deviceId 设备ID
* @return 设备监控
*/
public
TDeviceReportData
selectWindowDataByDeviceId
(
int
deviceId
)
throws
Exception
;
/**
* 查询设备监控列表
*
...
...
gassafety-system/src/main/java/com/zehong/system/service/impl/TDeviceReportDataServiceImpl.java
View file @
8d2d798e
...
...
@@ -61,6 +61,21 @@ public class TDeviceReportDataServiceImpl implements ITDeviceReportDataService
return
deviceReportDataVo
;
}
/**
* 查询设备监控
*
* @param deviceId 设备ID
* @return 设备监控
*/
@Override
public
TDeviceReportData
selectWindowDataByDeviceId
(
int
deviceId
)
throws
Exception
{
TDeviceInfo
tDeviceInfo
=
tDeviceInfoMapper
.
selectTDeviceInfoById
(
deviceId
);
TDeviceReportData
tDeviceReportData
=
tDeviceReportDataMapper
.
selectTDeviceReportDataByDeviceNum
(
tDeviceInfo
.
getIotNo
());
return
tDeviceReportData
;
}
/**
* 查询设备监控列表
*
...
...
gassafety-web/src/api/dataMonitoring/reportData.js
View file @
8d2d798e
...
...
@@ -19,9 +19,17 @@ export function realtimeData(query) {
}
// 查询设备监控详细
export
function
getData
(
device
ReportData
Id
)
{
export
function
getData
(
deviceId
)
{
return
request
({
url
:
'/dataMonitoring/reportData/'
+
deviceReportDataId
,
url
:
'/dataMonitoring/reportData/'
+
deviceId
,
method
:
'get'
})
}
// 查询设备监控详细
export
function
getWindowData
(
deviceId
)
{
return
request
({
url
:
'/dataMonitoring/reportData/getWindowData/'
+
deviceId
,
method
:
'get'
})
}
...
...
gassafety-web/src/components/PopWindowGis/markerInfoWindow.vue
View file @
8d2d798e
...
...
@@ -141,7 +141,7 @@
<
script
>
let
closeInfoWindowTimer
=
null
;
import
{
realtimeData
,
get
Data
}
from
"@/api/dataMonitoring/reportData"
;
import
{
getWindow
Data
}
from
"@/api/dataMonitoring/reportData"
;
import
moment
from
"moment"
;
//line移入时的的infowindow
export
default
{
...
...
gassafety-web/src/components/PopWindowGis/markerInfoWindowWarn.vue
View file @
8d2d798e
...
...
@@ -157,8 +157,8 @@
</template>
<
script
>
let
closeInfoWindowTimer
;
import
{
realtimeData
,
get
Data
}
from
"@/api/dataMonitoring/reportData"
;
let
closeInfoWindowTimer
=
null
;
import
{
getWindow
Data
}
from
"@/api/dataMonitoring/reportData"
;
import
moment
from
"moment"
;
//line移入时的的infowindow
export
default
{
...
...
@@ -166,7 +166,6 @@
obj
:
{
typs
:
Object
},
title
:
""
,
data
:
{},
// realtime:{},
map
:
null
,
},
data
()
{
...
...
@@ -209,7 +208,7 @@
methods
:
{
moment
,
getDataid
()
{
getData
(
this
.
data
.
deviceId
).
then
(
response
=>
{
get
Window
Data
(
this
.
data
.
deviceId
).
then
(
response
=>
{
this
.
changeValue
(
response
.
data
)
})
...
...
@@ -479,4 +478,4 @@
display
:
flex
;
justify-content
:
space-between
;
}
</
style
>
\ No newline at end of file
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment