|
@@ -923,8 +923,8 @@
|
|
|
<div class="main_model">图形结构
|
|
|
<div class="maxh221">
|
|
|
<h3>mitt.vue</h3>
|
|
|
- <sixindex/><br>
|
|
|
- <sixchine/>
|
|
|
+ <!-- <sixindex/><br>
|
|
|
+ <sixchine/> -->
|
|
|
<!-- 右侧边栏开始 -->
|
|
|
<!-- 优化监控echarts -->
|
|
|
<div class="opt_moitor" v-if="tabactive=='优化监控'">
|
|
@@ -941,6 +941,7 @@
|
|
|
class="femFooter"
|
|
|
|
|
|
>
|
|
|
+ <div class="pading_foter">
|
|
|
<!-- 日志 -->
|
|
|
<div class="footerTitle el-tag--primary">
|
|
|
<div>
|
|
@@ -970,6 +971,7 @@
|
|
|
v-model="logs"
|
|
|
></el-input>
|
|
|
</div>
|
|
|
+ </div>
|
|
|
</el-footer>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -995,9 +997,9 @@ import sixtop from './echart/six_top.vue'
|
|
|
import sixbottom from './echart/six_bottom.vue'
|
|
|
import sixindex from './demo/index.vue'
|
|
|
import sixchine from './demo/chine.vue'
|
|
|
-let logs=ref("信息框");
|
|
|
+let logs=ref("");
|
|
|
let elodingfalse=ref(false);
|
|
|
-let footerShow=ref(true);
|
|
|
+let footerShow=ref(false);
|
|
|
const treeData = ref([
|
|
|
// {
|
|
|
// id:0,
|
|
@@ -1302,11 +1304,11 @@ const optiongroup = [
|
|
|
label: '直升机',
|
|
|
options: [
|
|
|
{
|
|
|
- value: '气动优化',
|
|
|
+ value: '气动优化1',
|
|
|
label: '气动优化',
|
|
|
},
|
|
|
{
|
|
|
- value: '气弹优化',
|
|
|
+ value: '气弹优化2',
|
|
|
label: '气弹优化',
|
|
|
},
|
|
|
{
|
|
@@ -1554,4 +1556,33 @@ const targetclick=()=>{
|
|
|
padding: 2px;
|
|
|
}
|
|
|
//没有子节点
|
|
|
+
|
|
|
+/* Webkit内核浏览器(Chrome、Safari等)*/
|
|
|
+::-webkit-scrollbar {
|
|
|
+ width: 4px;
|
|
|
+ /* 设置滚动条宽度 */
|
|
|
+ background-color: #dcdfe6;
|
|
|
+ /* 设置滚动条背景颜色 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 滑块样式 */
|
|
|
+::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 2px;
|
|
|
+ /* 设置滑块边角半径 */
|
|
|
+ background-color:#eee ;
|
|
|
+ /* 设置滑块背景颜色 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 滑块在hover状态时的样式 */
|
|
|
+::-webkit-scrollbar-thumb:hover {
|
|
|
+ background-color: #dcdfe6;
|
|
|
+ /* 设置滑块在hover状态下的背景颜色 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 滚动条轨道样式 */
|
|
|
+::-webkit-scrollbar-track {
|
|
|
+ background-color: #dcdfe6;
|
|
|
+ /* 设置滚动条轨道背景颜色 */
|
|
|
+}
|
|
|
+
|
|
|
</style>
|