zhanghua
2022-12-14 f979c8991929e0e8372f86b34537172d77c3739e
src/views/intelligentPatrol/trendAnalysis/index.vue
@@ -35,6 +35,10 @@
      </div>
    </div>
    <div class="trend-main">
      <div class="map">
            <MyMap></MyMap>
      </div>
      <div class="trend-main-echarts" id="echarts">
      </div>
@@ -46,8 +50,10 @@
import * as echarts from 'echarts'
import basecase from "@/api/operate/basecase";
import { CATEGOTY } from "@/utils/helper";
import MyMap from "@/components/map";
export default {
  components :{MyMap},
  created() {
    this.searchList()
  },
@@ -129,7 +135,7 @@
<style lang="scss" scoped>
.trend-analysis {
  height: 100%;
  padding: 10vh 10vw;
  padding: 10vh 0vw;
  color: #4b9bb7;
  display: flex;
@@ -185,7 +191,7 @@
  .trend-main {
    flex: 1;
    border: 1px solid #09152f;
    display: flex;
    .trend-main-echarts {
      width: 500px;
      height: 400px;
@@ -198,4 +204,8 @@
    }
  }
}
.map {
  height: 488px;
  min-width: 460px;
}
</style>