|
@@ -384,7 +384,10 @@
|
|
|
<vBottomMenu ref="bottomMenu"></vBottomMenu>
|
|
|
</div>
|
|
|
<eventdetailsdialog ref="eventdetailsdialog" :calendarDay="calendarDay" @getEventList="getEventList"
|
|
|
- @getTodayEvents="getTodayEvents"></eventdetailsdialog>
|
|
|
+ @getTodayEvents="getTodayEvents" @getFirespread="getFirespread"></eventdetailsdialog>
|
|
|
+
|
|
|
+ <firespread ref="firespread" :calendarDay="calendarDay" @getEventList="getEventList"
|
|
|
+ @getTodayEvents="getTodayEvents" @showEventDialog="showEventDialog"></firespread>
|
|
|
<eventLocation ref="eventLocation"></eventLocation>
|
|
|
<TVWall ref="TVWall"></TVWall>
|
|
|
</div>
|
|
@@ -414,6 +417,7 @@ import vBottomMenu from '@/components/vBottomMenu.vue' //一体化公共底部
|
|
|
import eventLocation from '@/components/eventLocation.vue' //事件定位弹窗
|
|
|
import TVWall from '@/components/TVWall.vue' //电视墙弹窗
|
|
|
import eventdetailsdialog from '@/views/eventdetailsdialog.vue' //事件详情弹窗
|
|
|
+import firespread from '@/views/firespread.vue' //事件详情弹窗
|
|
|
|
|
|
/** ----------------------------------摄像头预览开始------------------------------------- */
|
|
|
import {
|
|
@@ -434,7 +438,8 @@ export default {
|
|
|
eventLocation,
|
|
|
TVWall,
|
|
|
dateChoose,
|
|
|
- eventdetailsdialog
|
|
|
+ eventdetailsdialog,
|
|
|
+ firespread
|
|
|
},
|
|
|
created() {
|
|
|
/** ----------------------------------摄像头预览开始------------------------------------- */
|
|
@@ -637,6 +642,9 @@ export default {
|
|
|
//事件信息弹出
|
|
|
this.$refs.eventdetailsdialog.showEventDialog(eventCode)
|
|
|
},
|
|
|
+ getFirespread(eventCode){
|
|
|
+ this.$refs.firespread.showEventDialog(eventCode);
|
|
|
+ },
|
|
|
getCurrentDataStr() {
|
|
|
let date = new Date()
|
|
|
let y = date.getFullYear()
|