|
@@ -1,18 +1,21 @@
|
|
|
<template>
|
|
|
- <div class="app-container">
|
|
|
+ <div class="map-container">
|
|
|
<el-row :gutter="10">
|
|
|
- <el-col :span="8" class="h-full-calc">
|
|
|
- <el-card style="height: 100%">
|
|
|
+ <el-col :span="12" class="h-full-calc">
|
|
|
+ <el-card class="h-40">
|
|
|
<PointsRanking></PointsRanking>
|
|
|
</el-card>
|
|
|
+ <el-card class="h-60 mt-10">
|
|
|
+ <MapHy></MapHy>
|
|
|
+ </el-card>
|
|
|
</el-col>
|
|
|
- <el-col :span="8" class="h-full-calc">
|
|
|
+ <!-- <el-col :span="8" class="h-full-calc">
|
|
|
<el-card class="h-full">
|
|
|
<MapHy></MapHy>
|
|
|
</el-card>
|
|
|
- </el-col>
|
|
|
- <el-col :span="8" class="h-full-calc">
|
|
|
- <el-card class="h-48">
|
|
|
+ </el-col> -->
|
|
|
+ <el-col :span="12" class="h-full-calc">
|
|
|
+ <el-card class="h-40">
|
|
|
<Box2
|
|
|
v-if="chartOptions.data && chartOptions.data.length > 0"
|
|
|
:chartOptions="chartOptions"
|
|
@@ -20,7 +23,7 @@
|
|
|
></Box2>
|
|
|
<el-empty v-else></el-empty>
|
|
|
</el-card>
|
|
|
- <el-card class="h-48 mt-10">
|
|
|
+ <el-card class="h-60 mt-10">
|
|
|
<Box1
|
|
|
v-if="chartOptions.data && chartOptions.data.length > 0"
|
|
|
:chartOptions="chartOptions"
|
|
@@ -76,7 +79,10 @@ export default {
|
|
|
.mt-10 {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
-
|
|
|
+.map-container {
|
|
|
+ padding: 15px;
|
|
|
+ background-color: rgba(11, 42, 96, 0.8);
|
|
|
+}
|
|
|
.h-full-calc {
|
|
|
height: calc(100vh - 200px);
|
|
|
}
|
|
@@ -89,6 +95,12 @@ export default {
|
|
|
.el-card {
|
|
|
height: 100%;
|
|
|
}
|
|
|
+.h-40 {
|
|
|
+ height: calc(40% - 5px);
|
|
|
+}
|
|
|
+.h-60 {
|
|
|
+ height: calc(60% - 5px);
|
|
|
+}
|
|
|
.h-48 {
|
|
|
height: calc(50% - 5px);
|
|
|
}
|
|
@@ -99,5 +111,20 @@ export default {
|
|
|
.el-card__body {
|
|
|
height: 100%;
|
|
|
}
|
|
|
+ .el-card {
|
|
|
+ border: none;
|
|
|
+ background-color: rgba(11, 42, 96, 0);
|
|
|
+ }
|
|
|
+ .el-table {
|
|
|
+ background-color: transparent;
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+ .el-table tr {
|
|
|
+ background-color: transparent !important;
|
|
|
+ }
|
|
|
+ .el-table th {
|
|
|
+ color: white;
|
|
|
+ background-color: transparent !important;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|