From 5c357cd927e74cc57531bd0a95338635e39be9af Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Mon, 29 Jan 2024 09:45:06 +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