123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- <!--可视化公共模板 林业-->
- <template>
- <div class="visual-con">
- <!--头部-->
- <vheader></vheader>
- <!--主体-->
- <div class="visual-body">
- <supermap ref="supermap" style="width: 100%;height: 100vh;" class="indexSupermapClass" :mapDiv="'forestMap'"
- :dynamicPlotting="false"
- :mapSite="{doubleClickZoom:false}" :codes="['9fa5']" :isSideBySide="false"
- @showDangerDialog="showDangerDialog"/>
- <!-- 右侧 -->
- <div class="rightbar rightbar-index" ref="right">
- <div class="right-item1">
- </div>
- <div class="right-item2">
- <!-- 日历 -->
- <div class="forthis">
- <dv-border-box-13 backgroundColor="rgba(12, 19, 38, .90)" style="padding-bottom: 1rem;">
- <img src="../assets/images/integrated/light.png" style="width: 100%; margin-top: .4rem;"/>
- <div class="i-list-con small-bottom-margin h-30">
- <dateChoose @selectDay="selectDay"></dateChoose>
- </div>
- </dv-border-box-13>
- </div>
- <!-- 隐患列表 -->
- <div class="forthis">
- <dv-border-box-13 backgroundColor="rgba(12, 19, 38, .90)" style="padding-bottom: 1rem;">
- <img src="../assets/images/integrated/light.png" style="width: 100%; margin-top: .4rem;"/>
- <div class="this-title">
- <span>隐患列表</span>
- <dv-decoration-3 style="width:150px;height:15px;margin-right: 1rem;"/>
- </div>
- <div class="i-list-con small-bottom-margin h-44">
- <div class="event-list-search">
- <el-input
- placeholder="请输入搜索企业"
- prefix-icon="el-icon-search"
- v-model="eventSearch" @change="searchEvent(eventSearch)">
- </el-input>
- </div>
- <div class="d-l-con padding-box nowrap" v-for="(item,index) in dangerList"
- @click="dropLocation(item.latitude,item.longitude)" data-html2canvas-ignore>
- <div class="bgt-img">
- <!-- <img v-if="item.picturePath!=null&&item.picturePath!='' && item.pictureType=='image'"-->
- <!-- :src="item.picturePath"-->
- <!-- style="width: 93px;height: 64px" loading="lazy"/>-->
- <img src="../assets/images/integrated/event-img-sub.png" style="width: 93px;height: 64px"/>
- </div>
- <div class="bgt-info">
- <div v-if="item.dangerStatus=='trouble_status_2'" class="event-state-qs">
- <i class="el-icon-caret-left"></i>
- <div class="event-list-state-qs">
- {{item.dangerStatusLabel}}
- </div>
- </div>
- <div v-if="item.dangerStatus=='trouble_status_3'" class="event-state-bj">
- <i class="el-icon-caret-left"></i>
- <div class="event-list-state-bj">
- {{item.dangerStatusLabel}}
- </div>
- </div>
- <div class="bgt-info-name">{{ item.enterpriseName }} {{ item.dangerTitle }}</div>
- <div class="bgt-info-place">
- <ul>
- <li>{{ item.createTime }}</li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </dv-border-box-13>
- </div>
- </div>
- </div>
- <vBottomMenu ref="bottomMenu" @stopAudio="stopAudio" ></vBottomMenu>
- </div>
- <audio id="resource" ref="up" :src="audioSrc" controls style="display: none;"></audio>
- <dangerdetailsdialog ref="dangerdetailsdialog" :calendarDay="calendarDay"
- :bigEventTypeId="bigEventTypeId" :smallEventTypeId="smallEventTypeId"
- @getAllDanger="getAllDanger"></dangerdetailsdialog>
- <firespread ref="firespread" :calendarDay="calendarDay" @getAllDanger="getAllDanger" @showDangerDialog="showDangerDialog"></firespread>
- <eventLocation ref="eventLocation"></eventLocation>
- <TVWall ref="TVWall"></TVWall>
- </div>
- </template>
- <script>
- import dateChoose from '@/views/dateForestDanger.vue'//日历
- /** ----------------------------------weosocket开始------------------------------------- */
- import Cookies from 'js-cookie'
- /** ----------------------------------weosocket结束------------------------------------- */
- import {
- getAllDanger
- } from '@/api/forest'
- // import {
- // getEventByEventType
- // } from '@/api/village'
- import supermap from '@/components/supermap' //超图
- import supermapNotProcessed from '@/components/supermap' //超图
- import supermapProcessed from '@/components/supermap' //超图
- import vheader from '@/components/v-header.vue' //一体化共用头部
- import vBottomMenu from '@/components/vBottomMenu.vue' //一体化公共底部菜单
- import eventLocation from '@/components/eventLocation.vue' //隐患定位弹窗
- import TVWall from '@/components/TVWall.vue' //电视墙弹窗
- import dangerdetailsdialog from '@/views/dangerdetailsdialog.vue' //隐患详情弹窗
- import firespread from '@/views/firespread.vue' //隐患详情弹窗
- /** ----------------------------------摄像头预览开始------------------------------------- */
- import {
- getDahuaVideoServer
- } from '@/api/dahua/dahua'
- import DHWs from '@/dahua/lib/DHWs'
- /** ----------------------------------摄像头预览结束------------------------------------- */
- let echarts = require('echarts')
- export default {
- components: {
- supermap,
- supermapNotProcessed,
- supermapProcessed,
- vheader,
- vBottomMenu,
- eventLocation,
- TVWall,
- dateChoose,
- dangerdetailsdialog,
- firespread
- },
- created() {
- /** ----------------------------------摄像头预览开始------------------------------------- */
- const DHWsInstance = DHWs.getInstance()
- this.ws = DHWsInstance
- /** ----------------------------------摄像头预览结束------------------------------------- */
- /** ----------------------------------底部按钮公用组件开始------------------------------------- */
- window.showDialog = this.showDialog
- window.choseLayerSwitching = this.choseLayerSwitching
- window.choseLayerSwitchingList = this.choseLayerSwitchingList
- /** ----------------------------------底部按钮公用组件结束------------------------------------- */
- },
- mounted() {
- // this.getEventByEventType(this.getCurrentDataStr())
- this.getAllDanger(this.getCurrentDataStr(),false)
- /** ----------------------------------weosocket开始------------------------------------- */
- // this.initWebSocket()
- /** ----------------------------------weosocket结束------------------------------------- */
- this.selectTaskList()//获取任务
- // setInterval(() => {
- // if(this.calendarDay == this.getCurrentDataStr()){
- // this.getAllDanger(this.getCurrentDataStr(),0,0,true);
- // this.getEventByEventType(this.getCurrentDataStr(),true);
- // }
- // }, 10000)
- },
- data() {
- return {
- //警报MP3文件
- audioSrc:require('@/assets/jingbao.mp3'),
- calendarDay: this.getCurrentDataStr(),
- //左侧部门隐患数量
- villageTypeXlList: [],
- //右侧隐患列表
- dangerList: [],
- dangerListnew: [],
- dangerListAll: [],
- eventSearch: '',//隐患列表搜索
- listCurrentIndex1: '',
- bigEventTypeId: '',
- smallEventTypeId: '',
- /** ----------------------------------weosocket开始------------------------------------- */
- weosocket: false,
- websock: '',
- setIntervalWesocketPush: null,
- /** ----------------------------------weosocket结束------------------------------------- */
- /** ----------------------------------摄像头预览开始------------------------------------- */
- activePanel: 'key1',
- isLogin: false,
- cameraParams: [],
- ws: null,
- /** ----------------------------------摄像头预览结束------------------------------------- */
- markersList: [], //点位列表
- cameraList: [] //摄像头列表
- }
- },
- /** ----------------------------------weosocket开始------------------------------------- */
- destroyed() { //离开页面关闭Socket连接
- if (this.websock) {
- clearInterval(this.setIntervalWesocketPush)
- this.websock.close()
- this.websock = null
- }
- },
- /** ----------------------------------weosocket结束------------------------------------- */
- methods: {
- searchEvent(eventSearch) {
- let that = this
- //隐患列表搜索
- this.dangerListnew = []
- if (eventSearch != null && eventSearch != '') {
- for (var i = 0; i < this.dangerListAll.length; i++) {
- if (this.dangerListAll[i].enterpriseName.indexOf(eventSearch) > -1) {
- this.dangerListnew.push(this.dangerListAll[i])
- }
- }
- this.dangerList = this.dangerListnew
- } else {
- this.dangerList = this.dangerListAll
- }
- if (this.dangerList != null && this.dangerList.length > 0) {
- for (let i = 0; i < this.dangerList.length; i++) {
- let markersMap = {
- lng: 124.59,
- lat: 43.02,
- icon: 'marker',
- bindPopupHtml: '',
- click: '',
- parameter: '',
- keepBindPopup: false,
- isAggregation: false
- }
- markersMap.click = 'showDangerDialog'
- markersMap.parameter = this.dangerList[i].id
- markersMap.isAggregation = true
- if (this.dangerList[i].dangerStatus == 'trouble_status_2') {
- markersMap.icon = 'sj-icon-map-qianshou'
- } else if (this.dangerList[i].dangerStatus == 'trouble_status_3') {
- markersMap.icon = 'sj-icon-map-banjie'
- }
- markersMap.lng = this.dangerList[i].longitude
- markersMap.lat = this.dangerList[i].latitude
- markersMap.bindPopupHtml = '<div class="map-tip">' +
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>经纬度:' + this.dangerList[i].longitude + ',' + this.dangerList[i].latitude + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>' +
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>隐患名称:' + this.dangerList[i].eventName + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>' +
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>隐患时间:' + this.dangerList[i].createTime + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>'
- if (this.dangerList[i].picturePath != null && this.dangerList[i].picturePath != '' && this.dangerList[i].pictureType=='image') {
- markersMap.bindPopupHtml += '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- '<img src="' + this.dangerList[i].picturePath + '" style="width: 150px;height: 100px"/>' +
- ' </div>' +
- ' </div>' +
- ' </span>'
- }
- markersMap.bindPopupHtml += '</div>'
- that.markersList.push(markersMap)
- }
- setTimeout(() => {
- that.$refs.supermap.clearM(false)
- that.$refs.supermap.clearM(true)
- that.$refs.supermap.setMarkers(that.markersList)
- }, 2000)
- } else {
- setTimeout(() => {
- that.$refs.supermap.clearM(false)
- that.$refs.supermap.clearM(true)
- }, 2000)
- }
- },
- dropLocation(lat, lng) {
- this.$refs.supermap.dropLocation(lat, lng)
- },
- showDangerDialog(dangerId) {
- //隐患信息弹出
- this.$refs.dangerdetailsdialog.showDangerDialog(dangerId)
- },
- getFirespread(eventCode){
- this.$refs.firespread.showDangerDialog(eventCode);
- },
- getCurrentDataStr() {
- let date = new Date()
- let y = date.getFullYear()
- let m = date.getMonth() + 1
- m = m < 10 ? '0' + m : m
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- return y + '-' + m + '-' + d
- },
- selectDay(day) {//日历点击
- // this.getEventByEventType(day)
- this.getAllDanger(day,false)
- this.calendarDay = day
- },
- selectTaskList() {
- this.$refs.bottomMenu.selectTaskList()
- },
- // getEventByEventType(day,loading) {
- // let that = this
- // //左侧获取隐患部门数量
- // getEventByEventType({ day: day },loading).then(res => {
- // this.villageTypeXlList = res.data
- // })
- // },
- getAllDanger(day,loading) {
- let that = this
- this.dangerList = []
- this.dangerListAll = []
- //右侧获取隐患列表
- getAllDanger({
- createDate: day
- },loading).then(res => {
- this.dangerList = res.data
- this.dangerListAll = res.data
- that.markersList = []
- if (this.dangerList != null && this.dangerList.length > 0) {
- if(this.dangerList[0].eventStatusValue == 'forest_event_status_1'){
- that.$refs.bottomMenu.updateAlert();
- that.$refs.up.play();
- }
- for (let i = 0; i < this.dangerList.length; i++) {
- let markersMap = {
- lng: 124.59,
- lat: 43.02,
- icon: 'marker',
- bindPopupHtml: '',
- click: '',
- parameter: '',
- keepBindPopup: false,
- isAggregation: false
- }
- markersMap.isAggregation = true
- markersMap.click = 'showDangerDialog'
- markersMap.parameter = this.dangerList[i].id
- if (this.dangerList[i].dangerStatus == 'trouble_status_2') {
- markersMap.icon = 'sj-icon-map-qianshou'
- } else if (this.dangerList[i].dangerStatus == 'trouble_status_3') {
- markersMap.icon = 'sj-icon-map-banjie'
- }
- markersMap.lng = this.dangerList[i].longitude
- markersMap.lat = this.dangerList[i].latitude
- markersMap.bindPopupHtml = '<div class="map-tip">' +
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>经纬度:' + this.dangerList[i].longitude + ',' + this.dangerList[i].latitude + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>' +
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>隐患名称:' + this.dangerList[i].dangerTitle + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>' +
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>隐患时间:' + this.dangerList[i].createTime + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>'+
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>隐患状态:' + this.dangerList[i].dangerStatusLabel + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>'+
- '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- ' <h4>隐患企业:' + this.dangerList[i].enterpriseName + '</h4>' +
- ' </div>' +
- ' </div>' +
- ' </span>'
- if (this.dangerList[i].picturePath != null && this.dangerList[i].picturePath != '' && this.dangerList[i].pictureType=='image') {
- markersMap.bindPopupHtml += '<span>' +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- '<img src="' + this.dangerList[i].picturePath + '" style="width: 150px;height: 100px"/>' +
- ' </div>' +
- ' </div>' +
- ' </span>'
- }
- markersMap.bindPopupHtml += '</div>'
- that.markersList.push(markersMap)
- }
- setTimeout(() => {
- that.$refs.supermap.clearM(false)
- that.$refs.supermap.clearM(true)
- that.$refs.supermap.setMarkers(that.markersList)
- }, 2000)
- } else {
- setTimeout(() => {
- that.$refs.supermap.clearM(false)
- that.$refs.supermap.clearM(true)
- }, 2000)
- }
- })
- },
- stopAudio(){
- this.$refs.up.pause();//停止播放音乐
- this.$refs.up.currentTime = 0;
- },
- /** ----------------------------------weosocket开始------------------------------------- */
- initWebSocket() { //初始化weosocket
- const wsuri = 'wss://www.hmzzxc.com:10012/websocket/forest-' + Cookies.get('username')
- this.websock = new WebSocket(wsuri)
- console.log('建立websocket连接')
- this.websock.onopen = this.websocketonopen
- this.websock.onmessage = this.websocketonmessage
- this.websock.onerror = this.websocketonerror
- this.websock.onclose = this.websocketclose
- this.websock.onclose = this.websocketclose
- },
- websocketonopen() { //连接建立之后执行send方法发送数据
- console.log('websocket连接成功')
- this.weosocket = true
- this.sendPing()
- },
- websocketonerror() { //连接建立失败重连
- this.initWebSocket()
- },
- websocketonmessage(e) { //数据接收
- console.log('接收数据', e.data)
- },
- websocketsend(Data) { //数据发送
- this.websock.send(Data)
- },
- websocketclose(e) { //关闭
- console.log('断开连接', e)
- // clearInterval(this.setIntervalWesocketPush)
- this.weosocket = false
- },
- /**发送心跳
- * @param {number} time 心跳间隔毫秒 默认5000
- * @param {string} ping 心跳名称 默认字符串ping
- */
- sendPing(time = 5000, ping = {
- 'fromId': 'forest',
- 'fromUserId': Cookies.get('username'),
- 'toUserId': Cookies.get('username')
- }) {
- clearInterval(this.setIntervalWesocketPush)
- this.websock.send(JSON.stringify(ping))
- this.setIntervalWesocketPush = setInterval(() => {
- if (this.weosocket) {
- this.websock.send(JSON.stringify(ping))
- } else {
- this.initWebSocket()
- }
- }, time)
- },
- /** ----------------------------------weosocket结束------------------------------------- */
- /** ----------------------------------底部按钮公用组件开始------------------------------------- */
- showDialog(click) {
- if (click == 'eventLocation') {
- this.$refs.eventLocation.showEventLocation()
- this.$refs.supermap.isEditableLayers = false
- this.$refs.bottomMenu.showChild = false
- this.$refs.bottomMenu.showBanChild = false
- this.$refs.bottomMenu.showChangChild = false
- } else if (click == 'editableLayers') {
- this.$refs.bottomMenu.showChild = false
- this.$refs.bottomMenu.showBanChild = false
- this.$refs.bottomMenu.showChangChild = false
- if (!this.$refs.supermap.isEditableLayers) {
- this.$refs.supermap.isEditableLayers = true
- } else {
- this.$refs.supermap.isEditableLayers = false
- }
- } else if (click == 'layerSwitching') {
- this.$refs.supermap.isEditableLayers = false
- this.$refs.bottomMenu.showBanChild = false
- this.$refs.bottomMenu.showChangChild = false
- if (!this.$refs.bottomMenu.showChild) {
- this.$refs.bottomMenu.showChild = true
- } else {
- this.$refs.bottomMenu.showChild = false
- }
- } else if (click == 'TVWall') {
- this.$refs.TVWall.showTVWall()
- this.$refs.supermap.isEditableLayers = false
- this.$refs.bottomMenu.showChild = false
- this.$refs.bottomMenu.showBanChild = false
- this.$refs.bottomMenu.showChangChild = false
- } else if (click == 'forestban') {
- this.$refs.supermap.isEditableLayers = false
- this.$refs.bottomMenu.showChild = false
- this.$refs.bottomMenu.showChangChild = false
- if (!this.$refs.bottomMenu.showBanChild) {
- this.$refs.bottomMenu.showBanChild = true
- } else {
- this.$refs.bottomMenu.showBanChild = false
- }
- } else if (click == 'forestchang') {
- this.$refs.supermap.isEditableLayers = false
- this.$refs.bottomMenu.showBanChild = false
- this.$refs.bottomMenu.showChild = false
- if (!this.$refs.bottomMenu.showChangChild) {
- this.$refs.bottomMenu.showChangChild = true
- } else {
- this.$refs.bottomMenu.showChangChild = false
- }
- }
- },
- //选择图层
- choseLayerSwitching(url, isClear) {
- this.$refs.supermap.layerSwitching(url, isClear)
- },
- //选择图层(传递数组)
- choseLayerSwitchingList(urlList) {
- this.$refs.supermap.layerSwitchingList(urlList)
- },
- /** ----------------------------------底部按钮公用组件结束------------------------------------- */
- /** ----------------------------------隐患弹窗开始------------------------------------- */
- /** ----------------------------------隐患弹窗结束------------------------------------- */
- /** ----------------------------------摄像头预览开始------------------------------------- */
- alertLogin: function() {
- this.$modal.msg('登录中....')
- },
- alertLoginSuccess: function() {
- this.$modal.msgSuccess('登录成功!')
- },
- alertLoginFailed: function() {
- this.$modal.msgError('登陆失败!')
- },
- alertReinstall: function() {
- this.$modal.msgWarning('请重新安装客户端')
- },
- /** 预览按钮操作 */
- preview(channelCode) {
- getDahuaVideoServer().then(newResponse => {
- this.ws.detectConnectQt().then(res => {
- if (res) { // 连接客户端成功
- this.alertLogin()
- this.ws.login({
- loginIp: newResponse.loginIp,
- loginPort: newResponse.loginPort,
- userName: newResponse.userName,
- userPwd: newResponse.userPwd,
- token: '',
- https: 1
- })
- this.ws.on('loginState', (res) => {
- this.isLogin = res
- if (res) {
- this.alertLoginSuccess()
- this.activePanel = 'key2'
- this.realTimeVideoDialog(channelCode)
- } else {
- this.alertLoginFailed()
- }
- })
- } else { // 连接客户端失败
- this.alertReinstall()
- }
- })
- })
- },
- realTimeVideoDialog(cameraParams) { // 调用弹窗实时播放接口
- if (!this.isLogin) {
- this.$Message.info('正在登陆客户端,请稍等......')
- return false
- }
- this.ws.openVideo(cameraParams)
- }
- /** ----------------------------------摄像头预览结束------------------------------------- */
- }
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- @import '@/assets/styles/base.scss';
- </style>
|