From b609f77709c4646daf155341475ae14fc0c7943d Mon Sep 17 00:00:00 2001
From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com>
Date: 星期五, 27 六月 2025 13:25:30 +0800
Subject: [PATCH] 修改

---
 src/api/projectManage/project.js |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/src/api/projectManage/project.js b/src/api/projectManage/project.js
index d2cfa02..a641046 100644
--- a/src/api/projectManage/project.js
+++ b/src/api/projectManage/project.js
@@ -17,10 +17,11 @@
     })
 }
 
-export function getProjectStatistics() {
+export function getProjectStatistics(params) {
     return request({
         url: '/manage/project/statistics',
-        method: 'get'
+        method: 'get',
+        params: params
 
     })
 }
@@ -31,4 +32,19 @@
     })
 }
 
+//文件删除
+export function delAccessoryFile(accessoryFileId) {
+    return request({
+        url: `/manage/accessory-file/remove/` + accessoryFileId,
+        method: 'delete'
+    })
+}
 
+//根据id获取评估文件
+export function getAccessoryFile(data) {
+    return request({
+        url: '/manage/accessory-file/getAccessoryFileByProjectId',
+        method: 'get',
+        params: data
+    })
+}

--
Gitblit v1.9.2