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
3474bf3d
Commit
3474bf3d
authored
3 years ago
by
yaqizhang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://111.61.77.35:9999/gengdidi/gassafety
into master
parents
eb665ccc
481087a2
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
77 additions
and
9 deletions
+77
-9
gassafety.scss
gassafety-web/src/assets/styles/gassafety.scss
+70
-2
lineInfoWindow.vue
gassafety-web/src/components/PopWindow/lineInfoWindow.vue
+1
-1
markerInfoWindow.vue
gassafety-web/src/components/PopWindow/markerInfoWindow.vue
+1
-1
lineInfoWindow.vue
gassafety-web/src/components/PopWindowGis/lineInfoWindow.vue
+1
-1
lineInfoWindowWarn.vue
...ty-web/src/components/PopWindowGis/lineInfoWindowWarn.vue
+1
-1
markerInfoWindow.vue
...fety-web/src/components/PopWindowGis/markerInfoWindow.vue
+1
-1
markerInfoWindowWarn.vue
...-web/src/components/PopWindowGis/markerInfoWindowWarn.vue
+1
-1
troubleInfoWindowWarn.vue
...web/src/components/PopWindowGis/troubleInfoWindowWarn.vue
+1
-1
No files found.
gassafety-web/src/assets/styles/gassafety.scss
View file @
3474bf3d
...
...
@@ -119,7 +119,9 @@
.right-bottom-data-left
{
.el-table
{
background-color
:
rgba
(
0
,
0
,
0
,
0
)
!
important
;
.el-table__body
{
width
:
100%
!
important
;
}
&
:
:
before
{
height
:
0px
!
important
;
}
...
...
@@ -175,6 +177,39 @@
}
}
}
// 滚动条样式
.el-table--scrollable-y
{
.el-table__body-wrapper
{
&
:
:-
webkit-scrollbar
{
width
:
10px
;
background
:
#012a53
;
position
:
absolute
;
top
:
0
;
}
&
:
:-
webkit-scrollbar-thumb
{
/*滚动条里面小方块*/
// border-radius: 10px;
// box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background
:
#000000
52
;
border-radius
:
8px
;
}
&
:
:-
webkit-scrollbar-track
{
/*滚动条里面轨道*/
// box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
// border-radius: 10px;
// background-color: red;
}
&
:
:-
webkit-scrollbar-button
:
start
{
// overflow: hidden;
}
&
:
:-
webkit-scrollbar-button
:
end
{
// overflow: hidden;
}
// overflow-y: none !important;
}
}
}
// gis地图里抽屉的搜索样式
.search-input
{
...
...
@@ -386,7 +421,6 @@
}
}
// 设备巡检详情页表格样式
.inspectiondetail
{
.el-table
{
...
...
@@ -440,3 +474,37 @@
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
// 滚动条公共样式
.scrollStyle
{
&
:
:-
webkit-scrollbar
{
width
:
10px
;
background
:
rgba
(
6
,
29
,
51
,
0
.8
)
//
position
:
absolute
;
// top: 0;
}
&
:
:-
webkit-scrollbar-thumb
{
/*滚动条里面小方块*/
// border-radius: 10px;
// box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background
:
#000000
53
;
border-radius
:
8px
;
}
&
:
:-
webkit-scrollbar-track
{
/*滚动条里面轨道*/
// box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
// border-radius: 10px;
// background-color: red;
}
&
:
:-
webkit-scrollbar-button
:
start
{
// overflow: hidden;
}
&
:
:-
webkit-scrollbar-button
:
end
{
// overflow: hidden;
}
// overflow-y: none !important;
}
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindow/lineInfoWindow.vue
View file @
3474bf3d
...
...
@@ -8,7 +8,7 @@
</div>
<!-- 设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<!--
<div
:title=
"obj.pipeName"
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindow/markerInfoWindow.vue
View file @
3474bf3d
...
...
@@ -12,7 +12,7 @@
</div>
</div>
<!-- 设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<div
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindowGis/lineInfoWindow.vue
View file @
3474bf3d
...
...
@@ -8,7 +8,7 @@
</div>
<!-- 报警设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<!--
<div
:title=
"obj.pipeName"
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindowGis/lineInfoWindowWarn.vue
View file @
3474bf3d
...
...
@@ -8,7 +8,7 @@
</div>
<!-- 报警设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<!--
<div
:title=
"obj.pipeName"
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindowGis/markerInfoWindow.vue
View file @
3474bf3d
...
...
@@ -8,7 +8,7 @@
</div>
</div>
<!-- 设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<div
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindowGis/markerInfoWindowWarn.vue
View file @
3474bf3d
...
...
@@ -10,7 +10,7 @@
</div>
</div>
<!-- 设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<div
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
gassafety-web/src/components/PopWindowGis/troubleInfoWindowWarn.vue
View file @
3474bf3d
...
...
@@ -10,7 +10,7 @@
</div>
</div>
<!-- 设备信息 -->
<div
class=
"content"
>
<div
class=
"content
scrollStyle
"
>
<div
class=
"eq-content display-default"
>
<div
class=
"text-wrapper"
>
<div
class=
"eq-text"
>
...
...
This diff is collapsed.
Click to expand it.
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