From 8da6f33d33dbf768a6dd5de2fa33fd6fb28cd195 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 27 Jun 2024 17:18:26 +0800
Subject: [PATCH] 代码优化

---
 api/system/index.js |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/api/system/index.js b/api/system/index.js
index c5d6e96..4588fd3 100644
--- a/api/system/index.js
+++ b/api/system/index.js
@@ -22,3 +22,56 @@
 		}
 	})
 }
+
+//获取扫码详情
+export const getQrCodeDetail = (params) => {
+	return http.request({
+		url: '/blade-doorplateAddress/doorplateAddress/getDetail',
+		method: 'GET',
+		params: {
+			...params
+		}
+	})
+}
+
+export const sendCode = (params) => {
+	return http.request({
+		url: '/blade-smsSend/smsSend/send',
+		method: 'get',
+		params: {
+			...params
+		}
+	})
+}
+
+
+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',
+		method: 'get',
+		params: {
+			...params
+		}
+	})
+}
\ No newline at end of file

--
Gitblit v1.9.3