53 lines
1.1 KiB
Vue
53 lines
1.1 KiB
Vue
|
<template>
|
||
|
<div class="container">
|
||
|
<div class="header flex just-between">
|
||
|
<span>情报研判分析</span>
|
||
|
<span class="pointer"><el-icon><Close /></el-icon></span>
|
||
|
</div>
|
||
|
<div class="contant">
|
||
|
<div class="contant-left aside">
|
||
|
<div></div>
|
||
|
</div>
|
||
|
<div class="contant-right aside"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.container{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: #fff;
|
||
|
color: #333;
|
||
|
padding: 10px;
|
||
|
box-sizing: border-box;
|
||
|
.header{
|
||
|
height: 60px;
|
||
|
font-size: 30px;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
.contant{
|
||
|
position: relative;
|
||
|
height: calc(100% - 65px);
|
||
|
overflow: hidden;
|
||
|
overflow-y: auto;
|
||
|
.aside{
|
||
|
position: absolute;
|
||
|
width: 400px;
|
||
|
height: 100%;
|
||
|
top: 0;
|
||
|
background: red;
|
||
|
}
|
||
|
.contant-left{
|
||
|
left: 0;
|
||
|
}
|
||
|
.contant-right{
|
||
|
right: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</style>
|