球机操作按钮移入换成手标志

merge-requests/1/head
张鑫 5 years ago
parent 01faadc8b9
commit b8529405b3

@ -31,7 +31,7 @@
</div> </div>
<!--对应各个巷道的--> <!--对应各个巷道的-->
<div v-if="tabKey == index+1" class="video-item"> <div v-if="tabKey == index+1" class="video-item">
<div class="video-box" width="480" height="270" v-for="i in item.cameras" :key="i.id"> <div class="video-box" width="480" height="270" v-for="i in item.cameras" :key="i.id" @click="showModel(i)">
<canvas :class="['video',i.id?'video'+i.id:'']"> <canvas :class="['video',i.id?'video'+i.id:'']">
</canvas> </canvas>
@ -208,6 +208,7 @@ export default {
.video-box{ .video-box{
position: relative; position: relative;
margin: 3px; margin: 3px;
cursor: pointer;
.video-name{ .video-name{
position: absolute; position: absolute;
top: 10px; top: 10px;

@ -438,6 +438,7 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
cursor: pointer;
} }
.operation-list{ .operation-list{
position: absolute; position: absolute;
@ -472,5 +473,8 @@ export default {
} }
} }
} }
img{
cursor: pointer;
}
} }
</style> </style>

Loading…
Cancel
Save