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 | 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