|
@@ -70,6 +70,14 @@
|
|
|
</section>
|
|
|
<footer class="footer">
|
|
|
<swiperMulti @onOpen="onOpen" @openItem="openItem"></swiperMulti>
|
|
|
+ <div class="control-log">
|
|
|
+ <div class="control-content">
|
|
|
+ <div class="chart-tab-title">控制日志</div>
|
|
|
+ <div class="log-data">
|
|
|
+ <div class="cell"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</footer>
|
|
|
<el-dialog
|
|
|
:title="item.position + '环境监测曲线'"
|
|
@@ -146,8 +154,8 @@ export default {
|
|
|
echartsList: [],
|
|
|
isQk: false,
|
|
|
lists: {},
|
|
|
- // 无关的数据,不用管
|
|
|
- test: 0
|
|
|
+ // 控制日志
|
|
|
+ logList: []
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -516,8 +524,23 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
> .footer {
|
|
|
+ display: flex;
|
|
|
margin-top: 10px;
|
|
|
height: 33.3%;
|
|
|
+ justify-content: space-between;
|
|
|
+ > .control-log {
|
|
|
+ width: 20%;
|
|
|
+ height: 100%;
|
|
|
+ margin: 0 10px 0 22px;
|
|
|
+ > .control-content {
|
|
|
+ display: flex;
|
|
|
+ border-radius: 8px;
|
|
|
+ overflow: hidden;
|
|
|
+ flex-direction: column;
|
|
|
+ background-color: #001346;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|