mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-06-21 02:27:49 +08:00
94 lines
2.6 KiB
Vue
94 lines
2.6 KiB
Vue
<template>
|
||
<div id="dhCameraConfigPage">
|
||
<el-page-header content="相机配置" @back="$emit('close')" />
|
||
<div class="camera-config-body">
|
||
<div class="config-sidebar">
|
||
<el-menu :default-active="activeTab" @select="handleMenuSelect">
|
||
<el-menu-item index="base">
|
||
<i class="iconfont icon-wxbzhuye" style="margin-right: 10px" />
|
||
<span>基础属性</span>
|
||
</el-menu-item>
|
||
<el-menu-item index="image">
|
||
<i class="iconfont icon-shishiyulan" style="margin-right: 10px" />
|
||
<span>图像属性</span>
|
||
</el-menu-item>
|
||
<el-menu-item index="encode">
|
||
<i class="iconfont icon-shipin" style="margin-right: 10px" />
|
||
<span>编码设置</span>
|
||
</el-menu-item>
|
||
<el-menu-item index="alarm">
|
||
<i class="iconfont icon-baojing" style="margin-right: 10px" />
|
||
<span>报警配置</span>
|
||
</el-menu-item>
|
||
</el-menu>
|
||
</div>
|
||
<div class="config-content">
|
||
<basicPropertyConfig v-if="activeTab === 'base'" :device-id="deviceId" :channel-device-id="channelDeviceId" />
|
||
<imagePropertyConfig v-if="activeTab === 'image'" :device-id="deviceId" :channel-device-id="channelDeviceId" />
|
||
<div v-if="activeTab === 'osd'" class="placeholder-tab">OSD配置(开发中)</div>
|
||
<div v-if="activeTab === 'encode'" class="placeholder-tab">编码设置(开发中)</div>
|
||
<div v-if="activeTab === 'alarm'" class="placeholder-tab">报警配置(开发中)</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import basicPropertyConfig from './basicPropertyConfig.vue'
|
||
import imagePropertyConfig from './imagePropertyConfig.vue'
|
||
|
||
export default {
|
||
name: 'CameraConfigPage',
|
||
components: { basicPropertyConfig, imagePropertyConfig },
|
||
props: {
|
||
deviceId: { type: String, default: null },
|
||
channelDeviceId: { type: String, default: null }
|
||
},
|
||
data() {
|
||
return {
|
||
activeTab: 'base'
|
||
}
|
||
},
|
||
methods: {
|
||
handleMenuSelect(index) {
|
||
this.activeTab = index
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
#dhCameraConfigPage {
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.camera-config-body {
|
||
flex: 1;
|
||
display: flex;
|
||
overflow: hidden;
|
||
padding-top: 16px;
|
||
}
|
||
.config-sidebar {
|
||
width: 160px;
|
||
flex: none;
|
||
border-right: 1px solid #e6e6e6;
|
||
}
|
||
.config-sidebar .el-menu {
|
||
border-right: none;
|
||
}
|
||
.config-content {
|
||
flex: 1;
|
||
overflow: auto;
|
||
padding: 0 16px;
|
||
}
|
||
.placeholder-tab {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: 200px;
|
||
color: #909399;
|
||
font-size: 16px;
|
||
}
|
||
</style>
|