From 2ca94de8ede18ac07ccfd8dec7b6f6a707adde9b Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Mon, 01 Sep 2025 11:20:24 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v5.0/5.0.5' into patch_management

---
 src/views/dataCenter/dataCenter.vue | 1145 +++++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 828 insertions(+), 317 deletions(-)

diff --git a/src/views/dataCenter/dataCenter.vue b/src/views/dataCenter/dataCenter.vue
index 7c6d14a..df187a9 100644
--- a/src/views/dataCenter/dataCenter.vue
+++ b/src/views/dataCenter/dataCenter.vue
@@ -1,204 +1,341 @@
 <template>
-  <div class="dataCenter-table">
-    <searchData
-      @search="searchClick"
-      @downFun="downloadFile"
-      @allDownFun="aLLDownloadFile"
-    ></searchData>
-    <!-- 表格部分 -->
-    <div class="dataTable">
-      <el-table
-        v-loading="loadings"
-        element-loading-text="加载中"
-        stripe
-        :data="tableData"
-        class="custom-header"
-        @selection-change="handleSelectionChange"
-      >
-        <el-table-column type="selection" width="55" />
-        <el-table-column label="序号" type="index" width="60">
-          <template #default="{ $index }">
-            {{
-              ($index + 1 + (jobListParams.current - 1) * jobListParams.size)
-                .toString()
-                .padStart(2, '0')
-            }}
-          </template>
-        </el-table-column>
-        <el-table-column prop="regionName" label="所属区域" />
-        <el-table-column property="nestName" label="所属机巢" />
-        <el-table-column property="jobName" label="任务名称" show-overflow-tooltip />
-        <el-table-column prop="nickName" label="文件名称" show-overflow-tooltip />
-        <el-table-column property="link" label="缩图" width="120">
-          <template #default="scope">
-            <img
-              class="quanjing"
-              @click="clickpanorama(scope.row)"
-              v-if="scope.row?.resultType === 5"
-              :src="scope.row?.link"
-              alt=""
-            />
-            <img
-              v-else-if="scope.row?.resultType === 1"
-              :src="convertVideoUrlToThumbnail(scope.row?.link)"
-              alt=""
-              class="imageBox"
-              @click="enterFullScreen(scope.row)"
-            />
-            <el-image
-              v-else
-              :src="scope.row?.smallUrl"
-              :preview-src-list="[scope.row?.showUrl]"
-              fit="cover"
-              preview-teleported
-            />
-          </template>
-        </el-table-column>
-        <el-table-column prop="jobTime" label="任务时间" />
-        <el-table-column property="photoType" label="文件类别">
-          <template #default="scope">
-            <span>{{ photoTypeMap[scope.row.photoType] }}</span>
-          </template>
-        </el-table-column>
-        <el-table-column property="resultType" label="文件格式">
-          <template #default="{ row }">
-            <span>{{ resultTypeMap[row?.resultType] }}</span>
-          </template>
-        </el-table-column>
-        <el-table-column label="操作" width="150" align="center">
-          <template #default="scope">
-            <span class="look" @click="lookDetail(scope.row)">查看</span>
-            <span class="delete" @click="deleteDetail(scope.row)" v-if="scope.row.resultType !== 2"
-              >删除</span
-            >
-            <span
-              class="location"
-              @click="positionDetail(scope.row)"
-              v-if="scope.row.resultType !== 1 && !isTifFile(scope.row.nickName)" 
-              >定位</span
-            >
-          </template>
-        </el-table-column>
-      </el-table>
-    </div>
-    <!-- 分页 -->
-    <div class="pagination">
-      <el-pagination
-        v-model:current-page="jobListParams.current"
-        v-model:page-size="jobListParams.size"
-        :page-sizes="[10, 20, 30, 40]"
-        background
-        layout="total, sizes, prev, pager, next, jumper"
-        :total="total"
-        @size-change="handleSizeChange"
-        @current-change="handleCurrentChange"
-      />
-    </div>
-    <!-- 查看弹框 -->
-    <el-dialog v-model="dialogVisible" width="60%" append-to-body>
-      <template #header="{ titleId, titleClass }">
-        <div class="my-header">
-          <h4 :id="titleId" :class="titleClass">{{ detailTitle }}</h4>
-        </div>
-      </template>
-      <div class="detailContainer">
-        <div class="leftImg">
-          <img
-            v-if="dialogDetailList?.resultType === 1"
-            :src="convertVideoUrlToThumbnail(dialogDetailList?.link)"
-            alt=""
-            class="imageBox"
-          />
-          <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>
-              <el-input
-                v-else
-                v-model="dialogDetailList.nickName"
-                @keyup.enter="saveTitle()"
-                class="title-input"
-                clearable
+  <div
+    class="manage-m-all-10 manage-m-t-0 manage-p-all-20 manage-h-0 manage-flex-1 manage-flex manage-f-d-c manage-b-r-5 manage-b-c-w"
+  >
+    <div class="dataCenter-table">
+      <searchData
+      ref="searchBoxRef"
+      :searchjobId="searchjobId"
+      :switchFolders="switchFolders"
+        @search="searchClick"
+        @downFun="downloadFile"
+        @allDownFun="aLLDownloadFile"
+        @handleswitchFolders="handleswitchFolders"
+        @handleBack ="handleBack"
+       :viewDetails ="viewDetails"
+    
+      ></searchData>
+      <!-- 文件夹 -->
+      <div v-if="switchFolders" class="dataTable">
+            <el-table
+         class="custom-header custom-body"
+          v-loading="loadings"
+          element-loading-text=""
+          :data="folderList"  
+            @selection-change="foldersSelectionChange"
+        >
+          <el-table-column type="selection" width="55" />
+          <el-table-column label="序号" type="index" width="60">
+            <template #default="{ $index }">
+              {{
+                ($index + 1 + (FolderListParams.page - 1) * FolderListParams.page_size)
+                  .toString()
+                  .padStart(2, '0')
+              }}
+            </template>
+          </el-table-column>
+          <el-table-column property="name" label="任务名称" show-overflow-tooltip />    
+           <el-table-column property="regionName" label="所属区域">
+             <template #default="scope">
+              <span>{{scope.row.city_name ? scope.row.city_name :'--'}},{{scope.row.area_name ? scope.row.area_name :'--'}}</span>
+            </template>
+            </el-table-column>   
+          <el-table-column property="nickname" label="所属机巢" >
+             <template #default="scope">
+              <span>{{scope.row.nickname ? scope.row.nickname :'--'}}</span>
+            </template>
+            </el-table-column>  
+          <el-table-column label="操作" align="center">
+            <template #default="scope">
+              <el-button icon="el-icon-view" type="text" @click="foldersOpen(scope.row)"
+                >查看</el-button
+              >
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <!-- 表格部分 -->
+      <div class="dataTable" v-else>
+        <el-table   
+          v-loading="loadings"
+          element-loading-text=""
+          :data="tableData"
+          class="custom-header"
+          @selection-change="handleSelectionChange"
+          @cell-click="handleCellClick"
+        >
+          <el-table-column type="selection" width="55" />
+          <el-table-column label="序号" type="index" width="60">
+            <template #default="{ $index }">
+              {{
+                ($index + 1 + (jobListParams.current - 1) * jobListParams.size)
+                  .toString()
+                  .padStart(2, '0')
+              }}
+            </template>
+          </el-table-column>
+          <el-table-column prop="regionName" label="所属区域" v-if="!isDistrictLevel">
+            <template #default="scope">
+              <span>{{ processAddress(scope.row.regionName) }}</span>
+            </template>
+          </el-table-column>
+          <el-table-column property="nestName" label="所属机巢" />
+          <el-table-column property="jobName" label="任务名称" show-overflow-tooltip />
+          <el-table-column prop="nickName" label="文件名称" width="160">
+            <template #default="scope">
+              <el-tooltip-copy :content="scope.row.nickName" :showCopyText="true">
+                {{scope.row.nickName}}
+              </el-tooltip-copy>
+            </template>
+          </el-table-column>
+
+          <el-table-column property="link" label="缩略图" width="120">
+            <template #default="scope">
+              <img
+                class="quanjing"
+                @click="clickpanorama(scope.row)"
+                v-if="scope.row?.resultType === 5"
+                :src="scope.row?.smallUrl"
+                alt=""
               />
