From b5bf355a9551f954ba7bb1d4e9ba0904fa3be6f3 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Thu, 19 Jun 2025 18:38:57 +0800
Subject: [PATCH] feat:区域显示

---
 src/api/dataCenter/dataCenter.js |   33 +++++++++++++++++++++++++++++++--
 1 files changed, 31 insertions(+), 2 deletions(-)

diff --git a/src/api/dataCenter/dataCenter.js b/src/api/dataCenter/dataCenter.js
index a57b697..e520c23 100644
--- a/src/api/dataCenter/dataCenter.js
+++ b/src/api/dataCenter/dataCenter.js
@@ -1,10 +1,10 @@
 import request from '@/axios';
 // 列表接口
-export const getaiImagesPageAPI = (data) => {
+export const getaiImagesPageAPI = (data,params) => {
     return request({
 		url: `/blade-resource//attach/attachmentsPage`,
 		method: 'post',
-		data
+		data,params
 	})
   };
   // 详情接口
@@ -34,4 +34,33 @@
 		method: 'post',
 		data
 	})
+}
+// 地图
+export const getMapInfoAPI = (jobId) => {
+    return request({
+		url: `/blade-resource/attach/getAttachInfoByJobId`,
+		method: 'get',
+		params: {
+			jobId,
+		  },
+	})
+  };
+
+//编辑文件名
+export const updataTitleApi = (data) => {
+	return request({
+		url: `/blade-resource/attach/updateFileName`,
+		method: 'post',
+		params:data
+	})
+}
+// 正射文件
+export const getOrthoimageInfo = jobId => {
+	return request({
+		url: '/drone-odm/odmTaskInfo/odmTaskInfo/getOrthoimageInfo',
+		method: 'get',
+		params: {
+			jobId,
+		  },
+	})
 }
\ No newline at end of file

--
Gitblit v1.9.3