index.vue 2.02 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
<!--
 * @Author: your name
 * @Date: 2022-04-11 14:11:04
 * @LastEditTime: 2022-04-14 10:45:52
 * @LastEditors: Please set LastEditors
 * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 * @FilePath: /gassafety-progress/gassafetyprogress-web/src/views/operationMonitor/xunjianxuncha/index.vue
-->
<template>
  <div class="app-container xjxc">
    <div class="wrapper flex-h">
      <div class="top flex">
        <div class="left">
          <Left />
        </div>
        <div class="middle">
          <Middle />
        </div>
        <div class="right">
          <Right />
        </div>
      </div>
      <div class="middle"></div>
      <div class="bottom">
        <MapBottom/>
      </div>
    </div>
  </div>
</template>

<script>
import Left from "./components/Left";
import Middle from "./components/Middle";
import Right from "./components/Right";
import MapBottom from "./components/MapBottom";
export default {
  components: {
    Left,
    Middle,
    Right,
    MapBottom
  },
  data() {
    return {

    };
  },
  mounted(){

  }
};
</script>

<style lang="scss" scoped>
.app-main {
}
.xjxc {
  height: calc(100vh - 50px) !important;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex-h {
  display: flex;
  // justify-content: space-around;
  flex-direction: column;
  height: 100%;
  .top {
    height: 38.7%;

    .left {
      width: 36.5%;
      padding: 15px 24px 19px;
    }
    .middle {
      width: 35.3%;
      padding: 15px 80px 19px 71px;
    }
    .right {
      width: 25.2%;
      padding: 15px 29px;
    }
    > div {
      // box-shadow: 2px 0px 13px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.1);
      border-radius: 3px;
    }
  }
  >.middle {
    margin: 5px 0;
    background: repeating-linear-gradient(135deg, transparent, transparent 3px, #D6D6D6 3px, #D6D6D6 8px);
    height: 2px;
  }
  .bottom {
    flex: 1;
    background-color: red;

  }
  > div {
    // height: 50%;
  }
}
</style>