-            </div>
-            <div class="editname">
-              <span v-if="!dialogDetailList?.checkedinput" @click="editTitle(dialogDetailList)"
-                ><el-icon><Edit /></el-icon
-              ></span>
-              <div v-else class="suffixBoxEdit">
-                <div class="editText" @click="submitEditSuffix(dialogDetailList)">✔</div>
-                <div class="editText" @click="cancelEditSuffix(dialogDetailList)">✖</div>
+              <!-- 视频 -->
+              <div v-else-if="scope.row?.resultType === 1" class="videoItem1">
+                <img
+                  :src="convertVideoUrlToThumbnail(scope.row?.link)"
+                  alt=""
+                  class="imageBox"
+                  @click="enterFullScreen(scope.row)"
+                />
+                <img
+                  class="playBox"
+                  @click="enterFullScreen(scope.row)"
+                  src="@/assets/images/dataCenter/videoplay.png"
+                  alt=""
+                />
+              </div>
+              <!-- 正射 -->
+              <el-image
+                v-else-if="scope.row?.resultType === 4"
+                :src="getzsSmallImg(scope.row?.link)"
+                :preview-src-list="[getzsSmallImg(scope.row?.link)]"
+                fit="cover"
+                preview-teleported
+              />
+              <el-image
+                v-else
+                :src="scope.row?.smallUrl"
+                :preview-src-list="[scope.row?.showUrl]"
+                fit="cover"
+                preview-teleported
+              />
+            </template>
+          </el-table-column>
+          <el-table-column prop="jobTime" label="任务时间" />
+          <el-table-column property="photoType" label="文件类别">
+            <template #default="scope">
+              <span>{{
+                photoTypeMap[scope.row.photoType] ? photoTypeMap[scope.row.photoType] : '--'
+              }}</span>
+            </template>
+          </el-table-column>
+          <el-table-column property="resultType" label="文件格式">
+            <template #default="{ row }">
+              <span>{{ resultTypeMap[row?.resultType] }}</span>
+            </template>
+          </el-table-column>
+          <el-table-column label="操作" width="200" align="center">
+            <template #default="scope">
+              <el-button icon="el-icon-view" type="text" @click="lookDetail(scope.row)"
+                >查看</el-button
+              >
+              <el-button
+                v-if="scope.row.resultType !== 2"
+                icon="el-icon-delete"
+                type="text"
+                @click="deleteDetail(scope.row)"
+                >删除</el-button
+              >
+              <el-button
+                v-if="shouldShowLocation(scope.row)"
+                type="text"
+                @click="positionDetail(scope.row)"
+              >
+                <img :src="positionicon" class="custom-icon" />定位</el-button
+              >
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <!-- 分页 -->
+      <div class="pagination">
+         <el-pagination
+      :current-page="switchFolders ? FolderListParams.page : jobListParams.current"
+      :page-size="switchFolders ? FolderListParams.page_size : jobListParams.size"
+      :page-sizes="[10, 20, 30, 40]"
+      background
+       layout="total, sizes, prev, pager, next, jumper"
+      :total="total"
+      @size-change="handleSizeChange"
+      @current-change="handleCurrentChange"
+    />
+      </div>
+      <!-- 查看弹框 -->
+      <el-dialog
+        v-model="dialogVisible"
+        width="60%"
+        append-to-body
+        @close="dialogClose"
+        align-center
+      >
+        <template #header="{ titleId, titleClass }">
+          <div class="my-header">
+            <!-- <h4 :id="titleId" :class="titleClass">{{ detailTitle }}</h4> -->
+            <h4 :id="titleId" :class="titleClass">详情</h4>
+          </div>
+        </template>
+        <div class="detailContainer">
+          <div class="leftImg">
+            <!-- 视频 -->
+            <video
+              v-if="dialogDetailList?.resultType === 1"
+              style="width: 100%"
+              class="videoItem"
+              ref="videoRefs"
+              controls
+              autoplay
+              :src="dialogDetailList.link"
+            ></video>
+            <!-- 地图 -->
+            <div
+              v-else-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 ? dialogDetailList?.nickName : '--'
+                }}</span>
+                <el-input
+                  v-else
+                  v-model="dialogDetailList.nickName"
+                  @blur="saveTitle(dialogDetailList)"
+                  @keyup.enter="saveTitle(dialogDetailList)"
+                  class="title-input"
+                  clearable
+                />
+                <span class="editname" @click="editTitle(dialogDetailList)"
+                  ><el-icon> <Edit /> </el-icon
+                ></span>
               </div>
             </div>
