|
@@ -201,7 +201,7 @@
|
|
|
@click="updateCentereventTEventcatalogueStatus('ld',false)">
|
|
|
联动
|
|
|
</el-button>
|
|
|
- <el-button size="small" v-if="dataStatus"
|
|
|
+ <el-button size="small" v-if="dataStatus=='1'"
|
|
|
icon="el-icon-success" style="text-align:left"
|
|
|
@click="updateCentereventTEventcatalogueStatus('bj',true)">
|
|
|
办结
|
|
@@ -210,7 +210,7 @@
|
|
|
<el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
|
|
|
</el-button>
|
|
|
</div>
|
|
|
- <div class="z-info-btm-input-btn" v-else-if="eventStatusValue=='forest_event_status_5'&&dataStatus">
|
|
|
+ <div class="z-info-btm-input-btn" v-else-if="eventStatusValue=='forest_event_status_5'&&dataStatus=='1'">
|
|
|
<el-button size="small"
|
|
|
icon="el-icon-success" style="text-align:left"
|
|
|
@click="updateCentereventTEventcatalogueStatus('gd',false)">
|
|
@@ -1110,7 +1110,7 @@ export default {
|
|
|
eventStatusValue: null,//事件状态
|
|
|
eventId: null,//事件ID
|
|
|
eventType: null,//事件类型-大类
|
|
|
- dataStatus: false,//事件流程按钮
|
|
|
+ dataStatus: null,//事件流程按钮
|
|
|
deptId: null,//事件流程部门
|
|
|
eventCode: null,
|
|
|
longitude: null,
|
|
@@ -1323,7 +1323,11 @@ export default {
|
|
|
} else if (type == 'zdqy') {
|
|
|
markersMap.icon = 'sj-icon-tcqh'
|
|
|
} else if (type == 'sxt') {
|
|
|
- markersMap.icon = 'sj-icon-jkzx'
|
|
|
+ markersMap.icon = 'camera'
|
|
|
+ if (res.data[i].cameraCode != null) {
|
|
|
+ markersMap.click = 'preview'
|
|
|
+ markersMap.parameter = res.data[i].cameraCode
|
|
|
+ }
|
|
|
}
|
|
|
markersMap.lng = res.data[i].longitude
|
|
|
markersMap.lat = res.data[i].latitude
|
|
@@ -1711,7 +1715,7 @@ export default {
|
|
|
},
|
|
|
cancelEventShow() {
|
|
|
console.log('关闭事件弹窗')
|
|
|
- this.dataStatus=false
|
|
|
+ this.dataStatus=null
|
|
|
this.deptId=null
|
|
|
this.eventLogList = []
|
|
|
},
|