From 9341c1aff76e04ec161a1b23bc7ff194db6c9442 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Mon, 10 Nov 2025 16:47:15 +0800
Subject: [PATCH] feat:更新新建任务跳转列表刷新

---
 src/api/user/index.js |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/src/api/user/index.js b/src/api/user/index.js
index 82da79f..e5392f7 100644
--- a/src/api/user/index.js
+++ b/src/api/user/index.js
@@ -45,3 +45,27 @@
     },
   })
 }
+export const getUserInfo = () => {
+  return request({
+    url: '/blade-system/user/info',
+    method: 'get',
+  });
+};
+export const updateInfo = row => {
+  return request({
+    url: '/blade-system/user/update-info',
+    method: 'post',
+    data: row,
+  });
+};
+export const updatePassword = (oldPassword, newPassword, newPassword1) => {
+  return request({
+    url: '/blade-system/user/update-password',
+    method: 'post',
+    params: {
+      oldPassword,
+      newPassword,
+      newPassword1,
+    },
+  });
+};
\ No newline at end of file

--
Gitblit v1.9.3