-          </div>
-          <div>任务名称:{{ dialogDetailList?.jobName }}</div>
-          <div>所属区域:{{ dialogDetailList?.regionName }}</div>
-          <div>拍摄机巢:{{ dialogDetailList?.nestName }}</div>
-          <div>
-            照片位置:{{ _.round(dialogDetailList?.longitude, 3) }},{{
-              _.round(dialogDetailList?.latitude, 3)
-            }}
-          </div>
-          <div>任务时间:{{ dialogDetailList?.jobTime }}</div>
-          <div>拍摄时间:{{ dialogDetailList?.createTime }}</div>
-          <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>任务名称:{{ dialogDetailList?.jobName ? dialogDetailList?.jobName : '--' }}</div>
+            <div>
+              所属区域:{{ dialogDetailList?.regionName ? dialogDetailList?.regionName : '--' }}
+            </div>
+            <div>
+              拍摄机巢:{{ dialogDetailList?.nestName ? dialogDetailList?.nestName : '--' }}
+            </div>
+            <div v-if="dialogDetailList?.resultType != 4">
+              照片位置:{{ _.round(dialogDetailList?.longitude, 3) }},{{
+                _.round(dialogDetailList?.latitude, 3)
+              }}
+            </div>
+            <div>任务时间:{{ dialogDetailList?.jobTime ? dialogDetailList?.jobTime : '--' }}</div>
+            <div>
+              拍摄时间:{{ dialogDetailList?.createTime ? dialogDetailList?.createTime : '--' }}
+            </div>
+            <div>
+              文件类型:{{
+                photoTypeMap[dialogDetailList?.photoType]
+                  ? photoTypeMap[dialogDetailList?.photoType]
+                  : '--'
+              }}
+            </div>
+            <div>
+              文件格式:{{
+                resultTypeMap[dialogDetailList?.resultType]
+                  ? resultTypeMap[dialogDetailList?.resultType]
+                  : '--'
+              }}
+            </div>
+            <div>
+              文件大小:{{
+                bytesToMB(dialogDetailList?.attachSize)
+                  ? bytesToMB(dialogDetailList?.attachSize)
+                  : '--'
+              }}
+            </div>
+            <div>
+              <el-button
+                type="success"
+                plain
+                icon="el-icon-download"
+                @click="detailDownLoad(dialogDetailList)"
+                >下载</el-button
+              >
+            </div>
           </div>
         </div>
