From 3c738f4fe2762bba8087e5a22fc0dc06560eab0e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 08 Aug 2024 10:01:17 +0800
Subject: [PATCH] 三色任务与自查任务
---
api/system/index.js | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/api/system/index.js b/api/system/index.js
index 0ce77f2..4588fd3 100644
--- a/api/system/index.js
+++ b/api/system/index.js
@@ -44,6 +44,28 @@
})
}
+
+export const sendLoginCode = (params) => {
+ return http.request({
+ url: '/blade-smsSend/smsSend/loginSend',
+ method: 'get',
+ params: {
+ ...params
+ }
+ })
+}
+
+
+export const checkLoginCode = (params) => {
+ return http.request({
+ url: '/blade-smsSend/smsSend/checkCode',
+ method: 'get',
+ params: {
+ ...params
+ }
+ })
+}
+
export const searchContent = (params) => {
return http.request({
url: '/es/es/page',
--
Gitblit v1.9.3