From 3f6bf89b1985b6668f02ffcc9af577b412e92e45 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期一, 24 三月 2025 17:17:45 +0800 Subject: [PATCH] bug修改 --- src/api/projectManage/project.js | 29 +++++++++++++++++++++++++++-- 1 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/api/projectManage/project.js b/src/api/projectManage/project.js index d2cfa02..fd5ca57 100644 --- a/src/api/projectManage/project.js +++ b/src/api/projectManage/project.js @@ -17,10 +17,20 @@ }) } -export function getProjectStatistics() { +export function getProjectDetail(data) { + return request({ + url: '/manage/project/detail/' + data, + method: 'get' + + }) +} + + +export function getProjectStatistics(params) { return request({ url: '/manage/project/statistics', - method: 'get' + method: 'get', + params: params }) } @@ -31,4 +41,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