-      </div>
-    </el-dialog>
-    <!-- 全景预览 -->
-    <PanoramaPopup
-      v-model:panoramaParamsShow="panoramaParamsShow"
-      v-model:panoramaParamsUrl="panoramaParamsUrl"
-    ></PanoramaPopup>
-    <!-- 视频预览 -->
-    <el-dialog
-      :title="currentVideoTitle"
-      modal-class="videoDialog"
-      append-to-body
-      width="54%"
-      v-model="VideoShow"
-      :close-on-click-modal="false"
-      :destroy-on-close="true"
-      @close="currentVideoIndex = -1"
-    >
-      <div class="video-container">
-        <video
-          style="width: 100%"
-          class="videoBox"
-          ref="videoRefs"
-          controls
-          autoplay
-          :src="currentVideoUrl"
-        ></video>
-      </div>
-    </el-dialog>
-    <!-- 地图弹框 -->
-    <dataCenterMap
-      ref="mapComponent"
-      v-model:show="dataCenterMapVisible"
-      :jobId="jobId"
-      @lookDetail="lookDetail"
-      :dotData="mapList"
-    ></dataCenterMap>
+      </el-dialog>
+      <!-- 全景预览 -->
+      <PanoramaPopup
+        v-model:panoramaParamsShow="panoramaParamsShow"
+        v-model:panoramaParamsUrl="panoramaParamsUrl"
+      >
+      </PanoramaPopup>
+      <!-- 视频预览 -->
+      <el-dialog
+        :title="currentVideoTitle"
+        modal-class="videoDialog"
+        append-to-body
+        width="54%"
+        v-model="VideoShow"
+        :close-on-click-modal="false"
+        :destroy-on-close="true"
+        @close="currentVideoIndex = -1"
+      >
+        <div class="video-container">
+          <video
+            style="width: 100%"
+            class="videoBox"
+            ref="videoRefs"
+            controls
+            autoplay
+            :src="currentVideoUrl"
+          ></video>
+        </div>
+      </el-dialog>
+      <!-- 地图弹框 -->
+      <dataCenterMap
+        ref="mapComponent"
+        v-model:show="dataCenterMapVisible"
+        :jobId="jobId"
+        @lookDetail="lookDetail"
+        :dotData="mapList"
+      ></dataCenterMap>
+    </div>
   </div>
 </template>
 
 <script setup>
+import fileimg from '@/assets/images/dataCenter/filePackage.png'
+import { getShowImg, getSmallImg, getzsSmallImg } from '@/utils/util';
+import { onMounted, watch } from 'vue';
+import dayjs from 'dayjs';
+import ElTooltipCopy from '@/components/ElTooltipCopy.vue';
+import videoplay from '@/assets/images/dataCenter/videoplay.png';
+import positionicon from '@/assets/images/dataCenter/positionicon.png';
+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';
 import EventBus from '@/utils/eventBus';
 import dataCenterMap from '@/views/dataCenter/components/dataCenterMap.vue';
 import PanoramaPopup from '@/components/PanoramaPopup/PanoramaPopup.vue'; //全景
@@ -212,11 +349,21 @@
   deleteFileMultipleApi,
   downloadApi,
   updataTitleApi,
-  getOrthoimageInfo
+  getOrthoimageInfo, getDownloadStatusApi,getJobIdsBySnApi
 } from '@/api/dataCenter/dataCenter';
-import { getShowImg, getSmallImg } from '@/utils/util';
-import { onMounted, watch } from 'vue';
-import dayjs from 'dayjs';
+const userInfo = computed(() => store.getters.userInfo);
+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;
+const switchFolders = ref(false)
+function bytesToMB(bytes, decimalPlaces = 2) {
+  if (typeof bytes !== 'number' || bytes < 0) return '0';
+  return (bytes / 1048576).toFixed(decimalPlaces) + ' MB';
+}
 // 视频一帧
 function convertVideoUrlToThumbnail(videoUrl) {
   // 检查是否是有效的视频URL
@@ -238,6 +385,35 @@
   visible: '可见光',
   ir: '红外',
 };
+// 判断省市区
+const areaCode = userInfo.value?.detail?.areaCode || '';
+// 判断账号级别
+const isProvinceLevel = computed(() => areaCode.endsWith('00000000')); // 省级:后8位为0
+const isCityLevel = computed(() => !isProvinceLevel.value && areaCode.endsWith('000000')); // 市级:后6位为0
+const isDistrictLevel = computed(() => !isProvinceLevel.value && !isCityLevel.value); // 区县级
+
+// 处理区域名称的函数
+function processAddress(str) {
+  if (!str) return '';
+  const parts = str.split(',');
+  // 省级账号:显示市和区(去除省级)
+  if (isProvinceLevel.value) {
+    return parts.filter(part => !part.endsWith('省')).join(',');
+  }
+  // 市级账号:只显示区(去除省和市)
+  if (isCityLevel.value) {
+    return parts.filter(part => !part.endsWith('省') && !part.endsWith('市')).join(',');
+  }
+  // 区县级账号:不显示区域信息(在模板中已隐藏该列)
+  return '';
+}
+const showRegionColumn = computed(() => {
+  // 是否显示列
+  return tableData.value.some(row => {
+    const processed = processAddress(row.regionName || '');
+    return processed !== '';
+  });
+});
 const loadings = ref(true);
 let loading;
 const total = ref(0);
