Commit 691991bb by 潘建波

事件检索和违法检索详情页加视频播放功能

1 parent 9c8ef13e
No preview for this file type
{"commit":"e099984c055e080adad6a3f2e43fc2b0df9aa893","commitDate":"2020-7-17 14:52","buildDate":"2020-7-17 14:53","version":"2.0.6","info":"🐛【BUG】修改车道线不能用折线问题 【BUG】检测区域和车道区域用曲线标识 【BUG】优化标定绘制长时间绘制会消失问题 【BUG】修改智能检索图片放大后关闭按钮标识不明显问题"}
\ No newline at end of file
{"commit":"9c8ef13e0df6cc663dfbeccec82bed44242aafe3","commitDate":"2020-7-17 18:21","buildDate":"2020-7-20 16:39","version":"2.0.6","info":"feat✨ 增加特殊车辆字段"}
\ No newline at end of file
......@@ -92,6 +92,8 @@ a:active{
.no-btn{
color:#cccccc;
}
.no-video-btn{
}
.custom-tree-node{
width: 100%;
}
......@@ -148,6 +150,9 @@ a:active{
.leftButton{
float: left;
}
.playButton {
float: left;
}
.detaiCon span{
display: inline-block;
width: 120px;
......
......@@ -263,6 +263,18 @@
<el-button type="danger" @click="detailDel" class="leftButton"
>删 除</el-button
>
<el-button
@click="playFun('1', detailObj)"
:disabled="
detailObj.video && detailObj.video[0].src_url != '' ? false : true
"
:class="{
playButton: true,
'no-video-btn':
detailObj.video && detailObj.video[0].src_url != '' ? false : true
}"
>播 放</el-button
>
<el-button type="primary" @click="leftFun">上一条</el-button>
<el-button type="primary" @click="rightFun">下一条</el-button>
<el-button @click="detailVisible = false">关 闭</el-button>
......
......@@ -336,6 +336,18 @@
<el-button type="danger" @click="detailDel" class="leftButton"
>删 除</el-button
>
<el-button
@click="playFun('1', detailObj)"
:disabled="
detailObj.video && detailObj.video[0].src_url != '' ? false : true
"
:class="{
playButton: true,
'no-video-btn':
detailObj.video && detailObj.video[0].src_url != '' ? false : true
}"
>播 放</el-button
>
<el-button type="primary" @click="leftFun">上一条</el-button>
<el-button type="primary" @click="rightFun">下一条</el-button>
<el-button @click="detailVisible = false">关 闭</el-button>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!