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 | 65 ++++++++++++++++++++++++++++++++
1 files changed, 65 insertions(+), 0 deletions(-)
diff --git a/api/system/index.js b/api/system/index.js
index 054ad79..4588fd3 100644
--- a/api/system/index.js
+++ b/api/system/index.js
@@ -9,4 +9,69 @@
...params
}
})
+}
+
+
+//获取快捷拨号
+export const getContact = (params) => {
+ return http.request({
+ url: '/blade-household/household/getHouseholdOtherInfo',
+ method: 'GET',
+ params: {
+ ...params
+ }
+ })
+}
+
+//获取扫码详情
+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