@@ -266,8 +442,16 @@
   orderByCreateTime: true,
   searchParams: { startTime: timeRange[0], endTime: timeRange[1] },
 });
+const FolderListParams = reactive({
+    page: 1,
+    page_size: 10,
+    startTime: jobListParams.searchParams.startTime?.slice(0, 10),
+    endTime: jobListParams.searchParams.endTime?.slice(0, 10),
+     waylineName:'',
+    dockSn:'',
+    areaCode:''
+});
 const tableData = ref([]);
-
 // 获取列表数据
 const getaiImagesPage = () => {
   loadings.value = true;
@@ -275,8 +459,14 @@
     orderByCreateTime: jobListParams.orderByCreateTime,
     ...jobListParams.searchParams,
   };
-  getaiImagesPageAPI(params, { current: jobListParams.current, size: jobListParams.size }).then(
-    res => {
+  if( searchjobId.value === ''){
+    params.wayLineJobId = ''
+  }
+  getaiImagesPageAPI(params, {
+    current: jobListParams.current,
+    size: jobListParams.size,
+  })
+    .then(res => {
       total.value = res.data.data.total;
       tableData.value = res.data.data.records.map(i => ({
         ...i,
@@ -286,25 +476,106 @@
         showUrl: getShowImg(i?.link),
         file_name: i.name.split('/').pop(),
       }));
-      // console.log('res', tableData.value);
-      loadings.value = false;
-    }
-  );
+    })
+    .catch(error => {
+      console.error('获取数据失败:', error);
+    })
+    .finally(() => {
+      loadings.value = false; 
+    });
 };
+
+const folderList = ref([])
+// 获取文件夹数据
+const getFolderList=()=>{
+    loadings.value = true;
+    const apiParams = {
+      ...FolderListParams,
+      };
+    getJobIdsBySnApi(apiParams)
+		.then(res => {
+    folderList.value = res.data.data.records.map(i => ({ ...i, checked: false }))
+    total.value = res.data.data.total  
+		})
+		.finally(() => {
+		  loadings.value = false; 
+		})
+}
+const searchjobId = ref('')
+const viewDetails = ref('')
+// 文件夹查看
+const foldersOpen = (val)=>{
+    loadings.value = true;
+    tableData.value=[]
+    searchjobId.value = val.job_id
+    switchFolders.value = false
+    viewDetails.value = true
+}
+// 获取数据时使用各自的分页参数
+const fetchData = () => {
+  if (switchFolders.value) {
+    getFolderList();
+  } else {
+    getaiImagesPage();  
+  }
+};
+// 切换文件夹
+ const handleswitchFolders = () => {
+ searchjobId.value = ''
+     switchFolders.value = !switchFolders.value;
+     jobListParams.current = 1;
+     FolderListParams.page = 1;
+    
+     searchBoxRef.value?.handleReset();
+      fetchData();  
+   };
+   const handleBack =()=>{
+    searchjobId.value = ''
+    switchFolders.value = true
+    viewDetails.value = false
+    jobListParams.current = 1;
+    FolderListParams.page = 1;
+     fetchData();  
+ 
+   }
+   const searchBoxRef = ref(null);
+  
 // 查询
 const searchClick = params => {
-  jobListParams.current = 1;
-  jobListParams.size = 10;
-  jobListParams.searchParams = params;
-  getaiImagesPage();
+  if(switchFolders.value){
+    FolderListParams.page = 1;
+    FolderListParams.page_size = 10;
+    FolderListParams.startTime = params?.startTime?.slice(0, 10); 
+    FolderListParams.endTime = params?.endTime?.slice(0, 10);
+    FolderListParams.waylineName=params?.jobName,
+   FolderListParams.dockSn = params?.deviceSn
+   FolderListParams.areaCode = params?.areaCode
+    getFolderList()
+  }else{
+     jobListParams.current = 1;
+      jobListParams.size = 10;
+      jobListParams.searchParams = {
+      ...jobListParams.searchParams, 
+      ...params 
+    };
+    getaiImagesPage()
+  }
 };
