From fa45209c5007d8c84bcc14a2fbcdc236f4758213 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 17 Jun 2025 10:48:22 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v2.0.0/后台管理数据中心'

---
 src/views/dataCenter/dataCenter.vue |  320 +++++++++++++++++++++++++++++++++++++----------------
 1 files changed, 223 insertions(+), 97 deletions(-)

diff --git a/src/views/dataCenter/dataCenter.vue b/src/views/dataCenter/dataCenter.vue
index 9a25111..69a17cd 100644
--- a/src/views/dataCenter/dataCenter.vue
+++ b/src/views/dataCenter/dataCenter.vue
@@ -8,7 +8,7 @@
     <!-- 表格部分 -->
     <div class="dataTable">
       <el-table
-        v-loading="loading"
+        v-loading="loadings"
         element-loading-text="加载中"
         stripe
         :data="tableData"
@@ -35,7 +35,7 @@
               class="quanjing"
               @click="clickpanorama(scope.row)"
               v-if="scope.row?.resultType === 5"
-              :src="scope.row?.link"
+              :src="scope.row?.smallUrl"
               alt=""
             />
             <img
@@ -44,6 +44,13 @@
               alt=""
               class="imageBox"
               @click="enterFullScreen(scope.row)"
+            />
+            <!-- 正射 -->
+            <img
+              v-else-if="scope.row?.resultType === 4"
+              :src="getzsSmallImg(scope.row?.link)"
+              alt=""
+              class="imageBox"
             />
             <el-image
               v-else
@@ -71,10 +78,12 @@
             <span class="delete" @click="deleteDetail(scope.row)" v-if="scope.row.resultType !== 2"
               >删除</span
             >
+            <!-- && !isTifFile(scope.row.nickName) 
+            scope.row.resultType !== 1-->
             <span
               class="location"
               @click="positionDetail(scope.row)"
-              v-if="scope.row.resultType !== 1"
+             v-if="shouldShowLocation(scope.row)"
               >定位</span
             >
           </template>
@@ -95,17 +104,10 @@
       />
     </div>
     <!-- 查看弹框 -->
-    <el-dialog v-model="dialogVisible" width="60%" append-to-body>
+    <el-dialog v-model="dialogVisible" width="60%" append-to-body @close="dialogClose">
       <template #header="{ titleId, titleClass }">
         <div class="my-header">
-          <h4 :id="titleId" :class="titleClass">{{ dialogDetailList?.nickName }}</h4>
-          <el-button
-            type="success"
-            plain
-            icon="el-icon-download"
-            @click="detailDownLoad(dialogDetailList)"
-            >下载</el-button
-          >
+          <h4 :id="titleId" :class="titleClass">{{ detailTitle }}</h4>
         </div>
       </template>
       <div class="detailContainer">
@@ -116,13 +118,19 @@
             alt=""
             class="imageBox"
           />
+          <!-- 地图 -->
+          <div
+            v-if="dialogDetailList?.resultType === 4"
+            id="detaildataCenterMap"
+            class="ztzf-cesium"
+          ></div>
           <img v-else :src="getSmallImg(dialogDetailList?.link)" alt="" />
         </div>
         <div class="rightDetail">
           <div class="title">
             <div class="inputEdit">
