From e0c0c33de3eab17a123ee4ffa7210758b5b48405 Mon Sep 17 00:00:00 2001
From: Gary Gu <garygu@Garydebijibendiannao.local>
Date: Wed, 28 May 2025 14:58:55 +0800
Subject: [PATCH] feat: 项目实况开发

---
 src/views/Home.vue |  298 +++++++++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 235 insertions(+), 63 deletions(-)

diff --git a/src/views/Home.vue b/src/views/Home.vue
index ce401b6..203af13 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -21,20 +21,21 @@
   <div class="content-wrapper mb-[20px]">
    <!-- 720菜单 -->
    <div class="side-menu z-[100]" v-if="currentView === '720'">
-    <el-cascader popper-class="custom-dropdown" v-model="panoValue" :options="panoList" @change="handlePanoChange" :props="{ value: 'id',label: 'label',children: 'Children'}">
-    </el-cascader>
+    <el-cascader popper-class="custom-dropdown" v-model="panoValue" :options="panoList" @change="handlePanoChange" :props="{ value: 'id',label: 'label',children: 'Children'}"/>
    </div>
-
-   <!-- 主要内容区域 -->
-   <div class="main-content" v-loading="isLoading">
-    <!-- 模型 -->
-    <div class="w-full h-full" v-if="currentView === 'model'">
-     <iframe id="model-iframe" class="content-frame w-full h-full" src="" frameborder="0"></iframe>
+    <!-- 项目实况-->
+    <div class="side-menu z-[100]" v-if="currentView === 'project'">
+      <el-cascader popper-class="custom-dropdown" v-model="videoSrc" :options="liveList" @change="handleLiveChange" :props="{ value: 'id',label: 'label',children: 'JSCProjectMonitorList'}"/>
     </div>
-    <!-- 720 -->
-    <div :style="isFullScreen ? fullScreenStyle : 'width: 100%; height: 100%;'" v-if="currentView === '720'">
-     <div id="panoviewpreview" class="pano-frame w-full h-full" :style="isFullScreen ? fullScreenPanoStyle : ''">
-     </div>
+
+
+    <!-- 主要内容区域 -->
+   <div class="main-content" :style="isFullScreen  ? fullScreenStyle : ''" v-loading="isLoading">
+    <!-- 模型 / 720 -->
+    <div class="w-full h-full" :style="isFullScreen  ? fullScreenStyle : 'width: 100%; height: 100%;'" v-if="currentView === '720' || currentView === 'model'">
+      <iframe id="model-iframe" class="content-frame w-full h-full" src="" frameborder="0" :style="isFullScreen ? fullScreenModelStyle : ''" v-if="currentView === 'model'"></iframe>
+      <iframe ref="panoiframe" id="panoviewpreview" class="pano-frame w-full h-full" :style="isFullScreen ? fullScreenPanoStyle : ''" v-if="currentView === '720'"></iframe>
+    </div>
      <!-- 720全景图版本选择 -->
      <!--<div class="w-full h-[120px] bg-[rgba(19,40,64,0.8)] absolute bottom-0 left-0 right-0 flex items-center py-[10px]" :style="isFullScreen ? 'z-index: 100; height:' : ''" v-if="currentView === '720'">
       <div v-for="item in panoVersionList" :key="item.value" :style="isFullScreen ? 'z-index: 100;' : ''">
@@ -45,20 +46,21 @@
      </div>-->
 
      <!-- 放大镜 -->
-     <div class="w-[80px] h-[80px] bg-[#008C99] absolute top-[-40px] right-[-40px] rounded-[50%]" v-if="currentView === '720'" @click="handleZoomOut">
+     <div class="w-[80px] h-[80px] bg-[#008C99] absolute top-[-40px] right-[-40px] rounded-[50%] z-[100]" v-if="currentView === 'model' || currentView === '720'" @click="handleZoomOut">
       <img src="../assets/images/backgrounds/zoomin.png" alt="放大" class="w-[16px] h-[16px] mt-[50px] ml-[15px] cursor-pointer" v-if="isFullScreen" />
       <img src="../assets/images/backgrounds/zoomout.png" alt="缩小" class="w-[16px] h-[16px] mt-[50px] ml-[15px] cursor-pointer" v-else />
      </div>
     </div>
     <!-- 项目 -->
     <div class="w-full h-full" v-if="currentView === 'project'">
