From 6416b40cf242340eaa163c498bd49d8103e73610 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Mon, 29 Jul 2024 17:01:52 +0800
Subject: [PATCH] 代码优化
---
src/api/userHouse/list/userHouseList.js | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/src/api/userHouse/list/userHouseList.js b/src/api/userHouse/list/userHouseList.js
index 4445984..2b8649a 100644
--- a/src/api/userHouse/list/userHouseList.js
+++ b/src/api/userHouse/list/userHouseList.js
@@ -104,6 +104,45 @@
}
})
}
+
+export const getOrgStatisticalLabels = (current, size, params) => {
+ return request({
+ url: '/api/blade-householdLabel/householdLabel/getOrgStatisticalLabels',
+ method: 'get',
+ params: {
+ ...params,
+ current,
+ size,
+ }
+ })
+}
+
+
+export const getUnitedFrontStatisticalLabels = (current, size, params) => {
+ return request({
+ url: '/api/blade-householdLabel/householdLabel/getUnitedFrontStatisticalLabels',
+ method: 'get',
+ params: {
+ ...params,
+ current,
+ size,
+ }
+ })
+}
+
+
+export const getFollowStatisticalLabels = (current, size, params) => {
+ return request({
+ url: '/api/blade-householdLabel/householdLabel/getFollowStatisticalLabels',
+ method: 'get',
+ params: {
+ ...params,
+ current,
+ size,
+ }
+ })
+}
+
export const getCommunityStatisticalLabels = (current, size, params) => {
return request({
url: '/api/blade-householdLabel/householdLabel/getCommunityStatisticalLabels',
--
Gitblit v1.9.3