-              文件名称:<span class="fileTitle"  v-if="!dialogDetailList?.checkedinput">{{
-                dialogDetailList.nickName
+              文件名称:<span class="fileTitle" v-if="!dialogDetailList?.checkedinput">{{
+                dialogDetailList?.nickName
               }}</span>
               <el-input
                 v-else
@@ -132,8 +140,8 @@
                 clearable
               />
             </div>
-            <div class="editname" @click="editTitle(dialogDetailList)">
-              <span v-if="!dialogDetailList.checkedinput"
+            <div class="editname">
+              <span v-if="!dialogDetailList?.checkedinput" @click="editTitle(dialogDetailList)"
                 ><el-icon><Edit /></el-icon
               ></span>
               <div v-else class="suffixBoxEdit">
@@ -154,7 +162,16 @@
           <div>拍摄时间:{{ dialogDetailList?.createTime }}</div>
           <div>文件类型:{{ photoTypeMap[dialogDetailList?.photoType] }}</div>
           <div>文件格式:{{ resultTypeMap[dialogDetailList?.resultType] }}</div>
-          <div>照片文件大小:{{ dialogDetailList?.attachSize }}</div>
+          <div>照片文件大小:{{ bytesToMB(dialogDetailList?.attachSize) }}</div>
+          <div>
+            <el-button
+              type="success"
+              plain
+              icon="el-icon-download"
+              @click="detailDownLoad(dialogDetailList)"
+              >下载</el-button
+            >
+          </div>
         </div>
       </div>
     </el-dialog>
@@ -197,6 +214,23 @@
 </template>
 
 <script setup>
+import { useStore } from 'vuex';
+import { PublicCesium } from '@/utils/cesium/publicCesium';
+import { Cartesian3 } from 'cesium';
+import * as Cesium from 'cesium';
+import EventPopUpBox from '@/hooks/components/EventPopUpBox.vue';
+import { nextTick, render } from 'vue';
+import defaultIcon from '@/assets/images/dataCenter/datamap/eventCompleted.png';
+const isShow = defineModel('show');
+const viewerRef = shallowRef(null);
+let viewer = null;
+
+const viewInstance = shallowRef(null);
+const store = useStore();
+const currentAreaPosition = ref({ height: 1987280, latitude: 27.636112, longitude: 115.732975 });
+let handler = null;
+
+import EventBus from '@/utils/eventBus';
 import dataCenterMap from '@/views/dataCenter/components/dataCenterMap.vue';
 import PanoramaPopup from '@/components/PanoramaPopup/PanoramaPopup.vue'; //全景
 import { ElMessage, ElMessageBox, ElLoading } from 'element-plus';
@@ -209,10 +243,15 @@
   deleteFileMultipleApi,
   downloadApi,
   updataTitleApi,
+  getOrthoimageInfo,
 } from '@/api/dataCenter/dataCenter';
-import { getShowImg, getSmallImg } from '@/utils/util';
-import { onMounted } from 'vue';
+import { getShowImg, getSmallImg, getzsSmallImg } from '@/utils/util';
+import { onMounted, watch } from 'vue';
 import dayjs from 'dayjs';
+function bytesToMB(bytes, decimalPlaces = 2) {
+  if (typeof bytes !== 'number' || bytes < 0) return '无效输入';
+  return (bytes / 1048576).toFixed(decimalPlaces) + ' MB';
+}
 // 视频一帧
 function convertVideoUrlToThumbnail(videoUrl) {
   // 检查是否是有效的视频URL
@@ -234,12 +273,29 @@
   visible: '可见光',
   ir: '红外',
 };
-const loading = ref(true);
+
+const loadings = ref(true);
+let loading;
 const total = ref(0);
 const startTime = dayjs().subtract(6, 'day').startOf('day');
 const endTime = dayjs().endOf('day');
 const timeRange = [startTime.format('YYYY-MM-DD HH:mm:ss'), endTime.format('YYYY-MM-DD HH:mm:ss')];
-
+// 全景预览
+const panoramaParamsShow = ref(false);
+const panoramaParamsUrl = ref(null);
+const clickpanorama = val => {
+  panoramaParamsShow.value = true;
+  panoramaParamsUrl.value = val.link;
+};
+// 视频
+const currentVideoTitle = ref('');
+const VideoShow = ref(false);
+const currentVideoUrl = ref(null);
+const enterFullScreen = val => {
+  currentVideoTitle.value = val?.nickName;
+  currentVideoUrl.value = val?.link;
+  VideoShow.value = true;
+};
 const jobListParams = reactive({
   current: 1,
   size: 10,
@@ -250,13 +306,13 @@
 
 // 获取列表数据
 const getaiImagesPage = () => {
+  loadings.value = true;
   const params = {
     orderByCreateTime: jobListParams.orderByCreateTime,
     ...jobListParams.searchParams,
   };
   getaiImagesPageAPI(params, { current: jobListParams.current, size: jobListParams.size }).then(
     res => {
-      loading.value = true;
       total.value = res.data.data.total;
       tableData.value = res.data.data.records.map(i => ({
         ...i,
@@ -267,7 +323,7 @@
         file_name: i.name.split('/').pop(),
       }));
       // console.log('res', tableData.value);
-      loading.value = false;
+      loadings.value = false;
     }
   );
 };
@@ -306,7 +362,6 @@
     .then(() => {
       deleteFileMultipleApi(val.id)
         .then(res => {
-          console.log('删除成功', res);
           ElMessage.success('删除成功');
           getaiImagesPage();
         })
@@ -332,13 +387,12 @@
   if (list.length === 1) {
     list.forEach((item, index) => {
       setTimeout(() => {
-        aLinkDownload(item.url, item.nickName);
+        aLinkDownload(item.url, item?.nickName);
       }, index * 500); // 每个文件下载间隔50毫秒
     });
   } else {
-    // loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' })
-    const fileIds = list.map(i => Number(i.id));
-    console.log('fileIds', fileIds, list);
+    loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' });
+    const fileIds = list.map(i => i.id);
     let aaa = {
       areaCode: '',
       attachIds: fileIds,
@@ -353,9 +407,8 @@
     };
 
     downloadApi(aaa).then(res => {
-      console.log('res.data.data', res.data.data);
       aLinkDownload(res.data.data, `sjzx-file-pack-${dayjs().format('YYYYMMDDHHmmss')}.zip`);
-      // loading.close()
+      loading.close();
     });
   }
 };
@@ -364,46 +417,50 @@
   fileDownload();
 };
 const detailDownLoad = val => {
-  aLinkDownload(val.link, val.nickName);
+  aLinkDownload(val.link, val?.nickName);
 };
 // 全部下载
 const aLLDownloadFile = () => {
- 
-   const params = {
+  loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' });
+
+  const params = {
     ...jobListParams.searchParams,
   };
-  console.log('params',params);
-  
-    downloadApi(params).then(res => {
-      console.log('res.data.data', res.data.data);
-      aLinkDownload(res.data.data, `sjzx-file-pack-${dayjs().format('YYYYMMDDHHmmss')}.zip`);
-      // loading.close()
-    });
-     console.log('全部下载');
-};
-// 查看弹框
-const dialogVisible = ref(false);
-const dialogDetailList = ref(null);
-
-const lookDetail = val => {
-  getAttachInfoAPI(val.id).then(res => {
-    dialogDetailList.value = res.data.data;
-    dialogDetailList.value = { ...res.data.data, checkedinput: false };
-    console.log('val111', dialogDetailList.value);
+  params.areaCode = '';
+  downloadApi(params).then(res => {
+    aLinkDownload(res.data.data, `sjzx-file-pack-${dayjs().format('YYYYMMDDHHmmss')}.zip`);
+    loading.close();
   });
-  dialogVisible.value = true;
+};
+// 地图弹框
+const mapComponent = ref(null); // 创建子组件引用
+const mapList = ref(null);
+const dataCenterMapVisible = ref(false);
+const jobId = ref('');
+const statusType = ref(null);
+const positionDetail = val => {
+  jobId.value = val.wayLineJobId;
+  mapList.value = val;
+  dataCenterMapVisible.value = true;
+  // 确保地图组件加载完成
+  nextTick(() => {
+    if (mapComponent.value) {
+      // 调用子组件方法并传递数据
+      mapComponent.value.initEntityOrPopup(val);
+    }
+  });
 };
 
 const fileNameedit = ref('');
 // 编辑文件名
 const editTitle = val => {
   val.checkedinput = true;
-  fileNameedit.value = val.nickName;
+  fileNameedit.value = val?.nickName;
 };
+// 取消
 const cancelEditSuffix = item => {
   item.nickName = fileNameedit.value;
-  dialogDetailList.value.checkedinput = false;
-  console.log('item', item);
+  item.checkedinput = false;
 };
 const submitEditSuffix = item => {
   saveTitle(item);
@@ -414,16 +471,13 @@
     ElMessage.warning(`${fieldName}不能为空`);
     return false;
   }
-
   if (name.length > 50) {
     ElMessage.warning(`${fieldName}不能超过50个字符`);
     return false;
   }
-
   return true;
 };
 // 保存文件名
-
 const saveTitle = item => {
   const updateparams = {
     id: Number(item.id),
@@ -432,9 +486,9 @@
   // 验证并提示
   if (!validateNickname(updateparams.nickName, '名称')) return;
   item.checkedinput = false;
+  detailTitle.value = item.nickName;
   updataTitleApi(updateparams)
     .then(res => {
-      console.log('updateparams', updateparams);
       if (res.status === 200) {
         ElMessage.success('修改成功');
       } else {
@@ -446,42 +500,109 @@
       console.error('API error:', error);
     });
 };
-// 全景预览
-const panoramaParamsShow = ref(false);
-const panoramaParamsUrl = ref(null);
-const clickpanorama = val => {
-  panoramaParamsShow.value = true;
-  panoramaParamsUrl.value = val.link;
-};
-// 视频
-const currentVideoTitle = ref('');
-const VideoShow = ref(false);
-const currentVideoUrl = ref(null);
-const enterFullScreen = val => {
-  currentVideoTitle.value = val.nickName;
-  currentVideoUrl.value = val.link;
-  VideoShow.value = true;
-};
-// 地图弹框
+// 正射地图
+const yxShowBox = ref(false);
 
-const mapComponent = ref(null);// 创建子组件引用
-const mapList = ref(null);
-const dataCenterMapVisible = ref(false);
-const jobId = ref('');
-const positionDetail = val => {
-  jobId.value = val.wayLineJobId;
-  mapList.value = val;
-  dataCenterMapVisible.value = true;
-  // 确保地图组件加载完成
-  nextTick(() => {
-    if (mapComponent.value) {
-      // 调用子组件方法并传递数据
-      mapComponent.value.initEntityOrPopup(val)
-    }
-  });
+const removeHandler = () => {
+  handler?.removeInputAction(Cesium.ScreenSpaceEventType.LEFT_CLICK);
+  handler?.destroy();
+  handler = null;
 };
+const isMapInitialized = ref(false); //地图加载
+const initMap = () => {
+  if (viewer || isMapInitialized.value) return;
+
+  const container = document.getElementById('detaildataCenterMap');
+  if (!container) {
+    console.error('地图容器未找到');
+    return;
+  }
+  viewInstance.value = new PublicCesium({
+    dom: 'detaildataCenterMap',
+    flatMode: false,
+    terrain: false,
+    mapFilter: true,
+  });
+  viewer = viewInstance.value.getViewer();
+  viewerRef.value = viewer;
+
+  isMapInitialized.value = true;
+
+  // console.log('地图初始化完成');
+};
+// 查看弹框
+function isTifFile(filename) {
+  const lastDot = filename.lastIndexOf('.');
+  if (lastDot === -1) return false; // 无后缀
+  return filename.slice(lastDot + 1).toLowerCase() === 'tif';
+}
+const shouldShowLocation=(row)=>{
+return row.resultType !== 1 && row.resultType !== 4
+}
+const dialogVisible = ref(false);
+const dialogDetailList = ref(null);
+const detailTitle = ref('');
+let curCustomImageryProvider = null;
+const orthoimageApi = ref('');
+const odmToken = ref(null);
+const lookDetail = val => {
+  // console.log('查看', val);
+  if (val.resultType === 4) {
+    // 正射
+    getOrthoimageInfo(val.wayLineJobId).then(async res => {
+      dialogVisible.value = true;
+      // console.log('正射', res.data.data);
+      detailTitle.value = val.nickName;
+      dialogDetailList.value = val;  
+      await nextTick()
+      initMap();
+      orthoimageApi.value = res.data.data.orthoimageApi;
+      odmToken.value = res.data.data.odmToken;
+      if (res.data.data != null && isMapInitialized.value === true) {
+      // console.log('viewer', viewer);
+        curCustomImageryProvider = viewInstance.value.addCustomImageryProviderDataSource(
+          new Cesium.UrlTemplateImageryProvider({
+            url: `${import.meta.env.VITE_APP_AREA_NAME}/webodm${res.data.data.orthoimageApi}?jwt=${
+              res.data.data.odmToken.split(' ')[1]
+            }`,
+            // maximumLevel: 12,
+          })
+          
+        );
+
+        yxShowBox.value = true;
+      }
+      
+    });
+  } else {
+    getAttachInfoAPI(val.id).then(res => {
+      detailTitle.value = res.data.data.nickName;
+      dialogDetailList.value = res.data.data;
+      dialogDetailList.value = { ...res.data.data, checkedinput: false };
+      dialogVisible.value = true;
+    });
+  }
+};
+
+function dialogClose(){
+ // 对话框关闭时清理资源
+    viewInstance.value?.viewerDestroy();
+    viewer = null;
+    isMapInitialized.value = false;
+}
 onMounted(() => {
   getaiImagesPage();
+  // 监听打开全景事件
+  EventBus.on('open-panorama', params => {
+    panoramaParamsShow.value = params.show;
+    panoramaParamsUrl.value = params.url;
+  });
+});
+onBeforeUnmount(() => {
+  // 组件卸载时移除事件监听,防止内存泄漏
+  EventBus.off('open-panorama');
+  viewInstance.value?.removeAllCustomImageryProviderDataSource(curCustomImageryProvider);
+  viewInstance.value?.viewerDestroy();
 });
 </script>
 
@@ -550,6 +671,10 @@
       width: 100%;
       height: 100%;
     }
+    #detaildataCenterMap {
+      width: 100%;
+      height: 100%;
+    }
   }
   .rightDetail {
     width: 30%;
@@ -564,12 +689,12 @@
         display: flex;
         align-items: center;
         width: 100%;
-     .fileTitle{
-     width: 70%;
-     white-space: nowrap;
-     overflow: hidden;
-    text-overflow: ellipsis;
-     }
+        .fileTitle {
+          width: 70%;
+          white-space: nowrap;
+          overflow: hidden;
+          text-overflow: ellipsis;
+        }
       }
     }
     div {
@@ -579,6 +704,7 @@
 }
 .my-header :deep(.el-dialog__title) {
   margin: 0 !important;
+  height: 19px;
 }
 .my-header {
   display: flex;

--
Gitblit v1.9.3