From 91db0f9939fef7152e06b61c09166ebc628f8a7e Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 14 Jun 2025 15:25:43 +0800
Subject: [PATCH] feat:正射不显示定位

---
 src/views/dataCenter/dataCenter.vue |  115 ++++++++++++++++++++++++++++++++++++---------------------
 1 files changed, 72 insertions(+), 43 deletions(-)

diff --git a/src/views/dataCenter/dataCenter.vue b/src/views/dataCenter/dataCenter.vue
index 609ffe5..7c6d14a 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"
@@ -74,7 +74,7 @@
             <span
               class="location"
               @click="positionDetail(scope.row)"
-              v-if="scope.row.resultType !== 1"
+              v-if="scope.row.resultType !== 1 && !isTifFile(scope.row.nickName)" 
               >定位</span
             >
           </template>
@@ -98,8 +98,7 @@
     <el-dialog v-model="dialogVisible" width="60%" append-to-body>
       <template #header="{ titleId, titleClass }">
         <div class="my-header">
-          <h4 :id="titleId" :class="titleClass">{{ dialogDetailList?.nickName }}</h4>
-         
+          <h4 :id="titleId" :class="titleClass">{{ detailTitle }}</h4>
         </div>
       </template>
       <div class="detailContainer">
@@ -115,7 +114,7 @@
         <div class="rightDetail">
           <div class="title">
             <div class="inputEdit">
-              文件名称:<span class="fileTitle"  v-if="!dialogDetailList?.checkedinput">{{
+              文件名称:<span class="fileTitle" v-if="!dialogDetailList?.checkedinput">{{
                 dialogDetailList?.nickName
               }}</span>
               <el-input
@@ -126,7 +125,7 @@
                 clearable
               />
             </div>
-            <div class="editname" >
+            <div class="editname">
               <span v-if="!dialogDetailList?.checkedinput" @click="editTitle(dialogDetailList)"
                 ><el-icon><Edit /></el-icon
               ></span>
@@ -149,13 +148,15 @@
           <div>文件类型:{{ photoTypeMap[dialogDetailList?.photoType] }}</div>
           <div>文件格式:{{ resultTypeMap[dialogDetailList?.resultType] }}</div>
           <div>照片文件大小:{{ dialogDetailList?.attachSize }}</div>
-          <div> <el-button
-            type="success"
-            plain
-            icon="el-icon-download"
-            @click="detailDownLoad(dialogDetailList)"
-            >下载</el-button
-          ></div>
+          <div>
+            <el-button
+              type="success"
+              plain
+              icon="el-icon-download"
+              @click="detailDownLoad(dialogDetailList)"
+              >下载</el-button
+            >
+          </div>
         </div>
       </div>
     </el-dialog>
@@ -198,6 +199,7 @@
 </template>
 
 <script setup>
+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';
@@ -210,6 +212,7 @@
   deleteFileMultipleApi,
   downloadApi,
   updataTitleApi,
+  getOrthoimageInfo
 } from '@/api/dataCenter/dataCenter';
 import { getShowImg, getSmallImg } from '@/utils/util';
 import { onMounted, watch } from 'vue';
@@ -235,7 +238,8 @@
   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');
@@ -266,13 +270,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,
@@ -283,7 +287,7 @@
         file_name: i.name.split('/').pop(),
       }));
       // console.log('res', tableData.value);
-      loading.value = false;
+      loadings.value = false;
     }
   );
 };
@@ -324,7 +328,7 @@
         .then(res => {
           ElMessage.success('删除成功');
           getaiImagesPage();
-        }) 
+        })
         .catch(error => {
           ElMessage.error('删除失败');
         });
@@ -351,9 +355,8 @@
       }, index * 500); // 每个文件下载间隔50毫秒
     });
   } else {
-    // loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' })
-    const fileIds = list.map(i =>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,
@@ -368,9 +371,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();
     });
   }
 };
@@ -383,35 +385,51 @@
 };
 // 全部下载
 const aLLDownloadFile = () => {
- 
-   const params = {
+  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`);
-     
-    });
-   
+  downloadApi(params).then(res => {
+    aLinkDownload(res.data.data, `sjzx-file-pack-${dayjs().format('YYYYMMDDHHmmss')}.zip`);
+  });
 };
 // 查看弹框
+
+
+function isTifFile(filename) {
+  const lastDot = filename.lastIndexOf('.');
+  if (lastDot === -1) return false; // 无后缀
+  return filename.slice(lastDot + 1).toLowerCase() === 'tif';
+}
+// 接口
+const getOrthoimageInfoFUN =()=>{
+
+}
+
 const dialogVisible = ref(false);
 const dialogDetailList = ref(null);
-
+const detailTitle = ref('');
 const lookDetail = val => {
-  getAttachInfoAPI(val.id).then(res => {
+console.log('查看',val.resultType);
+if(val.resultType === 4){ // 正射
+  getOrthoimageInfo(val.id).then(res=>{
+    console.log('正射',res.data.data);
+     dialogDetailList.value = res.data.data;
+  })
+}else{
+ getAttachInfoAPI(val.id).then(res => {
+    detailTitle.value = res.data.data.nickName;  
     dialogDetailList.value = res.data.data;
     dialogDetailList.value = { ...res.data.data, checkedinput: false };
+      console.log('detailTitle.value',dialogDetailList.value);
   });
+}
+ 
   dialogVisible.value = true;
 };
 
 const fileNameedit = ref('');
 // 编辑文件名
 const editTitle = val => {
-  
   val.checkedinput = true;
   fileNameedit.value = val?.nickName;
 };
@@ -444,6 +462,7 @@
   // 验证并提示
   if (!validateNickname(updateparams.nickName, '名称')) return;
   item.checkedinput = false;
+  detailTitle.value = item.nickName;
   updataTitleApi(updateparams)
     .then(res => {
       if (res.status === 200) {
@@ -459,10 +478,11 @@
 };
 
 // 地图弹框
-const mapComponent = ref(null);// 创建子组件引用
+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;
@@ -471,13 +491,22 @@
   nextTick(() => {
     if (mapComponent.value) {
       // 调用子组件方法并传递数据
-      mapComponent.value.initEntityOrPopup(val)
+      mapComponent.value.initEntityOrPopup(val);
     }
   });
 };
 
 onMounted(() => {
   getaiImagesPage();
+  // 监听打开全景事件
+  EventBus.on('open-panorama', params => {
+    panoramaParamsShow.value = params.show;
+    panoramaParamsUrl.value = params.url;
+  });
+});
+onBeforeUnmount(() => {
+  // 组件卸载时移除事件监听,防止内存泄漏
+  EventBus.off('open-panorama');
 });
 </script>
 
@@ -560,12 +589,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 {

--
Gitblit v1.9.3