|
|
|
@ -31,6 +31,9 @@
|
|
|
|
<div class="status-item">
|
|
|
|
<div class="status-item">
|
|
|
|
设备号:{{ commit_uid }}
|
|
|
|
设备号:{{ commit_uid }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="status-item">
|
|
|
|
|
|
|
|
设备名称:{{ device_name }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="status-item">
|
|
|
|
<div class="status-item">
|
|
|
|
版本号:1.0.0
|
|
|
|
版本号:1.0.0
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@ -58,8 +61,12 @@ const route = useRoute()
|
|
|
|
if (route.query.comm_uid) {
|
|
|
|
if (route.query.comm_uid) {
|
|
|
|
localStorage.setItem('central_control_comm_uid', route.query.comm_uid)
|
|
|
|
localStorage.setItem('central_control_comm_uid', route.query.comm_uid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (route.query.deviceName) {
|
|
|
|
|
|
|
|
localStorage.setItem('central_control_device_name', route.query.deviceName)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const commit_uid = localStorage.getItem('central_control_comm_uid')
|
|
|
|
const commit_uid = localStorage.getItem('central_control_comm_uid')
|
|
|
|
|
|
|
|
const device_name = localStorage.getItem('central_control_device_name')
|
|
|
|
|
|
|
|
|
|
|
|
const functionCards = [
|
|
|
|
const functionCards = [
|
|
|
|
{ key: 'monitor', title: '实时监控', icon: Camera, route: '/monitoring' },
|
|
|
|
{ key: 'monitor', title: '实时监控', icon: Camera, route: '/monitoring' },
|
|
|
|
|