-      <iframe id="scene-iframe" frameborder='0' allowfullscreen class="scene-frame w-full h-full"></iframe>
+      <video controls muted controlslist="nodownload" autoplay class="video-box" ref="videoElement" style="width: 100%; height: 100%; background-color: #000;"></video>
     </div>
    </div>
 
   </div>
   <div class="chart-content">
-   <div class="w-full h-[4vh] mb-[1vh]" :style="{
+   <div
+class="w-full h-[4vh] mb-[1vh]" :style="{
           backgroundImage: `url(${bottomImage})`,
           backgroundRepeat: 'no-repeat',
           backgroundPosition: 'center center',
@@ -75,6 +77,7 @@
 </template>
 
 <script>
+  import flvjs from 'flv.js'
 import {
  nextTick
 } from 'vue'
@@ -89,8 +92,18 @@
 export default {
  name: 'Home',
  components: {},
+  props: {
+    selectedId: {
+      type: String,
+      default: "",
+    },
+  },
  data() {
   return {
+    playerStatus: '未就绪',
+    errorMessage:'',
+    flvPlayer:null,
+    videoSrc: "",
    currentView: 'model',
    chartOptions: {
     id: 'shigongjinduChart',
@@ -107,6 +120,7 @@
    isFullScreen: false,
    fullScreenStyle: '',
    fullScreenPanoStyle: '',
+   fullScreenModelStyle: '',
    panoList: [{
     value: 'zhinan',
     label: '指南',
@@ -141,25 +155,10 @@
     }],
    }],
    panoValue: [],
-   backgroundImage: new URL('@/assets/images/backgrounds/cover_bg.png',
+    liveList: [],
+    backgroundImage: new URL('@/assets/images/backgrounds/cover_bg.png',
     import.meta.url).href,
    endDate: 0,
-  }
- },
- watch: {
-  projectEndDate:{
-      deep: true,
-      handler (newVal) {
-        console.log('newVal', newVal)
-      const date = new Date(newVal);
-      // 获取当前日期作为Date对象
-      const now = new Date();
-      // 计算两个日期的差异(毫秒)
-      const diffTime = Math.abs(now - date);
-      // 将毫秒转换为天数
-      const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24)); 
-      this.endDate = diffDays
-    }
   }
  }, 
  computed: {
@@ -178,12 +177,55 @@
     return getProjectEndDate()
   }
  },
+ watch: {
+  projectEndDate:{
+      deep: true,
+      handler (newVal) {
+        console.log('newVal', newVal)
+      const date = new Date(newVal);
+      // 获取当前日期作为Date对象
+      const now = new Date();
+      // 计算两个日期的差异(毫秒)
+      const diffTime = Math.abs(now - date);
+      // 将毫秒转换为天数
+      const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24)); 
+      this.endDate = diffDays
+    }
+  },
+   selectedId: {
+     handler(newVal) {
+       console.log("实况界面接收到的数据:", newVal);
+       // 处理数据变化的逻辑
+       this.getProjectLive(newVal);
+     },
+     deep: true, // 深度监听对象内部变化
+     immediate: true, // 立即执行一次
+   },
+ },
  mounted() {
   setTimeout(() => {
     console.log('projectEndDate', getProjectEndDate())
     this.modelShow()
   }, 1000)
  },
