From 0a2191a45a2477e6526ab4b8360cd8feb33c79ad Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Sat, 25 May 2024 18:10:30 +0800
Subject: [PATCH] 代码优化
---
src/api/system/user.js | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/src/api/system/user.js b/src/api/system/user.js
index ccc639b..86f7346 100644
--- a/src/api/system/user.js
+++ b/src/api/system/user.js
@@ -119,14 +119,10 @@
})
}
-export const zc = (username, password, phone) => {
+export const zc = (param) => {
return request({
- url: '/api/blade-user/zc',
- method: 'get',
- params: {
- username,
- password,
- phone
- }
+ url: '/api/blade-system/user/register-user',
+ method: 'post',
+ data: param
})
}
--
Gitblit v1.9.3