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
f2372b27
Commit
f2372b27
authored
Sep 15, 2021
by
纪泽龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
隐患生成工单无标题问题解决,gis下边表格透明度问题解决
parent
5bdd931d
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
89 additions
and
40 deletions
+89
-40
gassafety.scss
gassafety-web/src/assets/styles/gassafety.scss
+5
-19
markerInfoWindow.vue
...fety-web/src/components/PopWindowGis/markerInfoWindow.vue
+1
-1
markerInfoWindowWarn.vue
...-web/src/components/PopWindowGis/markerInfoWindowWarn.vue
+1
-1
checkPipeLineLocation.vue
...ty-web/src/components/mapDialog/checkPipeLineLocation.vue
+0
-2
gaodeMap.js
gassafety-web/src/utils/gaodeMap.js
+13
-5
index.vue
gassafety-web/src/views/device/map/index.vue
+41
-0
CreateWorkTrouble.vue
...views/enterprise/mapView/components/CreateWorkTrouble.vue
+1
-1
index.vue
gassafety-web/src/views/enterprise/mapView/index.vue
+27
-11
No files found.
gassafety-web/src/assets/styles/gassafety.scss
View file @
f2372b27
...
...
@@ -56,7 +56,7 @@
.el-dialog
:not
(
.is-fullscreen
)
{
margin-top
:
6vh
!
important
;
}
// 全局表格样式
.el-table
{
.el-table__header-wrapper
,
.el-table__fixed-header-wrapper
{
...
...
@@ -118,11 +118,11 @@
.el-table__header-wrapper
,
.el-table__fixed-header-wrapper
{
tr
{
background-color
:
#213b52
60
!
important
;
background-color
:
#213b52
cc
!
important
;
}
th
{
word-break
:
break-word
;
background-color
:
#213b52
60
!
important
;
background-color
:
#213b52
cc
!
important
;
color
:
rgba
(
123
,
248
,
244
,
1
);
height
:
30px
;
font-size
:
13px
;
...
...
@@ -134,13 +134,7 @@
}
.el-table__body-wrapper
{
.el-table__row
:nth-child
(
2n
+
1
)
{
// background-color: #e6e6e6;
background-color
:
#213b52
60
;
// &:hover {
// td {
// background-color: #f4f4f4;
// }
// }
background-color
:
#213b52
b3
;
&
:hover
td
{
background-color
:
#7bf8f4
30
!
important
;
}
...
...
@@ -152,20 +146,12 @@
}
}
.el-table__row
:nth-child
(
2n
)
{
// background-color: #213b52;
background-color
:
#063157
60
;
// &:hover {
// td {
// background-color: #e6e6e6;
// }
// }
background-color
:
#063157
cc
;
&
:hover
td
{
background-color
:
#7bf8f4
30
!
important
;
}
td
{
.cell
{
// color: #053b6a;
color
:
#fff
;
}
}
...
...
gassafety-web/src/components/PopWindowGis/markerInfoWindow.vue
View file @
f2372b27
...
...
@@ -47,7 +47,7 @@
</el-col>
<div>
<span>
管道
所在地址:
</span>
<span>
设备
所在地址:
</span>
<span>
{{
data
.
pipeAddr
}}
</span>
</div>
<div>
...
...
gassafety-web/src/components/PopWindowGis/markerInfoWindowWarn.vue
View file @
f2372b27
...
...
@@ -49,7 +49,7 @@
</el-col>
<div>
<span>
管道
所在地址:
</span>
<span>
设备
所在地址:
</span>
<span>
{{
data
.
pipeAddr
}}
</span>
</div>
<div>
...
...
gassafety-web/src/components/mapDialog/checkPipeLineLocation.vue
View file @
f2372b27
...
...
@@ -15,8 +15,6 @@
<el-button
type=
"primary"
size=
"small"
@
click=
"confirmFun"
>
确定
</el-button>
<el-button
size=
"small"
@
click=
"$emit('dialogcancelFun')"
>
取消
</el-button>
</el-row>
</el-dialog>
</
template
>
<
script
>
...
...
gassafety-web/src/utils/gaodeMap.js
View file @
f2372b27
import
createPop
from
"./createPop"
;
import
{
lineColor
}
from
"./mapCommon.js"
;
import
regulatorBox
from
"../components/PopWindow/regulatorBox.vue"
;
import
valveWell
from
"../components/PopWindow/valveWell.vue"
;
import
flowMeter
from
"../components/PopWindow/flowMeter.vue"
;
...
...
@@ -9,6 +10,7 @@ import { delDeviceInfo, updateDeviceInfo } from "@/api/device/deviceInfo";
import
markerInfoWindow
from
"../components/PopWindow/markerInfoWindow.vue"
;
import
{
getArray
}
from
"@/utils/gassafety.js"
;
import
{
delPipe
,
updatePipe
}
from
"@/api/device/pipe.js"
;
import
vue
from
"../main"
;
let
defaultCenter
=
"石家庄"
;
export
let
map
;
...
...
@@ -527,7 +529,7 @@ class gaodeMap {
console
.
log
(
"包装的数组"
,
arr
);
for
(
let
i
=
0
;
i
<
arr
.
length
;
i
++
)
{
const
item
=
arr
[
i
];
let
{
coordinates
}
=
item
;
let
{
coordinates
,
pipePressure
}
=
item
;
// console.log("coordinates",coordinates)
// let path = coordinates ? getArray(coordinates) :[];
// 字符串转二维数组
...
...
@@ -535,7 +537,7 @@ class gaodeMap {
let
path
=
coordinates
?
eval
(
coordinates
)
:
[];
let
polyline
=
new
AMap
.
Polyline
({
path
,
strokeColor
:
"#2EE7E7"
,
strokeColor
:
lineColor
[
pipePressure
]
,
strokeWeight
:
4
,
strokeOpacity
:
0.9
,
zIndex
:
50
,
...
...
@@ -590,7 +592,9 @@ class gaodeMap {
this
.
polyLinesColorClear
(
polyline
);
});
polyline
.
on
(
"mouseout"
,
e
=>
{
polyline
.
setOptions
({
strokeColor
:
"#2EE7E7"
});
// polyline.setOptions({ strokeColor: "#2EE7E7" });
polyline
.
setOptions
({
strokeColor
:
lineColor
[
pipePressure
]
});
// infoWindow.close();
});
// 计算info的位置
...
...
@@ -710,7 +714,9 @@ class gaodeMap {
polyLinesColorClear
(
polylines
)
{
this
.
polyLines
.
forEach
(
item
=>
{
if
(
item
!=
polylines
)
{
item
.
setOptions
({
strokeColor
:
"#2EE7E7"
});
const
{
pipePressure
}
=
item
.
getExtData
().
lineData
;
// item.setOptions({ strokeColor: "#2EE7E7" });
item
.
setOptions
({
strokeColor
:
lineColor
[
pipePressure
]
});
}
});
}
...
...
@@ -913,12 +919,14 @@ class gaodeMap {
this
.
polyLines
.
forEach
(
item
=>
{
item
.
polyEditor
.
close
();
let
opstions
=
item
.
getExtData
();
const
{
pipePressure
}
=
opstions
.
lineData
;
opstions
.
isState
=
0
;
item
.
setExtData
(
opstions
);
let
attr
=
item
.
getOptions
();
// attr.strokeColor = "#F7FE38";
attr
.
strokeColor
=
"#2EE7E7"
;
attr
.
strokeColor
=
lineColor
[
pipePressure
]
;
item
.
setOptions
(
attr
);
});
}
...
...
gassafety-web/src/views/device/map/index.vue
View file @
f2372b27
...
...
@@ -108,6 +108,26 @@
<div
:class=
"{ active: mapStyle }"
@
click=
"mapChange(2)"
>
全景地图
</div>
</div>
<div
class=
"pipePressure"
>
<!-- <div>管道压力</div> -->
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`1`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`1`] }"
></div>
低压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`2`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`2`] }"
></div>
中压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`3`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`3`] }"
></div>
次高压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`4`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`4`] }"
></div>
高压
</div>
</div>
<div
class=
"switch"
@
click=
"backFlag = !backFlag"
>
<img
v-if=
"!backFlag"
src=
"@/assets/images/l.png"
alt=
""
/>
<img
v-else
src=
"@/assets/images/r.png"
alt=
""
/>
...
...
@@ -233,6 +253,8 @@ import gaodeMap from "utils/gaodeMap.js";
import
{
pipeAllInfoList
}
from
"@/api/device/pipe.js"
;
import
{
map
,
DEVICE_TYPE
,
mapOperateType
}
from
"utils/gaodeMap.js"
;
import
{
getAllDeviceInfo
}
from
"@/api/device/deviceInfo"
;
import
{
lineColor
}
from
"@/utils/mapCommon.js"
;
export
default
{
data
()
{
return
{
...
...
@@ -243,6 +265,7 @@ export default {
radio1
:
""
,
// 1新建,2编辑,3删除,点按钮变色
targetNum
:
0
,
lineColor
,
backFlag
:
true
,
// 卫星与全景地图的切换
...
...
@@ -1161,6 +1184,24 @@ input[type="radio"] {
}
}
}
.pipePressure
{
position
:
absolute
;
color
:
#fff
;
right
:
-80px
;
top
:
50px
;
padding
:
1px
;
// background: rgba(6, 29, 51, 0.8);
.hasColorBox
{
// border: 1px solid #053b6a;
padding
:
2px
5px
;
margin-bottom
:
5px
;
&
>
div
{
display
:
inline-block
;
width
:
10px
;
height
:
10px
;
}
}
}
.scroll
{
// height: 100%;
position
:
relative
;
...
...
gassafety-web/src/views/enterprise/mapView/components/CreateWorkTrouble.vue
View file @
f2372b27
...
...
@@ -78,7 +78,7 @@ export default {
},
gaoMap
:
""
,
open
:
false
,
title
:
""
,
title
:
"
隐患生成工单
"
,
inspector
:
[],
loading
:
false
,
alarmId
:
""
,
...
...
gassafety-web/src/views/enterprise/mapView/index.vue
View file @
f2372b27
...
...
@@ -106,10 +106,22 @@
<!-- 管道压力 -->
<div
class=
"pipePressure"
>
<!-- <div>管道压力</div> -->
<div
class=
"hasColorBox"
:style=
"{color:lineColor[`1`]}"
>
低压
</div>
<div
class=
"hasColorBox"
:style=
"{color:lineColor[`2`]}"
>
中压
</div>
<div
class=
"hasColorBox"
:style=
"{color:lineColor[`3`]}"
>
次高
</div>
<div
class=
"hasColorBox"
:style=
"{color:lineColor[`4`]}"
>
高压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`1`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`1`] }"
></div>
低压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`2`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`2`] }"
></div>
中压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`3`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`3`] }"
></div>
次高压
</div>
<div
class=
"hasColorBox"
:style=
"{ color: lineColor[`4`] }"
>
<div
:style=
"{ backgroundColor: lineColor[`4`] }"
></div>
高压
</div>
</div>
<div
class=
"switch"
@
click=
"backFlag = !backFlag"
>
<img
v-if=
"!backFlag"
src=
"@/assets/images/l.png"
alt=
""
/>
...
...
@@ -1700,16 +1712,20 @@ input[type="radio"] {
.pipePressure
{
position
:
absolute
;
color
:
#fff
;
right
:
-
52
px
;
right
:
-
80
px
;
top
:
50px
;
padding
:
1px
;
padding
:
1px
;
// background: rgba(6, 29, 51, 0.8);
.hasColorBox
{
border
:
1px
solid
#053b6a
;
padding
:
2px
5px
;
margin-bottom
:
5px
;
.hasColorBox
{
// border: 1px solid #053b6a;
padding
:
2px
5px
;
margin-bottom
:
5px
;
&
>
div
{
display
:
inline-block
;
width
:
10px
;
height
:
10px
;
}
}
}
.scroll
{
// height: 100%;
...
...
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