Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
digital-construction
Project
Project
Details
Activity
Releases
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
张牧越
digital-construction
Commits
1a10b267
Commit
1a10b267
authored
Jun 02, 2023
by
张牧越
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix
parent
bf602083
Changes
20
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
199 additions
and
129 deletions
+199
-129
.env.development
.env.development
+1
-1
dist.zip
dist.zip
+0
-0
index.js
src/api/index.js
+2
-2
Index.vue
src/components/Index.vue
+4
-3
Index.vue
src/components/construction/Index.vue
+1
-0
Index.vue
src/components/earlywarning/Index.vue
+1
-0
Index.vue
src/components/elevator/Index.vue
+1
-0
Index.vue
src/components/fallprotection/Index.vue
+4
-3
Index.vue
src/components/management/Index.vue
+4
-3
sampleDialog.vue
src/components/management/sampleDialog.vue
+3
-3
Index.vue
src/components/noise/Index.vue
+14
-2
CorrectDialog.vue
src/components/projectcheck/CorrectDialog.vue
+143
-99
Index.vue
src/components/projectcheck/Index.vue
+1
-0
Index.vue
src/components/realname/Index.vue
+1
-0
Index.vue
src/components/safecap/Index.vue
+4
-3
mapDialog.vue
src/components/safecap/mapDialog.vue
+3
-3
Index.vue
src/components/supervisory/Index.vue
+1
-0
Index.vue
src/components/tower/Index.vue
+4
-3
Index.vue
src/components/unloadingplatform/Index.vue
+4
-3
main.js
src/main.js
+3
-1
No files found.
.env.development
View file @
1a10b267
NODE_ENV = "development"
NODE_ENV = "development"
Mock: true
Mock: true
VUE_APP_API_URL = "
http://qjwl.ythplan.com/
"
VUE_APP_API_URL = "
http://cmhv8b.natappfree.cc
"
dist.zip
0 → 100644
View file @
1a10b267
File added
src/api/index.js
View file @
1a10b267
import
request
from
"@/utils/request"
import
request
from
"@/utils/request"
import
noLoadingrequest
from
"@/utils/
r
equest"
import
noLoadingrequest
from
"@/utils/
noloadingR
equest"
export
function
getXAccessToken
(
token
)
{
export
function
getXAccessToken
(
token
)
{
return
request
({
return
request
({
...
@@ -245,7 +245,7 @@ export function getNoiseDeviceList(params) {
...
@@ -245,7 +245,7 @@ export function getNoiseDeviceList(params) {
}
}
export
function
getCurrentMonitorStatis
(
params
)
{
export
function
getCurrentMonitorStatis
(
params
)
{
return
request
({
return
noLoading
request
({
url
:
'/pweb/s/env/realtime/data'
,
url
:
'/pweb/s/env/realtime/data'
,
method
:
'get'
,
method
:
'get'
,
params
params
...
...
src/components/Index.vue
View file @
1a10b267
...
@@ -160,13 +160,14 @@ export default {
...
@@ -160,13 +160,14 @@ export default {
},
},
bodyScale
()
{
bodyScale
()
{
var
deviceHeight
=
window
.
screen
.
height
;
var
deviceHeight
=
window
.
screen
.
height
;
// var deviceWidth = window.screen.width;
var
pixelHeights
=
document
.
body
.
clientHeight
;
var
scale
=
deviceHeight
/
1250
;
// height:550=2100 height:720=1680 height:940=1250 height:2160=1080
var
minus
=
pixelHeights
-
deviceHeight
;
console
.
log
(
minus
);
var
scale
=
deviceHeight
/
1220
;
// height:550=2100 height:720=1680 height:940=1220 height:2160=1080
// var canvasScale = deviceWidth / 1920;
// var canvasScale = deviceWidth / 1920;
// 1.777778 16:9 1080
// 1.777778 16:9 1080
//1.6 16:10 1100
//1.6 16:10 1100
// 1.547 1728:890 1350
// 1.547 1728:890 1350
console
.
log
(
window
.
screen
.
width
/
window
.
screen
.
height
);
document
.
body
.
style
.
zoom
=
scale
;
document
.
body
.
style
.
zoom
=
scale
;
document
.
styleSheets
[
document
.
styleSheets
.
length
-
1
].
insertRule
(
document
.
styleSheets
[
document
.
styleSheets
.
length
-
1
].
insertRule
(
"canvas:not(.amap-layer):not(.amap-labels) {zoom: "
+
"canvas:not(.amap-layer):not(.amap-labels) {zoom: "
+
...
...
src/components/construction/Index.vue
View file @
1a10b267
...
@@ -545,6 +545,7 @@ export default {
...
@@ -545,6 +545,7 @@ export default {
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
height: 100%;
height: 100%;
padding-bottom: 0;
}
}
.side-area {
.side-area {
width: 25%;
width: 25%;
...
...
src/components/earlywarning/Index.vue
View file @
1a10b267
...
@@ -509,6 +509,7 @@ export default {
...
@@ -509,6 +509,7 @@ export default {
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
#earlywarning {
#earlywarning {
padding: 12px 20px;
padding: 12px 20px;
padding-bottom: 0;
}
}
.top-stauts {
.top-stauts {
display: flex;
display: flex;
...
...
src/components/elevator/Index.vue
View file @
1a10b267
...
@@ -401,6 +401,7 @@ export default {
...
@@ -401,6 +401,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
}
}
.side-area {
.side-area {
width: 25%;
width: 25%;
...
...
src/components/fallprotection/Index.vue
View file @
1a10b267
...
@@ -199,7 +199,7 @@ export default {
...
@@ -199,7 +199,7 @@ export default {
methods
:
{
methods
:
{
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
})
})
...
@@ -211,10 +211,10 @@ export default {
...
@@ -211,10 +211,10 @@ export default {
zoom
:
20
,
zoom
:
20
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
console
.
log
(
document
.
getElementById
(
"amap-container"
).
style
);
console
.
log
(
document
.
getElementById
(
"amap-container"
).
style
);
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
});
});
...
@@ -421,6 +421,7 @@ export default {
...
@@ -421,6 +421,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
}
}
.side-area {
.side-area {
width: 25%;
width: 25%;
...
...
src/components/management/Index.vue
View file @
1a10b267
...
@@ -225,7 +225,7 @@ export default {
...
@@ -225,7 +225,7 @@ export default {
},
},
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
})
})
...
@@ -237,11 +237,11 @@ export default {
...
@@ -237,11 +237,11 @@ export default {
zoom
:
19
,
zoom
:
19
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
map
.
on
(
"click"
,
()
=>
{});
this
.
map
.
on
(
"click"
,
()
=>
{});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
});
});
})
})
...
@@ -287,6 +287,7 @@ export default {
...
@@ -287,6 +287,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
}
}
.side-area {
.side-area {
width: 25%;
width: 25%;
...
...
src/components/management/sampleDialog.vue
View file @
1a10b267
...
@@ -74,7 +74,7 @@ export default {
...
@@ -74,7 +74,7 @@ export default {
},
},
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
}).
then
((
AMap
)
=>
{
}).
then
((
AMap
)
=>
{
...
@@ -85,10 +85,10 @@ export default {
...
@@ -85,10 +85,10 @@ export default {
zoom
:
20
,
zoom
:
20
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
document
.
getElementById
(
"sample-map-container"
).
style
.
zoom
=
document
.
getElementById
(
"sample-map-container"
).
style
.
zoom
=
1
/
scale
;
1
/
scale
;
});
});
...
...
src/components/noise/Index.vue
View file @
1a10b267
...
@@ -31,7 +31,11 @@
...
@@ -31,7 +31,11 @@
<div
class=
"mid-area"
>
<div
class=
"mid-area"
>
<Title
text=
"实时监测"
type=
"long"
></Title>
<Title
text=
"实时监测"
type=
"long"
></Title>
<ShadowContainer>
<ShadowContainer>
<div
id=
"stats-container"
>
<div
id=
"stats-container"
v-loading=
"loading"
element-loading-background=
"rgba(0, 0, 0, 0.8)"
>
<div
class=
"temp"
>
<div
class=
"temp"
>
<div
class=
"text"
>
温度/℃
</div>
<div
class=
"text"
>
温度/℃
</div>
<div
class=
"value"
style=
"color: #ff6151"
>
<div
class=
"value"
style=
"color: #ff6151"
>
...
@@ -190,6 +194,7 @@ export default {
...
@@ -190,6 +194,7 @@ export default {
activeType
:
"pm25_data"
,
activeType
:
"pm25_data"
,
lineChart
:
null
,
lineChart
:
null
,
page
:
1
,
page
:
1
,
loading
:
false
,
};
};
},
},
computed
:
{},
computed
:
{},
...
@@ -511,8 +516,10 @@ export default {
...
@@ -511,8 +516,10 @@ export default {
});
});
},
},
changeMonitor
(
monitor
,
index
)
{
changeMonitor
(
monitor
,
index
)
{
this
.
loading
=
true
;
this
.
activeIndex
=
index
;
this
.
activeIndex
=
index
;
getCurrentMonitorStatis
({
device_id
:
monitor
.
id
}).
then
((
res
)
=>
{
getCurrentMonitorStatis
({
device_id
:
monitor
.
id
}).
then
((
res
)
=>
{
this
.
loading
=
false
;
this
.
currentMonitorStatis
=
res
.
data
;
this
.
currentMonitorStatis
=
res
.
data
;
});
});
},
},
...
@@ -586,8 +593,10 @@ export default {
...
@@ -586,8 +593,10 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
.side-area {
.side-area {
width: 28%;
width: 28%;
min-width: calc(calc(100% - 880px) / 2);
}
}
.mid-area {
.mid-area {
width: calc(44% - 40px);
width: calc(44% - 40px);
...
@@ -641,7 +650,7 @@ export default {
...
@@ -641,7 +650,7 @@ export default {
}
}
#aqi-chart {
#aqi-chart {
width: 100%;
width: 100%;
height: 2
0
0px;
height: 2
5
0px;
}
}
.monitor {
.monitor {
display: flex;
display: flex;
...
@@ -934,4 +943,7 @@ export default {
...
@@ -934,4 +943,7 @@ export default {
}
}
}
}
}
}
::v-deep .el-loading-mask {
position: absolute !important;
}
</
style
>
</
style
>
\ No newline at end of file
src/components/projectcheck/CorrectDialog.vue
View file @
1a10b267
This diff is collapsed.
Click to expand it.
src/components/projectcheck/Index.vue
View file @
1a10b267
...
@@ -597,6 +597,7 @@ export default {
...
@@ -597,6 +597,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
.side-area {
.side-area {
width: 28%;
width: 28%;
}
}
...
...
src/components/realname/Index.vue
View file @
1a10b267
...
@@ -621,6 +621,7 @@ export default {
...
@@ -621,6 +621,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
.lt-area {
.lt-area {
width: 20%;
width: 20%;
}
}
...
...
src/components/safecap/Index.vue
View file @
1a10b267
...
@@ -253,7 +253,7 @@ export default {
...
@@ -253,7 +253,7 @@ export default {
methods
:
{
methods
:
{
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
})
})
...
@@ -265,14 +265,14 @@ export default {
...
@@ -265,14 +265,14 @@ export default {
zoom
:
20
,
zoom
:
20
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
map
.
on
(
"click"
,
(
e
)
=>
{
this
.
map
.
on
(
"click"
,
(
e
)
=>
{
console
.
log
(
e
);
console
.
log
(
e
);
this
.
capWindowVisible
=
false
;
this
.
capWindowVisible
=
false
;
});
});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
});
});
this
.
getSafeCapDeviceList
();
this
.
getSafeCapDeviceList
();
...
@@ -410,6 +410,7 @@ export default {
...
@@ -410,6 +410,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
.side-area {
.side-area {
width: 20%;
width: 20%;
}
}
...
...
src/components/safecap/mapDialog.vue
View file @
1a10b267
...
@@ -84,7 +84,7 @@ export default {
...
@@ -84,7 +84,7 @@ export default {
},
},
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
}).
then
((
AMap
)
=>
{
}).
then
((
AMap
)
=>
{
...
@@ -95,10 +95,10 @@ export default {
...
@@ -95,10 +95,10 @@ export default {
zoom
:
20
,
zoom
:
20
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
document
.
getElementById
(
"route-map-container"
).
style
.
zoom
=
1
/
scale
;
document
.
getElementById
(
"route-map-container"
).
style
.
zoom
=
1
/
scale
;
});
});
this
.
search
();
this
.
search
();
...
...
src/components/supervisory/Index.vue
View file @
1a10b267
...
@@ -314,6 +314,7 @@ export default {
...
@@ -314,6 +314,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
.side-area {
.side-area {
width: 20%;
width: 20%;
}
}
...
...
src/components/tower/Index.vue
View file @
1a10b267
...
@@ -446,7 +446,7 @@ export default {
...
@@ -446,7 +446,7 @@ export default {
},
},
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
})
})
...
@@ -458,10 +458,10 @@ export default {
...
@@ -458,10 +458,10 @@ export default {
zoom
:
19
,
zoom
:
19
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
});
});
this
.
map
.
on
(
"click"
,
(
e
)
=>
{
this
.
map
.
on
(
"click"
,
(
e
)
=>
{
...
@@ -723,6 +723,7 @@ export default {
...
@@ -723,6 +723,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
.side-area {
.side-area {
width: 25%;
width: 25%;
}
}
...
...
src/components/unloadingplatform/Index.vue
View file @
1a10b267
...
@@ -189,7 +189,7 @@ export default {
...
@@ -189,7 +189,7 @@ export default {
methods
:
{
methods
:
{
initMap
()
{
initMap
()
{
AMapLoader
.
load
({
AMapLoader
.
load
({
key
:
"
fc00c5b70f67a8414344682f217d4b6e
"
,
key
:
"
a7387204aeee9f238b217bad35460ba9
"
,
version
:
"1.4.15"
,
version
:
"1.4.15"
,
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
plugins
:
[
"AMap.MarkerClusterer"
,
"AMap.DistrictSearch"
],
})
})
...
@@ -201,11 +201,11 @@ export default {
...
@@ -201,11 +201,11 @@ export default {
zoom
:
20
,
zoom
:
20
,
center
:
this
.
mapCenter
,
center
:
this
.
mapCenter
,
resizeEnable
:
true
,
resizeEnable
:
true
,
mapStyle
:
"amap://styles/
darkblue
"
,
mapStyle
:
"amap://styles/
1dda787b3ac1ce28f171d2f153726eb7
"
,
});
});
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
var
scale
=
window
.
screen
.
height
/
12
5
0
;
var
scale
=
window
.
screen
.
height
/
12
2
0
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
document
.
getElementById
(
"amap-container"
).
style
.
zoom
=
1
/
scale
;
});
});
this
.
map
.
on
(
"click"
,
()
=>
{
this
.
map
.
on
(
"click"
,
()
=>
{
...
@@ -499,6 +499,7 @@ export default {
...
@@ -499,6 +499,7 @@ export default {
padding: 12px 20px;
padding: 12px 20px;
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
padding-bottom: 0;
}
}
.side-area {
.side-area {
width: 25%;
width: 25%;
...
...
src/main.js
View file @
1a10b267
...
@@ -9,7 +9,9 @@ import ShadowContainer from "@/components/ShadowContainer"
...
@@ -9,7 +9,9 @@ import ShadowContainer from "@/components/ShadowContainer"
import
*
as
echarts
from
"echarts"
import
*
as
echarts
from
"echarts"
import
scroll
from
'vue-seamless-scroll'
import
scroll
from
'vue-seamless-scroll'
import
"@/assets/iconfont/iconfont.css"
;
import
"@/assets/iconfont/iconfont.css"
;
window
.
_AMapSecurityConfig
=
{
securityJsCode
:
'c74dee3a77a5864a52dbe04fc8f93586'
,
}
Vue
.
use
(
scroll
)
Vue
.
use
(
scroll
)
Vue
.
prototype
.
$echarts
=
echarts
Vue
.
prototype
.
$echarts
=
echarts
...
...
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