|
@@ -16,7 +16,7 @@
|
|
|
<EntInfoList
|
|
|
:list-data="listData_entInfo.data"
|
|
|
v-show="entInfoListShow"
|
|
|
- @closeEntList="entInfoListShow=false"
|
|
|
+ @closeEntList="entInfoListShow=false;closeUnitWiget()"
|
|
|
@pickedEnt="id => handlePickedEnt(id)"
|
|
|
/>
|
|
|
<div class="pl-b2">
|
|
@@ -110,6 +110,7 @@ export default {
|
|
|
import { ElCarousel, ElCarouselItem } from 'element-plus'
|
|
|
import 'element-plus/es/components/carousel/style/css'
|
|
|
import 'element-plus/es/components/carousel-item/style/css'
|
|
|
+ import {callUIInteraction} from "@/webRtcVideo";
|
|
|
|
|
|
onMounted(() => {
|
|
|
getData()
|
|
@@ -238,26 +239,65 @@ export default {
|
|
|
|
|
|
const currentEnt = reactive({value: {}})
|
|
|
|
|
|
+
|
|
|
+
|
|
|
function handlePickedEnt(ent) {
|
|
|
+ console.log("handlePickedEnt",ent)
|
|
|
currentEnt.value = ent
|
|
|
+ clickUnitWiget(ent.objectId)
|
|
|
entInfoShow.value = true
|
|
|
}
|
|
|
|
|
|
const listData_entInfo = reactive({data: [
|
|
|
-
|
|
|
+
|
|
|
]})
|
|
|
|
|
|
function handleOpenEntList() {
|
|
|
-
|
|
|
+ openUnitWiget();
|
|
|
entInfoListShow.value = true
|
|
|
}
|
|
|
|
|
|
+ function callUIInteractionFormat(action) {
|
|
|
+ if(action['Parameters']) {
|
|
|
+ action['Parameters'] = JSON.stringify(action['Parameters'])
|
|
|
+ }
|
|
|
+ callUIInteraction(action)
|
|
|
+ }
|
|
|
+
|
|
|
+ function openUnitWiget(){
|
|
|
+ alert("openUnitWiget")
|
|
|
+ let action = {
|
|
|
+ "ActionName":"open_unit_wiget"
|
|
|
+ }
|
|
|
+
|
|
|
+ callUIInteractionFormat(action);
|
|
|
+ }
|
|
|
+ function closeUnitWiget(){
|
|
|
+ alert("closeUnitWiget")
|
|
|
+ let action = {
|
|
|
+ "ActionName":"close_unit_wiget"
|
|
|
+ }
|
|
|
+
|
|
|
+ callUIInteractionFormat(action);
|
|
|
+ }
|
|
|
+
|
|
|
+ function clickUnitWiget(id){
|
|
|
+ alert("clickUnitWiget")
|
|
|
+ let action = {
|
|
|
+ "ActionName":"click_unit_wiget",
|
|
|
+ "Parameters":{
|
|
|
+ "objectId":id
|
|
|
+ }
|
|
|
+ }
|
|
|
+ console.log("clickUnitWiget",action)
|
|
|
+ callUIInteractionFormat(action);
|
|
|
+ }
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
#yyjg {
|
|
|
-
|
|
|
+
|
|
|
.panel-left, .panel-right {
|
|
|
box-sizing: border-box;
|
|
|
position: absolute;
|