视频监控

This commit is contained in:
yanran200730
2022-04-21 16:11:45 +08:00
parent 49dabf912c
commit a01d79fe2f
2 changed files with 37 additions and 8 deletions

View File

@@ -221,9 +221,16 @@
}, },
renderTreeItem: function (h, {node, data}) { renderTreeItem: function (h, {node, data}) {
let show = data.deviceStatus == 1 ? 'show' : '' let show = data.deviceStatus == 1 ? 'show' : ''
const ids = this.ids.split(',')
const index = ids.indexOf(data.id) + 1
console.log(index, ids, data.id)
if (node.isLeaf) { if (node.isLeaf) {
return ( return (
<div class="flexRow"> <div class="flexRow">
{index > 0 ?
<span>{ index }</span>
: ''
}
<i class={['iconfont', 'iconshipinjiankong', show]}/> <i class={['iconfont', 'iconshipinjiankong', show]}/>
<div>{node.label}</div> <div>{node.label}</div>
</div> </div>
@@ -466,6 +473,17 @@
font-size: 14px; font-size: 14px;
color: #fff; color: #fff;
span {
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
color: #fff;
font-size: 12px;
border-radius: 1px;
background: #2266FF;
}
.iconfont { .iconfont {
color: #89b; color: #89b;

View File

@@ -24,16 +24,15 @@
</div> </div>
<div title>设备列表</div> <div title>设备列表</div>
<div fill class="deviceList"> <div fill class="deviceList">
<el-tree ref="deviceTree" :render-content="renderItem" :data="treeData" :props="propsConfig" <el-tree ref="deviceTree" highlight-current :render-content="renderItem" :data="treeData" :props="propsConfig"
@node-click="handleNodeClick" @node-contextmenu="nodeContextmenu" @node-click="handleNodeClick" @node-contextmenu="nodeContextmenu"
:filter-node-method="handleFilter"/> :filter-node-method="handleFilter"/>
<ul <ul
v-if="isShowMenu && menuInfo.node.type==1 && permissions('video_config')" v-if="isShowMenu && menuInfo.node.type==1 && permissions('video_config')"
class="el-dropdown-menu el-popper" class="el-dropdown-menu el-popper"
:style="{top: menuInfo.y + 'px', left: menuInfo.x + 'px', position: 'fixed', zIndex: 2023}" :style="{top: menuInfo.y + 'px', left: menuInfo.x + 'px', position: 'fixed', zIndex: 2023}"
x-placement="top-end"> x-placement="top-end">
<li class="el-dropdown-menu__item" @click="handleTreeCommand('edit', menuInfo.node)">修改名称</li> <li class="el-dropdown-menu__item" @click="handleTreeCommand('edit', menuInfo.node)">修改名称</li>
<!-- <li class="el-dropdown-menu__item" @click="handleTreeCommand('area', menuInfo.node)">行政地区</li> -->
<li class="el-dropdown-menu__item" @click="handleTreeCommand('locate', menuInfo.node)">地图标绘</li> <li class="el-dropdown-menu__item" @click="handleTreeCommand('locate', menuInfo.node)">地图标绘</li>
</ul> </ul>
</div> </div>
@@ -276,8 +275,20 @@ export default {
background: transparent; background: transparent;
color: #fff; color: #fff;
.el-tree-node:focus > .el-tree-node__content, .el-tree-node__content:hover { .el-tree-node__content {
background: rgba(#fff, .1); background: transparent!important;
}
.el-tree-node__children .is-current .el-tree-node__content {
background: linear-gradient(90deg, #299FFF 0%, #0C61FF 100%)!important;
}
.el-tree-node__content:hover {
background: transparent;
}
.el-tree-node__content {
height: 32px;
} }
} }