+ updated() {
+  if (this.$refs.panoiframe) {
+    // IE
+    if (this.$refs.panoiframe.attachEvent) {
+      this.$refs.panoiframe.attachEvent('onload', () => {
+        console.log('loading')
+        // 加载成功
+        this.isLoading = false;
+      });
+    } else {
+      this.$refs.panoiframe.onload = () => {
+        console.log('loading2')
+        // 加载成功
+        this.isLoading = false;
+      };
+    }
+  }
+},
 
  methods: {
   getItemImg (item) {
@@ -193,17 +235,20 @@
    console.log('放大')
    this.isFullScreen = !this.isFullScreen
    if (this.isFullScreen) {
-    const clientX = document.documentElement.clientWidth || document.body.clientWidth
-    const clientY = document.documentElement.clientHeight || document.body.clientHeight
-    this.fullScreenPanoStyle = `width: 100%; height: 100%; z-index: 100; `
-    this.fullScreenStyle = `width: ${clientX - 40}px; height: ${clientY - 120}px; margin:20px; position: fixed; top: 80px; left: 0;z-index: 100;background-color: #fff;overflow: hidden;`
-   }
+      const clientX = document.documentElement.clientWidth || document.body.clientWidth
+      const clientY = document.documentElement.clientHeight || document.body.clientHeight
+      this.fullScreenStyle = `width: ${clientX - 40}px; height: ${clientY - 120}px; margin:20px; position: fixed; top: 80px; left: 0;z-index: 100;background-color: #fff;overflow: hidden;`
+      if (this.currentView === '720') {
+        this.fullScreenPanoStyle = `width: 100%; height: 100%; z-index: 100; `
+      } else if(this.currentView === 'model'){
+        this.fullScreenModelStyle = `width: ${clientX - 40}px; height: ${clientY - 120}px; margin:20px; position: fixed; top: 80px; left: 0;z-index: 100;background-color: #fff;overflow: hidden;`
+      }
+    }
   },
   handleChange(view) {
    this.isLoading = true
    this.currentView = view
    if (view === 'model') {
-    removepano('krpanoSWFObject')
     nextTick(() => {
      this.modelShow()
     })
@@ -213,13 +258,13 @@
     })
    } else if (view === 'project') {
     nextTick(() => {
-      removepano('krpanoSWFObject')
-     this.sceneShow()
+      this.getProjectLive(this.selectedId)
     })
    }
   },
   handlePanoChange(value) {
    console.log('value', value)
+   this.isLoading = true
    this.panoList.forEach(item => {
     if (item.LabelId === value[0]) {
      item.Children.forEach(item2 => {
@@ -238,14 +283,13 @@
    const projectId = this.projectId
    let ifrSrc = ''
    console.log('模型中查看')
-  //  ifrSrc = `${window.ProjectConfig.modelUrl}?token=${token}&projectId=${projectId}&isPreview=1&edit=false`
+    //  ifrSrc = `${window.ProjectConfig.modelUrl}?token=${token}&projectId=${projectId}&isPreview=1&edit=false`
    ifrSrc = window.ProjectConfig.modelUrl
    iframe.src = ifrSrc
    console.log('加载iframe地址', ifrSrc)
    this.isLoading = false
   },
   panoShow() {
-   this.isLoading = false
    const data = {
     projectId: this.projectId
    }
@@ -284,26 +328,40 @@
    })
   },
   panoPreview(item, scene) {
-    removepano('krpanoSWFObject')
-   const basepath = `${window.ProjectConfig.panoUrl}/Panorama${item.PbUrl}/vtour/`
-   const xmlurl = `${basepath}tour.xml?r=${(Math.random() * 100000 + 1)}`
-   let setting = {}
-   if (scene) {
-    const scenename = 'scene_' + scene.PsScenename
-    setting = {
-     startscene: scenename
-    }
-   }
-   this.$nextTick(() => {
-    embedpano({
-     xml: xmlurl,
-     target: 'panoviewpreview',
-     basepath,
-     vars: setting,
-     html5: 'auto',
-     passQueryParameters: true,
+    // /LinkShare/PanoShare/:PanoId/:organizeId/:StartScene
+    // PanoId:全景图的id,organizeId:项目id,StartScene:初始场景id
+    const panoFrame = document.getElementById('panoviewpreview')
+    nextTick(() => {
+      if(panoFrame.src){
+        panoFrame.removeAttribute("src"); //先移除上一次的src地址
+      }
+      setTimeout(()=>{
+        let ifrSrc = ''
+        ifrSrc = `${window.ProjectConfig.panoUrl}/#/LinkShare/PanoShare/${scene.PbGuid}/${this.projectId}/${scene.PsScenename}`
+        panoFrame.setAttribute("src",ifrSrc);
+      }, 300)
+      
     })
-   })
+  //   removepano('krpanoSWFObject')
+  //  const basepath = `${window.ProjectConfig.panoUrl}/Panorama${item.PbUrl}/vtour/`
+  //  const xmlurl = `${basepath}tour.xml?r=${(Math.random() * 100000 + 1)}`
+  //  let setting = {}
+  //  if (scene) {
+  //   const scenename = 'scene_' + scene.PsScenename
+  //   setting = {
+  //    startscene: scenename
+  //   }
+  //  }
+  //  this.$nextTick(() => {
+  //   embedpano({
+  //    xml: xmlurl,
+  //    target: 'panoviewpreview',
+  //    basepath,
+  //    vars: setting,
+  //    html5: 'auto',
+  //    passQueryParameters: true,
+  //   })
+  //  })
   },
   sceneShow() {
    const iframe = document.getElementById('scene-iframe')
@@ -315,8 +373,122 @@
   mounted() {
    this.isLoading = true
    this.modelShow()
-  }
+  },
+   /**
+    * 获取项目实况数据
+    * @param {string} bindId - 标段ID
+    */
+   getProjectLive(bindId) {
+     const params = {
+       bindId,
+     };
+     HomeAPI.GetJSCProjectMonitor(params).then(res => {
+       if (res.Ret === 1) {
+         const result = res.Data
+         if (result.length > 0) {
+           console.log('实况数据', result);
+           result.forEach(element => {
+             element.id = element.BindId
+             element.label = element.BindName
+             element.JSCProjectMonitorList.forEach(item => {
+               item.id = item.MonitorUrl
+               item.label = item.MonitorName
+             });
+           });
+         }
+         this.isLoading = false
+         this.liveList = result
+         this.videoSrc = this.liveList[0].JSCProjectMonitorList[0].MonitorUrl
+         this.loadVideo();
+       }
+     })
+   },
+   /**
+    * 处理实况的实时变化
+    * @param value
+    */
+   handleLiveChange(value) {
+     console.log('实况变化', value);
+     this.videoSrc = value[1]
+     this.loadVideo();
+   },
+   // 检查FLV支持
+   checkFlvSupport() {
+     if (!flvjs.isSupported()) {
+       this.errorMessage = '当前浏览器不支持FLV播放'
+       this.playerStatus = '不支持'
+       return false
+     }
+     this.playerStatus = '已就绪'
+     return true
+   },
+   /**
+    * 销毁播放器实例
+    */
+   destroyPlayer() {
+     if (this.flvPlayer) {
+       try {
+         this.flvPlayer.pause()
+         this.flvPlayer.unload()
+         this.flvPlayer.detachMediaElement()
+         this.flvPlayer.destroy()
+         this.flvPlayer = null
+       } catch (error) {
+         console.error('销毁播放器时出错:', error)
+       }
+     }
+     this.isReady = false
+   },
+   /**
+    * 加载视频
+    */
+   loadVideo() {
+     if (!this.videoSrc.trim()) {
+       this.errorMessage = '请播放有效的视频URL'
+       return
+     }
+
+     if (!this.checkFlvSupport()) {
+       return
+     }
+     this.errorMessage = ''
+     this.playerStatus = '加载中...'
+
+     try {
+       // 销毁旧的播放器实例
+       this.destroyPlayer()
+
+       // 创建FLV播放器
+       this.flvPlayer = flvjs.createPlayer({
+         type: 'flv',
+         url: this.videoSrc,
+         isLive: false, // 如果是直播流,设置为true
+         cors: true,
+         withCredentials: false
+       }, {
+         enableWorker: false,
+         enableStashBuffer: true,
+         stashInitialSize: 128,
+         autoCleanupSourceBuffer: true
+       })
+
+       // 绑定事件监听器
+       // this.bindPlayerEvents()
+
+       // 绑定到video元素
+       this.flvPlayer.attachMediaElement(this.$refs.videoElement)
+
+       // 开始加载
+       this.flvPlayer.load()
+
+     } catch (error) {
+       console.error('加载视频失败:', error)
+       this.errorMessage = '视频加载失败: ' + error.message
+       this.playerStatus = '加载失败'
+     }
+   },
  }
+
 }
 </script>
 
@@ -382,7 +554,7 @@
  display: flex;
  overflow: hidden;
  position: relative;
- height: 52%;
+ height: 98%;
 }
 
 .chart-content {

--
Gitblit v1.9.3