648540858
3 years ago
11 changed files with 244 additions and 25 deletions
@ -0,0 +1,159 @@ |
|||||
|
<template> |
||||
|
<div id="DeviceTree" style="width: 100%;height: 100%; background-color: #FFFFFF"> |
||||
|
<el-container> |
||||
|
<el-header>设备列表</el-header> |
||||
|
<el-main style="background-color: #ffffff;"> |
||||
|
<div class="device-tree-main-box"> |
||||
|
<el-tree :props="defaultProps" :load="loadNode" lazy @node-click="handleNodeClick"@node-contextmenu="handleContextMenu"> |
||||
|
<span class="custom-tree-node" slot-scope="{ node, data }" style="width: 100%"> |
||||
|
<span v-if="node.data.type === 0 && node.data.online" title="在线设备" class="device-online iconfont icon-jiedianleizhukongzhongxin2"></span> |
||||
|
<span v-if="node.data.type === 0 && !node.data.online " title="离线设备" class="device-offline iconfont icon-jiedianleizhukongzhongxin2"></span> |
||||
|
<span v-if="node.data.type === 2 && node.data.online" title="目录" class="device-online iconfont icon-jiedianleilianjipingtai"></span> |
||||
|
<span v-if="node.data.type === 2 && !node.data.online" title="目录" class="device-offline iconfont icon-jiedianleilianjipingtai"></span> |
||||
|
<span v-if="node.data.type === 3 && node.data.online " title="在线通道" class="device-online iconfont icon-shebeileijiankongdian"></span> |
||||
|
<span v-if="node.data.type === 3 && !node.data.online" title="在线通道" class="device-offline iconfont icon-shebeileijiankongdian"></span> |
||||
|
<span v-if="node.data.type === 4 && node.data.online " title="在线通道-球机" class="device-online iconfont icon-shebeileiqiuji"></span> |
||||
|
<span v-if="node.data.type === 4 && !node.data.online" title="在线通道-球机" class="device-offline iconfont icon-shebeileiqiuji"></span> |
||||
|
<span v-if="node.data.type === 5 && node.data.online " title="在线通道-半球" class="device-online iconfont icon-shebeileibanqiu"></span> |
||||
|
<span v-if="node.data.type === 5 && !node.data.online" title="在线通道-半球" class="device-offline iconfont icon-shebeileibanqiu"></span> |
||||
|
<span v-if="node.data.type === 6 && node.data.online " title="在线通道-枪机" class="device-online iconfont icon-shebeileiqiangjitongdao"></span> |
||||
|
<span v-if="node.data.type === 6 && !node.data.online" title="在线通道-枪机" class="device-offline iconfont icon-shebeileiqiangjitongdao"></span> |
||||
|
<span v-if="node.data.online" style="padding-left: 1px" class="device-online">{{ node.label }}</span> |
||||
|
<span v-if="!node.data.online" style="padding-left: 1px" class="device-offline">{{ node.label }}</span> |
||||
|
<span> |
||||
|
<i v-if="node.data.hasGPS && node.data.online" style="color: #9d9d9d" class="device-online iconfont icon-dizhi"></i> |
||||
|
<i v-if="node.data.hasGPS && !node.data.online" style="color: #9d9d9d" class="device-offline iconfont icon-dizhi"></i> |
||||
|
</span> |
||||
|
</span> |
||||
|
</el-tree> |
||||
|
</div> |
||||
|
</el-main> |
||||
|
</el-container> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import DeviceService from "../service/DeviceService.js"; |
||||
|
|
||||
|
export default { |
||||
|
name: 'DeviceTree', |
||||
|
data() { |
||||
|
return { |
||||
|
deviceService: new DeviceService(), |
||||
|
defaultProps: { |
||||
|
children: 'children', |
||||
|
label: 'name', |
||||
|
isLeaf: 'isLeaf' |
||||
|
} |
||||
|
}; |
||||
|
}, |
||||
|
props: ['clickEvent', 'contextMenuEvent'], |
||||
|
methods: { |
||||
|
handleNodeClick(data) { |
||||
|
console.log("点击事件") |
||||
|
if(typeof (this.clickEvent) == "function") { |
||||
|
this.clickEvent(data.userData) |
||||
|
} |
||||
|
}, |
||||
|
handleContextMenu(data) { |
||||
|
console.log("右键点击事件") |
||||
|
if(typeof (this.contextMenuEvent) == "function") { |
||||
|
this.contextMenuEvent(data.userData) |
||||
|
} |
||||
|
}, |
||||
|
loadNode: function(node, resolve){ |
||||
|
if (node.level === 0) { |
||||
|
this.deviceService.getAllDeviceList((data)=>{ |
||||
|
console.log(data) |
||||
|
if (data.length > 0) { |
||||
|
let nodeList = [] |
||||
|
for (let i = 0; i < data.length; i++) { |
||||
|
console.log(data[i].name) |
||||
|
let node = { |
||||
|
name: data[i].name || data[i].deviceId, |
||||
|
isLeaf: false, |
||||
|
id: data[i].deviceId, |
||||
|
type: data[i].online, |
||||
|
online: data[i].online === 1, |
||||
|
userData: data[i] |
||||
|
} |
||||
|
nodeList.push(node); |
||||
|
} |
||||
|
resolve(nodeList) |
||||
|
}else { |
||||
|
resolve([]) |
||||
|
} |
||||
|
}, (error)=>{ |
||||
|
|
||||
|
}) |
||||
|
} |
||||
|
if (node.level === 1) { |
||||
|
this.deviceService.getAllChannel(true, node.data.id, (catalogData) => { |
||||
|
this.deviceService.getAllChannel(false, node.data.id, (channelData) => { |
||||
|
let data = catalogData.concat(channelData) |
||||
|
this.channelDataHandler(data, resolve) |
||||
|
}) |
||||
|
}) |
||||
|
}else if (node.level > 1){ |
||||
|
this.deviceService.getAllSubChannel(true, node.data.deviceId, node.data.id, (catalogData)=>{ |
||||
|
this.deviceService.getAllSubChannel(false, node.data.deviceId, node.data.id, (channelData)=>{ |
||||
|
let data = catalogData.concat(channelData) |
||||
|
this.channelDataHandler(data, resolve) |
||||
|
}) |
||||
|
}) |
||||
|
} |
||||
|
}, |
||||
|
channelDataHandler: function (data, resolve) { |
||||
|
if (data.length > 0) { |
||||
|
let nodeList = [] |
||||
|
for (let i = 0; i < data.length; i++) { |
||||
|
let type = 3; |
||||
|
if (data[i].subCount > 0) { |
||||
|
type = 2; |
||||
|
}else if (data[i].ptztype === 1 ) { // 1-球机;2-半球;3-固定枪机;4-遥控枪机 |
||||
|
type = 4; |
||||
|
}else if (data[i].ptztype === 2) { |
||||
|
type = 5; |
||||
|
}else if (data[i].ptztype === 3 || data[i].ptztype === 4) { |
||||
|
type = 6; |
||||
|
} |
||||
|
let node = { |
||||
|
name: data[i].name || data[i].channelId, |
||||
|
isLeaf: data[i].subCount === 0, |
||||
|
id: data[i].channelId, |
||||
|
deviceId: data[i].deviceId, |
||||
|
type: type, |
||||
|
online: data[i].status === 1, |
||||
|
hasGPS: data[i].longitude*data[i].latitude !== 0, |
||||
|
userData: data[i] |
||||
|
} |
||||
|
nodeList.push(node); |
||||
|
} |
||||
|
resolve(nodeList) |
||||
|
}else { |
||||
|
resolve([]) |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
destroyed() { |
||||
|
// if (this.jessibuca) { |
||||
|
// this.jessibuca.destroy(); |
||||
|
// } |
||||
|
// this.playing = false; |
||||
|
// this.loaded = false; |
||||
|
// this.performance = ""; |
||||
|
}, |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style> |
||||
|
.device-tree-main-box{ |
||||
|
text-align: left; |
||||
|
} |
||||
|
.device-online{ |
||||
|
color: #252525; |
||||
|
} |
||||
|
.device-offline{ |
||||
|
color: #727272; |
||||
|
} |
||||
|
</style> |
Binary file not shown.
Loading…
Reference in new issue