From dfe7dd4c8dfa0e25d525c8ce9e3807d63dc592b5 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 06 Jun 2024 16:10:38 +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