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
4f258f39
Commit
4f258f39
authored
Aug 13, 2021
by
yaqizhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
折线图
parent
66a7235f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
92 additions
and
207 deletions
+92
-207
alarmdetail.vue
...-web/src/views/dataMonitoring/deviceAlarm/alarmdetail.vue
+2
-0
index.vue
...afety-web/src/views/dataMonitoring/realtimeData/index.vue
+1
-1
realtimedetail.vue
.../src/views/dataMonitoring/realtimeData/realtimedetail.vue
+81
-201
inspectiondetail.vue
...iews/deviceInspection/inspectionPlan/inspectiondetail.vue
+7
-5
detail.vue
gassafety-web/src/views/workOrder/basicsInfo/detail.vue
+1
-0
No files found.
gassafety-web/src/views/dataMonitoring/deviceAlarm/alarmdetail.vue
View file @
4f258f39
...
...
@@ -785,7 +785,9 @@ export default {
this
.
dataListdetail1
.
push
(
obj1
);
this
.
dataListdetail2
.
push
(
obj2
);
this
.
dataListdetail3
.
push
(
obj3
);
this
.
form
=
response
.
data
;
console
.
log
(
"this.form"
,
this
.
form
)
this
.
active
=
parseInt
(
response
.
data
.
orderStatus
)
+
1
;
if
(
this
.
form
.
deviceInfoList
.
length
>
0
){
this
.
gaoMap
.
resetMapCenter
([
this
.
form
.
deviceInfoList
[
0
].
longitude
,
this
.
form
.
deviceInfoList
[
0
].
latitude
]);
...
...
gassafety-web/src/views/dataMonitoring/realtimeData/index.vue
View file @
4f258f39
...
...
@@ -177,7 +177,7 @@ export default {
this
.
$router
.
push
({
path
:
'/realtimeData/realtimedetail'
,
query
:{
device
ReportDataId
:
row
.
deviceReportData
Id
device
Id
:
row
.
device
Id
}
})
//带参跳转
},
...
...
gassafety-web/src/views/dataMonitoring/realtimeData/realtimedetail.vue
View file @
4f258f39
This diff is collapsed.
Click to expand it.
gassafety-web/src/views/deviceInspection/inspectionPlan/inspectiondetail.vue
View file @
4f258f39
...
...
@@ -252,19 +252,21 @@ export default {
getInspectionPlan
(){
getInspectionPlan
(
this
.
planId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
console
.
log
(
"this.form"
,
this
.
form
)
this
.
active
=
parseInt
(
response
.
data
.
orderStatus
)
+
1
;
if
(
this
.
form
.
deviceInfoList
.
length
>
0
){
this
.
gaoMap
.
resetMapCenter
([
this
.
form
.
deviceInfoList
[
0
].
longitude
,
this
.
form
.
deviceInfoList
[
0
].
latitude
]);
if
(
this
.
form
.
deviceList
.
length
>
0
){
this
.
gaoMap
.
resetMapCenter
([
this
.
form
.
deviceList
[
0
].
longitude
,
this
.
form
.
deviceList
[
0
].
latitude
]);
}
for
(
var
i
=
0
;
i
<
this
.
form
.
device
Info
List
.
length
;
i
++
){
let
obj
=
this
.
form
.
device
Info
List
[
i
];
for
(
var
i
=
0
;
i
<
this
.
form
.
deviceList
.
length
;
i
++
){
let
obj
=
this
.
form
.
deviceList
[
i
];
this
.
gaoMap
.
addMarker
(
DEVICE_TYPE
.
WORKORDER
,
obj
)
}
if
(
this
.
form
.
orderType
==
'1'
)
{
// 获取设备列表树
let
data
=
{
key1
:
this
.
form
.
device
Info
List
,
key1
:
this
.
form
.
deviceList
,
key2
:
this
.
form
.
pipeList
};
deviceTree
(
data
).
then
(
response
=>
{
...
...
gassafety-web/src/views/workOrder/basicsInfo/detail.vue
View file @
4f258f39
...
...
@@ -394,6 +394,7 @@ export default {
this
.
form
=
response
.
data
;
this
.
active
=
parseInt
(
response
.
data
.
orderStatus
)
+
1
;
if
(
this
.
form
.
deviceInfoList
.
length
>
0
){
console
.
log
(
"this.form.deviceInfoList"
,
this
.
form
.
deviceInfoList
)
this
.
gaoMap
.
resetMapCenter
([
this
.
form
.
deviceInfoList
[
0
].
longitude
,
this
.
form
.
deviceInfoList
[
0
].
latitude
]);
}
for
(
var
i
=
0
;
i
<
this
.
form
.
deviceInfoList
.
length
;
i
++
){
...
...
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