|
@@ -272,7 +272,7 @@
|
|
|
class="top-dialog"
|
|
|
@close="cancelEventConfirm()">
|
|
|
<el-form label-width="80px">
|
|
|
- <el-form-item label="火灾半径" v-if="eventStatusButton=='qs'">
|
|
|
+ <el-form-item label="火灾半径" v-if="eventStatusButton=='qs'&&eventTypeXl==null">
|
|
|
<el-input type="number" v-model="sendHuoZaiBanJing" placeholder="请输入火灾半径"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="deptNameitem">
|
|
@@ -1066,7 +1066,7 @@ export default {
|
|
|
sendDeptId: null,//签收部门/发起部门
|
|
|
sendDeptName: null,//签收部门/发起部门
|
|
|
sendEventType: null,//事件类型
|
|
|
- sendHuoZaiBanJing: null,//火灾报告
|
|
|
+ sendHuoZaiBanJing: 0,//火灾报告
|
|
|
sendGuanLianYuAn: null,//关联预案
|
|
|
sendUserFegin: [],//联系人
|
|
|
sendTaskSource: null,//任务来源
|
|
@@ -1429,10 +1429,7 @@ export default {
|
|
|
click: '',
|
|
|
parameter: '',
|
|
|
keepBindPopup: false,
|
|
|
- isAggregation: false
|
|
|
- }
|
|
|
- if (res.data.length > 50) {
|
|
|
- markersMap.isAggregation = true
|
|
|
+ isAggregation: true
|
|
|
}
|
|
|
if (type == 'qsk') {
|
|
|
markersMap.icon = 'sj-icon-waterintake'
|
|
@@ -1516,7 +1513,7 @@ export default {
|
|
|
this.sendDeptName = null
|
|
|
this.sendUserFegin = []
|
|
|
this.sendEventType = null
|
|
|
- this.sendHuoZaiBanJing = null
|
|
|
+ this.sendHuoZaiBanJing = 0
|
|
|
this.sendGuanLianYuAn = null
|
|
|
this.longitude = null
|
|
|
this.latitude = null
|
|
@@ -1539,7 +1536,7 @@ export default {
|
|
|
this.sendDeptName = null
|
|
|
this.sendUserFegin = []
|
|
|
this.sendEventType = null
|
|
|
- this.sendHuoZaiBanJing = null
|
|
|
+ this.sendHuoZaiBanJing = 0
|
|
|
this.sendGuanLianYuAn = null
|
|
|
this.sendTaskTitle = null
|
|
|
this.sendTaskSource = null
|
|
@@ -1838,7 +1835,7 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
if (eventStatus == 'qs') {
|
|
|
- if (that.sendHuoZaiBanJing == '' || that.sendHuoZaiBanJing == null) {
|
|
|
+ if (that.sendHuoZaiBanJing == '' || that.sendHuoZaiBanJing == 0) {
|
|
|
that.$message.error(`请输入火灾半径!`)
|
|
|
return
|
|
|
}
|
|
@@ -1930,7 +1927,7 @@ export default {
|
|
|
click: '',
|
|
|
parameter: '',
|
|
|
keepBindPopup: false,
|
|
|
- isAggregation: false,
|
|
|
+ isAggregation: true,
|
|
|
radius: 0
|
|
|
}
|
|
|
if (res.data.catalogue.eventStatusValue == 'forest_event_status_1' && res.data.catalogue.urgeCount == 0) {
|
|
@@ -1968,7 +1965,7 @@ export default {
|
|
|
click: 'preview',
|
|
|
parameter: {code:res.data.centermonitorTCamera.cameraCode,type:res.data.centermonitorTCamera.cameraFactory},
|
|
|
keepBindPopup: false,
|
|
|
- isAggregation: false,
|
|
|
+ isAggregation: true,
|
|
|
radius: 0
|
|
|
}
|
|
|
markersMap.bindPopupHtml = '<div class="map-tip">' +
|
|
@@ -2016,7 +2013,7 @@ export default {
|
|
|
click: '',
|
|
|
parameter: '',
|
|
|
keepBindPopup: false,
|
|
|
- isAggregation: false,
|
|
|
+ isAggregation: true,
|
|
|
radius: 0
|
|
|
}
|
|
|
if (res.data.catalogue.eventStatusValue == 'forest_event_status_1' && res.data.catalogue.urgeCount == 0) {
|
|
@@ -2056,7 +2053,7 @@ export default {
|
|
|
click: 'preview',
|
|
|
parameter: {code:res.data.centermonitorTCamera.cameraCode,type:res.data.centermonitorTCamera.cameraFactory},
|
|
|
keepBindPopup: false,
|
|
|
- isAggregation: false,
|
|
|
+ isAggregation: true,
|
|
|
radius: 0
|
|
|
}
|
|
|
markersMap.bindPopupHtml = '<div class="map-tip">' +
|
|
@@ -2347,7 +2344,7 @@ export default {
|
|
|
let hwMeetingUrl;
|
|
|
selectConfigKey('hwMeetingUrl').then(res => {
|
|
|
hwMeetingUrl = res.data
|
|
|
- window.open(hwMeetingUrl+"/"+this.eventId+"/"+this.eventName+"的会议"+"/"+Cookies.get("nickName"));
|
|
|
+ window.open(hwMeetingUrl+"/joinConferences/"+this.eventId+"/"+this.eventName+"的会议"+"/"+Cookies.get("nickName"));
|
|
|
})
|
|
|
}
|
|
|
/** ----------------------------------视频会议结束------------------------------------- */
|