From ef51ae09decb4e016a849d8a5d96be7f44dafc4f Mon Sep 17 00:00:00 2001
From: Lou <luzhiping@qqyjz.com>
Date: Wed, 17 Jan 2024 19:28:20 +0800
Subject: [PATCH] 修复问题
---
api/system/index.js | 26 +++++++++++++++++++++++++-
1 files changed, 25 insertions(+), 1 deletions(-)
diff --git a/api/system/index.js b/api/system/index.js
index 054ad79..4554431 100644
--- a/api/system/index.js
+++ b/api/system/index.js
@@ -9,4 +9,28 @@
...params
}
})
-}
\ No newline at end of file
+}
+
+
+//获取快捷拨号
+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
+ }
+ })
+}
+
--
Gitblit v1.9.3