wvp-GB28181-pro/web_src/src/components/operations.vue

116 lines
2.7 KiB
Vue
Raw Normal View History

2024-11-01 17:45:58 +08:00
<template>
2024-11-01 17:59:55 +08:00
<div id="operations" style="width: 100%; height: 100%">
<el-container >
2024-11-01 17:45:58 +08:00
<el-aside width="200px" style="text-align: left">
<el-menu :default-active="activeIndex" :height="winHeight" @select="handleSelect">
<el-menu-item index="systemInfo">
<template slot="title"><i class="el-icon-message"></i>平台信息</template>
</el-menu-item>
<el-submenu index="log">
<template slot="title"><i class="el-icon-message"></i>日志信息</template>
<el-menu-item index="historyLog">历史日志</el-menu-item>
2024-11-01 17:45:58 +08:00
<el-menu-item index="realTimeLog">实时日志</el-menu-item>
</el-submenu>
<el-submenu index="senior">
<template slot="title"><i class="el-icon-setting"></i>高级维护</template>
<el-menu-item disabled="disabled" index="tcpdump">网络抓包</el-menu-item>
<el-menu-item disabled="disabled" index="networkCard">网卡信息</el-menu-item>
</el-submenu>
</el-menu>
</el-aside>
<el-main style="background-color: #FFFFFF; margin: 20px">
2024-11-01 17:45:58 +08:00
<operationsForRealLog v-if="activeIndex==='realTimeLog'"></operationsForRealLog>
<operationsForHistoryLog v-if="activeIndex==='historyLog'"></operationsForHistoryLog>
2024-11-01 17:45:58 +08:00
</el-main>
</el-container>
</div>
</template>
<script>
import operationsForRealLog from './operationsForRealLog'
import operationsForHistoryLog from './operationsForHistoryLog.vue'
2024-11-01 17:45:58 +08:00
export default {
name: 'log',
components: {
operationsForRealLog, operationsForHistoryLog
2024-11-01 17:45:58 +08:00
},
data() {
return {
loading: false,
winHeight: (window.innerHeight - 170) + "px",
2024-11-01 17:45:58 +08:00
data: [],
filter: "",
activeIndex: "historyLog"
2024-11-01 17:45:58 +08:00
};
},
created() {
console.log('created');
},
destroyed() {
},
methods: {
handleSelect: function (index) {
this.activeIndex = index;
},
}
};
</script>
<style>
.videoList {
display: flex;
flex-wrap: wrap;
align-content: flex-start;
}
.video-item {
position: relative;
width: 15rem;
height: 10rem;
margin-right: 1rem;
background-color: #000000;
}
.video-item-img {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 100%;
height: 100%;
}
.video-item-img:after {
content: "";
display: inline-block;
position: absolute;
z-index: 2;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 3rem;
height: 3rem;
background-image: url("../assets/loading.png");
background-size: cover;
background-color: #000000;
}
.video-item-title {
position: absolute;
bottom: 0;
color: #000000;
background-color: #ffffff;
line-height: 1.5rem;
padding: 0.3rem;
width: 14.4rem;
}
</style>