From 819275813ce4e586e7397d15a339145f53c4b04c Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Thu, 28 Aug 2025 09:48:51 +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