|
@@ -129,7 +129,7 @@
|
|
|
size="small"
|
|
|
icon="el-icon-s-grid"
|
|
|
@click="showTVWallDiaLog()"
|
|
|
- v-show="eventType == 1"
|
|
|
+ v-show="cameraCode != '' && cameraCode!= null && cameraCode != undefined"
|
|
|
>视频联动</el-button>
|
|
|
<el-button size="small" icon="el-icon-upload" @click="showEventdetailsdialog()">动态标绘</el-button>
|
|
|
</div>
|
|
@@ -360,8 +360,8 @@
|
|
|
<div class="bottomLeft">
|
|
|
<div class="leftItem d-l-con padding-box nowrap" style="white-space: nowrap;" v-for="(item,index) in depteventList">
|
|
|
<div class="bgt-info">
|
|
|
- <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}"
|
|
|
- @click="dutysystemSelect(item.deptId,item.deptName,item.id)">{{ item.deptName }}
|
|
|
+ <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}" :title="item.deptName"
|
|
|
+ @click="dutysystemSelect(item.deptId,item.deptName,item.id)"> {{ item.deptName.length > 10 ? item.deptName.slice(0, 10) + "..." : item.deptName }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -425,8 +425,8 @@
|
|
|
<div class="bottomLeft">
|
|
|
<div class="leftItem d-l-con padding-box nowrap" v-for="(item,index) in depteventList">
|
|
|
<div class="bgt-info">
|
|
|
- <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}"
|
|
|
- @click="dutysystemSelect(item.deptId,item.deptName,item.id)">{{ item.deptName }}
|
|
|
+ <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}" :title="item.deptName"
|
|
|
+ @click="dutysystemSelect(item.deptId,item.deptName,item.id)"> {{ item.deptName.length > 10 ? item.deptName.slice(0, 10) + "..." : item.deptName }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|