From 74f3a7dcedba7e9aeac99287c3daf666a726d1d6 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 14 Jun 2025 13:53:29 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v2.0.0/后台管理数据中心'

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

diff --git a/src/views/dataCenter/dataCenter.vue b/src/views/dataCenter/dataCenter.vue
index 9a25111..2991ab9 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"
@@ -98,14 +98,8 @@
     <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>
-          <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">
@@ -122,7 +116,7 @@
           <div class="title">
             <div class="inputEdit">
               文件名称:<span class="fileTitle"  v-if="!dialogDetailList?.checkedinput">{{
-                dialogDetailList.nickName
+                dialogDetailList?.nickName
               }}</span>
               <el-input
                 v-else
@@ -132,8 +126,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">
@@ -155,6 +149,13 @@
           <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>
       </div>
     </el-dialog>
@@ -190,6 +191,7 @@
       ref="mapComponent"
       v-model:show="dataCenterMapVisible"
       :jobId="jobId"
+     
       @lookDetail="lookDetail"
       :dotData="mapList"
     ></dataCenterMap>
@@ -197,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';
@@ -211,7 +214,7 @@
   updataTitleApi,
 } from '@/api/dataCenter/dataCenter';
 import { getShowImg, getSmallImg } from '@/utils/util';
-import { onMounted } from 'vue';
+import { onMounted, watch } from 'vue';
 import dayjs from 'dayjs';
 // 视频一帧
 function convertVideoUrlToThumbnail(videoUrl) {
@@ -234,12 +237,28 @@
   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 +269,14 @@
 
 // 获取列表数据
 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 +287,7 @@
         file_name: i.name.split('/').pop(),
       }));
       // console.log('res', tableData.value);
-      loading.value = false;
+      loadings.value = false;
     }
   );
 };
@@ -306,10 +326,9 @@
     .then(() => {
       deleteFileMultipleApi(val.id)
         .then(res => {
-          console.log('删除成功', res);
           ElMessage.success('删除成功');
           getaiImagesPage();
-        })
+        }) 
         .catch(error => {
           ElMessage.error('删除失败');
         });
@@ -332,12 +351,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));
+    loading = ElLoading.service({ background: 'rgba(0, 0, 0, 0.5)', text: '打包中,请稍等...' })
+    const fileIds = list.map(i =>i.id);
     console.log('fileIds', fileIds, list);
     let aaa = {
       areaCode: '',
@@ -355,7 +374,7 @@
     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,7 +383,7 @@
   fileDownload();
 };
 const detailDownLoad = val => {
-  aLinkDownload(val.link, val.nickName);
+  aLinkDownload(val.link, val?.nickName);
 };
 // 全部下载
 const aLLDownloadFile = () => {
@@ -372,24 +391,24 @@
    const params = {
     ...jobListParams.searchParams,
   };
-  console.log('params',params);
+  // console.log('params',params);
   
     downloadApi(params).then(res => {
-      console.log('res.data.data', res.data.data);
+      // 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 detailTitle = ref('')
 const lookDetail = val => {
   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('val111', dialogDetailList.value);
   });
   dialogVisible.value = true;
 };
@@ -398,12 +417,12 @@
 // 编辑文件名
 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 +433,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 +448,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,30 +462,18 @@
       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 mapComponent = ref(null);// 创建子组件引用
 const mapList = ref(null);
 const dataCenterMapVisible = ref(false);
 const jobId = ref('');
+const statusType = ref(null)
 const positionDetail = val => {
+// console.log('地图',val);
+
   jobId.value = val.wayLineJobId;
+  // console.log('statusType.value',statusType.value);
   mapList.value = val;
   dataCenterMapVisible.value = true;
   // 确保地图组件加载完成
@@ -480,9 +484,21 @@
     }
   });
 };
+
 onMounted(() => {
   getaiImagesPage();
+  // 监听打开全景事件
+  EventBus.on('open-panorama', params => {
+    // console.log('收到全景事件:', params);
+    panoramaParamsShow.value = params.show;
+    panoramaParamsUrl.value = params.url;
+  });
 });
+onBeforeUnmount(() => {
+  // 组件卸载时移除事件监听,防止内存泄漏
+  EventBus.off('open-panorama');
+});
+
 </script>
 
 <style scoped lang="scss">
@@ -579,6 +595,8 @@
 }
 .my-header :deep(.el-dialog__title) {
   margin: 0 !important;
+  height: 19px;
+ 
 }
 .my-header {
   display: flex;

--
Gitblit v1.9.3