From 946e0ab6c67a897d6c2311c13bc5a4a27032ff7a Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Thu, 25 Jun 2026 15:13:05 +0800
Subject: [PATCH] 中科大支线—环境修改
---
src/api/systemManage/user/index.ts | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/src/api/systemManage/user/index.ts b/src/api/systemManage/user/index.ts
index 17c5453..d748f5d 100644
--- a/src/api/systemManage/user/index.ts
+++ b/src/api/systemManage/user/index.ts
@@ -69,6 +69,21 @@
url: import.meta.env.VITE_API_URL + `/account/list`,
method: 'get'
});
- }
+ },
+
+ modPwd: (data: object) => {
+ return request({
+ url: import.meta.env.VITE_API_URL + `/account/user/update/password`,
+ method: 'post',
+ data: data
+ });
+ },
+ resetPwd: (data: object) => {
+ return request({
+ url: import.meta.env.VITE_API_URL + `/account/user/update/resetPassword`,
+ method: 'post',
+ data: data
+ });
+ },
};
}
--
Gitblit v1.9.2