-const handleSizeChange = val => {
-  jobListParams.size = val;
-  getaiImagesPage();
+const handleSizeChange = (val) => {
+  if (switchFolders.value) {
+    FolderListParams.page_size = val;  
+  } else {
+    jobListParams.size = val; 
+  }
+  fetchData();
 };
-const handleCurrentChange = val => {
-  jobListParams.current = val;
-  getaiImagesPage();
+const handleCurrentChange = (val) => {
+  if (switchFolders.value) {
+    FolderListParams.page = val;
+  } else {
+    jobListParams.current = val;
+  }
+  fetchData();
 };
 // 多选
 const selectedRows = ref([]);
@@ -313,9 +584,16 @@
   tableData.value.forEach(item => {
     item.checked = val.some(selected => selected.id === item.id);
   });
-
   selectedRows.value = val;
 };
+// 文件夹多选
+const foldersSelectedRows = ref([]);
+const foldersSelectionChange =(val)=>{
+ folderList.value.forEach(item => {
+    item.checked = val.some(foldersselected => foldersselected.id === item.id);
+  });
+  foldersSelectedRows.value = val; 
+}
 // 删除
 const deleteDetail = val => {
   ElMessageBox.confirm('您确定删除吗?', '提示', {
@@ -345,14 +623,13 @@
   a.click();
   document.body.removeChild(a);
 }
-const fileDownload = () => {
+const fileDownload = async () => {
   const list = selectedRows.value.filter(i => i.checked);
   if (!list?.length) return ElMessage.warning('请选择文件');
   if (list.length === 1) {
     list.forEach((item, index) => {
-      setTimeout(() => {
-        aLinkDownload(item.url, item?.nickName);
-      }, index * 500); // 每个文件下载间隔50毫秒
+      const suffix = item.url.split('.').pop();
+      aLinkDownload(item.url, item.nickName + '.' + suffix);
     });
   } else {
     loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' });
@@ -367,116 +644,49 @@
       jobName: '',
       resultType: '',
       startTime: '',
-      wayLineJobIds: [],
+      type:'htsjzx'
     };
-
-    downloadApi(aaa).then(res => {
-      aLinkDownload(res.data.data, `sjzx-file-pack-${dayjs().format('YYYYMMDDHHmmss')}.zip`);
+    const res = await getDownloadStatusApi({type: 'htsjzx'})
+    if (!['CANCELLED','COMPLETED'].includes(res.data.data?.status || 'COMPLETED')){
+      loading.close()
+      return ElMessage.warning('还有正在处理的')
+    }
+    downloadApi(aaa).finally(res => {
       loading.close();
     });
   }
 };
+// 文件夹打包下载
+async function folderDownload() {
+	const jobId =  foldersSelectedRows.value.filter(i => i.checked).map(i => i.job_id)
+	if (!jobId?.length) return ElMessage.warning('请选择文件夹')
+	const res = await getDownloadStatusApi({type: 'dpsjzx'})
+	if (!['CANCELLED','COMPLETED'].includes(res.data.data?.status || 'COMPLETED')){
+		return ElMessage.warning('还有正在处理的')
+	}
+	await downloadApi({ wayLineJobIds:jobId, withFolder: true, resultType: 0, type:'htsjzx' })
+}
 // 下载
 const downloadFile = () => {
-  fileDownload();
+ switchFolders.value?folderDownload(): fileDownload();
 };
 const detailDownLoad = val => {
-  aLinkDownload(val.link, val?.nickName);
+  const suffix = val.link?.split('.').pop();
+  aLinkDownload(val.link, val?.nickName + '.' + suffix);
 };
 // 全部下载
 const aLLDownloadFile = () => {
+  loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' });
+
   const params = {
     ...jobListParams.searchParams,
   };
+  params.areaCode = '';
   downloadApi(params).then(res => {
     aLinkDownload(res.data.data, `sjzx-file-pack-${dayjs().format('YYYYMMDDHHmmss')}.zip`);
+    loading.close();
   });
 };
-// 查看弹框
-
-
-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 => {
-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;
-};
-// 取消
-const cancelEditSuffix = item => {
-  item.nickName = fileNameedit.value;
-  item.checkedinput = false;
-};
-const submitEditSuffix = item => {
-  saveTitle(item);
-};
-// 通用空值检查函数
-const validateNickname = (name, fieldName) => {
-  if (!name || name.trim() === '') {
-    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),
-    nickName: item.nickName,
-  };
-  // 验证并提示
-  if (!validateNickname(updateparams.nickName, '名称')) return;
-  item.checkedinput = false;
-  detailTitle.value = item.nickName;
-  updataTitleApi(updateparams)
-    .then(res => {
-      if (res.status === 200) {
-        ElMessage.success('修改成功');
-      } else {
-        ElMessage.error(res.data.message || '修改失败');
-      }
-    })
-    .catch(error => {
-      ElMessage.error('请求失败,请稍后重试');
-      console.error('API error:', error);
-    });
-};
-
 // 地图弹框
 const mapComponent = ref(null); // 创建子组件引用
 const mapList = ref(null);
@@ -496,6 +706,179 @@
   });
 };
 
+const fileNameedit = ref('');
+// 编辑文件名
+const editTitle = val => {
+  val.checkedinput = true;
+  fileNameedit.value = val?.nickName;
+};
+
+// 通用空值检查函数
+const validateNickname = (name, fieldName) => {
+  if (!name || name.trim() === '') {
+    ElMessage.warning(`${fieldName}不能为空`);
+    return false;
+  }
+  if (name.length > 50) {
+    ElMessage.warning(`${fieldName}不能超过50个字符`);
+    return false;
+  }
+  return true;
+};
+// 保存文件名
+const saveTitle = item => {
+  const updateparams = {
+    id: item.id,
+    nickName: `${item.nickName.trim()}`,
+  };
+  // 验证并提示
+  if (!validateNickname(updateparams.nickName, '名称')) return;
+  item.checkedinput = false;
+  detailTitle.value = item.nickName;
+  updataTitleApi(updateparams)
+    .then(res => {
+      if (res.status === 200) {
+        ElMessage.success('修改成功');
+        getaiImagesPage();
+      } else {
+        ElMessage.error(res.data.message || '修改失败');
+      }
+    })
+    .catch(error => {
+      ElMessage.error('请求失败,请稍后重试');
+      console.error('API error:', error);
+    });
+};
+// 正射地图
+const yxShowBox = ref(false);
+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;
+};
+// 判断是否是正射
+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 positiongeom = ref('');
+const odmToken = ref(null);
+const lookDetail = val => {
+  if (val.resultType === 4) {
+    // 正射
+    getOrthoimageInfo(val.wayLineJobId).then(async res => {
+      dialogVisible.value = true;
+      detailTitle.value = val.nickName;
+      dialogDetailList.value = val;
+      await nextTick();
+      initMap();
+      positiongeom.value = res.data.data.geom;
+      orthoimageApi.value = res.data.data.orthoimageApi;
+      odmToken.value = res.data.data.odmToken;
+      if (res.data.data != null && isMapInitialized.value === true) {
+        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]
+            }`,
+          })
+        );
+        yxShowBox.value = true;
+        // 添加定位
+        if (positiongeom.value) {
+          // 解析WKT格式的多边形坐标
+          const wktString = positiongeom.value;
+          const coordinates = parseWKTCoordinates(wktString);
+          if (coordinates.length > 0) {
+            // 创建多边形边界
+            const positions = coordinates.map(coord =>
+              Cesium.Cartesian3.fromDegrees(coord[0], coord[1])
+            );
+            // 计算多边形的包围球
+            const boundingSphere = Cesium.BoundingSphere.fromPoints(positions);
+            const viewer = viewInstance.value.getViewer();
+            if (viewer && viewer.camera) {
+              viewer.camera.flyToBoundingSphere(boundingSphere, {
+                duration: 0, // 增加动画时间使过渡更平滑
+                offset: new Cesium.HeadingPitchRange(
+                  Cesium.Math.toRadians(-45), // 航向角:-45度(东北方向)
+                  Cesium.Math.toRadians(-90), // 俯仰角:-30度(向下倾斜30度)
+                  boundingSphere.radius * 2.5 // 距离:2.5倍半径
+                ),
+              });
+            } else {
+              console.error('无法获取有效的 Viewer 或 camera 对象');
+            }
+          }
+        }
+      }
+    });
+  } else {
+    getAttachInfoAPI(val.id).then(res => {
+      detailTitle.value = res.data.data.nickName.split('.jpeg')[0];
+      dialogDetailList.value = {
+        ...res.data.data,
+        checkedinput: false,
+        editName: res.data.data?.nickName?.split('.jpeg')[0],
+      };
+      dialogVisible.value = true;
+    });
+  }
+};
+// WKT坐标解析函数
+function parseWKTCoordinates(wktString) {
+  // 解析POLYGON格式的WKT字符串
+  const regex = /POLYGON\s*\(\((.*?)\)\)/i;
+  const match = wktString.match(regex);
+  if (!match || !match[1]) return [];
+  // 分割坐标对
+  const coordinatePairs = match[1].split(/,\s*/);
+  return coordinatePairs.map(pair => {
+    const [lon, lat] = pair.trim().split(/\s+/).map(Number);
+    return [lon, lat];
+  });
+}
+function dialogClose() {
+  // 对话框关闭时清理资源
+  viewInstance.value?.viewerDestroy();
+  viewer = null;
+  isMapInitialized.value = false;
+}
+function handleCellClick(row, column) {
+  if (column.no === 5) {
+    navigator.clipboard.writeText(row.nickName).then(() => {
+      ElMessage.success('复制文件名称成功')
+    })
+  }
+}
 onMounted(() => {
   getaiImagesPage();
   // 监听打开全景事件
@@ -507,37 +890,111 @@
 onBeforeUnmount(() => {
   // 组件卸载时移除事件监听,防止内存泄漏
   EventBus.off('open-panorama');
+  viewInstance.value?.removeAllCustomImageryProviderDataSource(curCustomImageryProvider);
+  viewInstance.value?.viewerDestroy();
 });
 </script>
-
 <style scoped lang="scss">
 .dataCenter-table {
-  margin: 0 18px 16px 10px;
-  background-color: #ffffff;
-  padding: 14px 18px;
+  height: 0;
+  flex: 1;
+  display: flex;
+  flex-direction: column;
+
   .dataTable {
-    height: 700px;
+    height: 0;
+    flex: 1;
     overflow: auto;
+
     .look {
       color: #1c5cff;
       cursor: pointer;
       margin-right: 10px;
+    }
+    .custom-icon {
+      width: 14px;
+      height: 14px;
+      margin-right: 5px;
+      vertical-align: middle;
     }
     .delete {
       color: #ff241c;
       margin-right: 10px;
       cursor: pointer;
     }
+
     .location {
       color: #19876d;
       cursor: pointer;
     }
   }
+	.fileshow {
+		 display: grid;
+  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
+  gap: 10px;
+  overflow: auto;
+  flex: 1;
+  min-height: 0; /* 关键:解决 flex 容器中的最小高度问题 */
+  align-content: flex-start; /* 让内容从顶部开始排列 */
+			.filePackage {
+          display: flex;
+    justify-content: center;
+				width: 260px;
+				height: 146px;
+				border-radius: 4px 4px 4px 4px;
+				position: relative;
+				background: #ddd;
+				cursor: pointer;
+				img {
+					width: 111px;
+					height: 111px;
+			
+				}
+
+				.el-checkbox {
+					position: absolute;
+					top: 0;
+					left: 6px;
+				}
+
+				.itemName {
+					position: absolute;
+					bottom: 0;
+					left: 0;
+					height: 23px;
+					width: 100%;
+          padding: 0 10px;
+          box-sizing: border-box;
+					background: rgba(22, 56, 101, 0.3);
+					border-radius: 0px 0px 4px 4px;
+					font-family: Source Han Sans CN, Source Han Sans CN;
+					font-weight: 400;
+					font-size: 14px;
+					color: #ffffff;
+					line-height: 23px;
+				
+					display: flex;
+					align-items: center;
+					justify-content: space-between;
+
+					div {
+						white-space: nowrap;
+					}
+
+					img {
+						width: 14px;
+						height: 14px;
+						cursor: pointer;
+					}
+				}
+			}
+		}
   .pagination {
     display: flex;
     justify-content: end;
     margin-top: 20px;
   }
+
   .quanjing,
   .el-image,
   .imageBox {
@@ -545,50 +1002,93 @@
     width: 76px;
     height: 72px;
   }
+  .videoItem1 {
+    .playBox {
+      width: 20px;
+      height: 20px;
+      position: absolute;
+      top: 46%;
+      left: 43%;
+      transform: translate(-50%, -50%);
+      cursor: pointer;
+    }
+  }
   .videoDialog :deep(.el-dialog) {
     height: 600px;
     width: 54%;
   }
+
   .video-container {
     width: 100%;
-    aspect-ratio: 16/9; /* 按视频比例设置(如16:9) */
-    overflow: hidden; /* 隐藏溢出部分 */
+    aspect-ratio: 16/9;
+    /* 按视频比例设置(如16:9) */
+    overflow: hidden;
+    /* 隐藏溢出部分 */
   }
+
   .videoBox {
     width: 100%;
     height: 100%;
-    object-fit: contain; /* 保持比例完整显示 */
+    object-fit: contain;
+    /* 保持比例完整显示 */
     display: block;
   }
 }
+
 :deep(.custom-header th.el-table__cell) {
   color: rgba(0, 0, 0, 0.85);
+  background: #fafafa;
+  height: 60px !important;
+}
+:deep(.custom-body .el-table__body tr) {
+  height: 53px !important;
 }
 // 弹框
 .detailContainer {
   display: flex;
   justify-content: space-between;
+  align-items: center;
   .leftImg {
     width: 70%;
     height: 500px;
+    overflow: hidden;
     img {
       width: 100%;
       height: 100%;
     }
+    .videoItem {
+      width: 100%;
+      height: 100%;
+      object-fit: cover;
+    }
+    #detaildataCenterMap {
+      width: 100%;
+      height: 100%;
+    }
   }
+
   .rightDetail {
     width: 30%;
     padding-left: 40px;
+
     .title {
       display: flex;
       margin: 0 !important;
+
       .editname {
         cursor: pointer;
+         :deep(.el-icon) {
+    width: 20px;  // 调整图标宽度(默认通常14px左右)
+    height: 20px; // 调整图标高度(与宽度保持一致)
+    font-size: 20px; // 部分图标可能依赖font-size控制大小,同步设置
+  }
       }
+
       .inputEdit {
         display: flex;
         align-items: center;
         width: 100%;
+
         .fileTitle {
           width: 70%;
           white-space: nowrap;
@@ -597,49 +1097,60 @@
         }
       }
     }
+
     div {
       margin-bottom: 20px;
     }
   }
 }
+
 .my-header :deep(.el-dialog__title) {
   margin: 0 !important;
   height: 19px;
 }
+
 .my-header {
   display: flex;
   align-items: center;
+
   .el-button {
     margin-left: 20px;
   }
 }
+
 .title-input {
   margin-bottom: 0 !important;
   width: 70%;
 }
+
 .editname {
   margin-bottom: 0 !important;
 }
+
 .suffixBoxEdit {
   display: flex;
   // align-items: center;
   justify-content: space-between;
   margin-bottom: 0 !important;
   font-size: 16px;
+
   > .editText {
     cursor: pointer;
     margin-right: 6px;
+
     &:hover {
       transform: scale(1.2);
     }
   }
+
   .editimg {
     cursor: pointer;
     width: 15px;
     height: 15px;
+
     &:hover {
       transform: scale(1.2);
     }
   }
 }
-</style>
+</style>
\ No newline at end of file

--
Gitblit v1.9.3