Newer
Older
cockpit_hxrq_front / src / layout / layoutMapSimple.vue
StephanieGitHub on 3 Jun 2021 715 bytes MOD:新增综合业务
<!--地图容器-->
<template>
  <div id="centerDiv" class="mapcontainer">
    <!--内容-->
    <slot/>
    <!--遮罩-->
    <brand/>
  </div>
</template>

<script>
import Brand from '../components/Brand/brand'
export default {
  name: 'LayoutMapSimple',
  components: { Brand }
}
</script>

<style rel="stylesheet/scss" lang="scss">
  /*整个容器*/
  .mapcontainer {
    position: relative;
    height: 100%;
    width: 100%;
    /*background-color: transparent;*/
    background-color: transparent;
  }
  /*logo遮罩*/
  .mask{
    position: fixed;
    padding-left:10px;
    padding-right:10px;
    bottom:0px;
    left:0px;
    background-color:#1A487A;
    color:#1A487A;
    line-height:2
  }

</style>