From c4c8e7e74b784c1d5a719b60e8d0adefc005ae3e Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期四, 28 八月 2025 10:16:57 +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