Merge branch 'hi-ucs-dev' of http://192.168.124.50:3000/wuhongjian/hi-ucs into hi-ucs-dev

This commit is contained in:
gongjiale 2022-11-22 19:16:27 +08:00
commit 95657f9aee
2 changed files with 83 additions and 67 deletions

View File

@ -2,7 +2,7 @@
* @Author: Light * @Author: Light
* @Date: 2022-11-18 11:53:43 * @Date: 2022-11-18 11:53:43
* @LastEditors: Light * @LastEditors: Light
* @LastEditTime: 2022-11-22 14:50:32 * @LastEditTime: 2022-11-22 19:13:02
* @Description: 告诉大家这是什么 * @Description: 告诉大家这是什么
--> -->
<template> <template>
@ -69,7 +69,10 @@
</a-list-item> </a-list-item>
</template> </template>
<template #header> <template #header>
<div class="title">已申请列表</div> <div class="title">
已申请列表
<a-button type="link" @click="goToApply">详情</a-button>
</div>
</template> </template>
</a-list> </a-list>
</div> </div>
@ -104,8 +107,7 @@
@cancel="clear" @cancel="clear"
> >
<div style="width: 100%; display: flex; justify-content: center"> <div style="width: 100%; display: flex; justify-content: center">
<div <div style="width: 100%; height: 100%; position: relative">
style="width: 100%; height: 100%; position: relative">
<div class="waterMark waterMark-left-top"> <div class="waterMark waterMark-left-top">
{{ userInfo.usernameShow }} {{ userInfo.usernameShow }}
</div> </div>
@ -137,7 +139,7 @@
import mybus from '@/myplugins/mybus' import mybus from '@/myplugins/mybus'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import H5Player from '@/views/home/components/H5Player.vue' import H5Player from '@/views/home/components/H5Player.vue'
import {getCameraLiveStream} from '@/api/file' import { getCameraLiveStream } from '@/api/file'
const dataList = reactive({ toBeApplied: [], requested: [], selectItem: {} }) const dataList = reactive({ toBeApplied: [], requested: [], selectItem: {} })
const showVisible = ref(false) const showVisible = ref(false)
// //
@ -243,10 +245,18 @@
} }
} }
} }
const goToApply = () => {
router.push({
path: '/personalCenter',
query: {
type: 'apply',
},
})
}
const selectItem = (item) => { const selectItem = (item) => {
if (item.approveStatus == '通过') { if (item.approveStatus == '通过') {
dataList.selectItem = item dataList.selectItem = item
getVideoUrl(item.cameraInfo); getVideoUrl(item.cameraInfo)
} else { } else {
dataList.selectItem = {} dataList.selectItem = {}
showVisible.value = false showVisible.value = false
@ -302,12 +312,12 @@
initApply() initApply()
const videoUrl = ref('') const videoUrl = ref('')
// //
const getVideoUrl = (data) =>{ const getVideoUrl = (data) => {
let param = data; let param = data
getCameraLiveStream(param).then((res) => { getCameraLiveStream(param).then((res) => {
//console.log('555555rrrrr',res) //console.log('555555rrrrr',res)
if(res.data.data){ if (res.data.data) {
videoUrl.value = res.data.data.url; videoUrl.value = res.data.data.url
} }
showVisible.value = true showVisible.value = true
}) })

View File

@ -193,10 +193,11 @@ import { ElMessage } from 'element-plus'
// parentId // parentId
mybus.off('getCameraByParentId') mybus.off('getCameraByParentId')
mybus.on('getCameraByParentId', (parentId) => { mybus.on('getCameraByParentId', (parentId) => {
debugger
this.mapSearchParam.parentId = parentId this.mapSearchParam.parentId = parentId
this.mapSearchParam.type = "1" this.mapSearchParam.type = "1"
this.mapSearchParam.pageSize = 10000 this.mapSearchParam.pageSize = 10000
this.getCameraByParentId() this.getCameraByParentId('','department')
}) })
// //
mybus.off('selectTablePoint') mybus.off('selectTablePoint')
@ -314,6 +315,9 @@ import { ElMessage } from 'element-plus'
lng: item.location.x, lng: item.location.x,
} }
this.hiMapFun.mapFlyTo(latLng) this.hiMapFun.mapFlyTo(latLng)
if(this.addressType=='2'){
mybus.emit('openOperationPopup', [item]);
}
}, },
// //
areaSelectResource(){ areaSelectResource(){
@ -395,7 +399,7 @@ import { ElMessage } from 'element-plus'
} }
}) })
}, },
getCameraByParentId(type) { getCameraByParentId(type,dataName) {
if (!this.whoShow1.itShowXiHaiAn) { if (!this.whoShow1.itShowXiHaiAn) {
getCameraByParentId(this.mapSearchParam).then((res) => { getCameraByParentId(this.mapSearchParam).then((res) => {
console.log('根据parent查询摄像头', res.data.data) console.log('根据parent查询摄像头', res.data.data)
@ -431,7 +435,9 @@ import { ElMessage } from 'element-plus'
} }
} }
} }
//params.type='0'; if(dataName){
params.type='0';
}
getCameraByCondition(params).then((res) => { getCameraByCondition(params).then((res) => {
//console.log('parent44444', res.data.data) //console.log('parent44444', res.data.data)
if(type=='map'){ if(type=='map'){