From 137910cf4fc73a3a2787a3a02718f1e1f637c368 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期五, 14 六月 2024 16:01:17 +0800 Subject: [PATCH] bug修改 --- 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