From 20195d0e1cbbf3e8bfd20e2baf53e2115f663da3 Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: 星期三, 24 一月 2024 16:38:22 +0800
Subject: [PATCH] 评价结论

---
 src/api/projectManage/project.js |   13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/api/projectManage/project.js b/src/api/projectManage/project.js
index d2cfa02..f37bb1f 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,10 @@
     })
 }
 
-
+//文件删除
+export function delAccessoryFile(accessoryFileId) {
+    return request({
+        url: `/manage/accessory-file/remove/` + accessoryFileId,
+        method: 'delete'
+    })
+}

--
Gitblit v1.9.2