From fed911357bda5169f00d0c6f32f8ca011389bbf6 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期三, 07 九月 2022 08:57:04 +0800
Subject: [PATCH] 1.车间看板优化
---
src/api/user.js | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/src/api/user.js b/src/api/user.js
index bb9faa4..319f928 100644
--- a/src/api/user.js
+++ b/src/api/user.js
@@ -7,10 +7,11 @@
params: data
})
}
-export function LoginMenu() {
+export function LoginMenu(data) {
return request({
url: 'Login/LoginMenu',
- method: 'get'
+ method: 'get',
+ params: data
})
}
@@ -29,3 +30,17 @@
params: data
})
}
+export function UpdateUserPassword(data) {
+ return request({
+ url: '/Login/UpdateUserPassword',
+ method: 'post',
+ params: data
+ })
+}
+export function ForcedOffline(data) {
+ return request({
+ url: '/Login/ForcedOffline',
+ method: 'post',
+ params: data
+ })
+}
--
Gitblit v1.9.3