From c832bf2e80ac465e71b7a1c1f7a59d4252030989 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 05 Aug 2025 17:33:08 +0800
Subject: [PATCH] feat:事件工单滚动条
---
src/api/dataCenter/dataCenter.js | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 51 insertions(+), 4 deletions(-)
diff --git a/src/api/dataCenter/dataCenter.js b/src/api/dataCenter/dataCenter.js
index 588ca97..2c0a1a4 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`,
+ url: `/blade-resource/attach/attachmentsPage`,
method: 'post',
- data
+ data,params
})
};
// 详情接口
@@ -16,4 +16,51 @@
id,
},
})
- };
\ No newline at end of file
+ };
+//删除
+export const deleteFileMultipleApi = (ids) => {
+ return request({
+ url: `/blade-resource/attach/remove`,
+ method: 'post',
+ params: {
+ ids,
+ },
+ })
+}
+// 下载
+export const downloadApi = (data) => {
+ return request({
+ url: `/blade-resource/attach/download`,
+ 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,
+ },
+ })
+}
--
Gitblit v1.9.3