/*
|
* @Author: Morpheus
|
* @Date: 2022-05-11 15:00:23
|
* @Last Modified by: Morpheus
|
* @Last Modified time: 2022-07-07 16:41:07
|
* 农产品监管
|
*/
|
<template>
|
<div class="container">
|
<remote ref="modalForm" />
|
|
<!-- <div class="l-echarts">
|
<div class="t-box">
|
<div class="title">
|
<div class="text">占位</div>
|
</div>
|
<div class="content" id="LTBOX"></div>
|
</div>
|
<div class="b-box">
|
<div class="title">
|
<div class="text">占位</div>
|
</div>
|
<div class="content" id="LBBOX"></div>
|
</div>
|
</div>
|
<div class="r-echarts">
|
<div class="t-box">
|
<div class="title">
|
<div class="text">占位</div>
|
</div>
|
<div class="content" id="RTBOX"></div>
|
</div>
|
<div class="b-box">
|
<div class="title">
|
<div class="text">占位</div>
|
</div>
|
<div class="content" id="RBBOX"></div>
|
</div>
|
</div>-->
|
</div>
|
</template>
|
|
<script>
|
export default {
|
|
}
|
</script>
|
|
<style scoped lang="scss">
|
.container {
|
position: relative;
|
width: 100%;
|
height: 100%;
|
|
.popup {
|
position: absolute;
|
top: 0;
|
left: 0;
|
right: 0;
|
bottom: 0;
|
margin: auto;
|
|
img {
|
width: 100%;
|
height: 100%;
|
}
|
}
|
|
.l-echarts {
|
left: 0;
|
}
|
|
.r-echarts {
|
right: 0;
|
}
|
|
.l-echarts,
|
.r-echarts {
|
top: 0;
|
display: flex;
|
flex-direction: column;
|
position: absolute;
|
width: 24%;
|
height: 100%;
|
|
& > div {
|
flex: 1;
|
margin: 5px 0;
|
}
|
}
|
|
.l-echarts,
|
.r-echarts {
|
div {
|
.title {
|
position: relative;
|
height: 40px;
|
background: url('/img/bg/echarts-title.png');
|
background-size: 100% 100%;
|
color: #fff;
|
|
.text {
|
position: absolute;
|
top: 0;
|
left: 20px;
|
right: auto;
|
bottom: 0;
|
margin: auto;
|
font-size: 18px;
|
line-height: 40px;
|
font-weight: 700;
|
font-style: italic;
|
letter-spacing: 2px;
|
}
|
}
|
|
.content {
|
height: calc(100% - 40px);
|
background: url('/img/bg/echarts-content.png');
|
background-size: 100% 100%;
|
}
|
}
|
}
|
|
.map {
|
padding: 5px 10px;
|
display: flex;
|
position: absolute;
|
top: 0;
|
left: 24%;
|
width: 52%;
|
height: calc(100%);
|
box-sizing: border-box;
|
background: red;
|
}
|
}
|
</style>
|