From c4beaaabb7848d033a5bc7367df8047c9e4704e2 Mon Sep 17 00:00:00 2001
From: zhengpz <11@qq.com>
Date: Fri, 23 Jul 2021 00:41:27 +0800
Subject: [PATCH] 首页接口对接
---
src/api/index/index.js | 38 +++++++++++++++++++++++++++++++++-----
1 files changed, 33 insertions(+), 5 deletions(-)
diff --git a/src/api/index/index.js b/src/api/index/index.js
index 741254c..6c6f8ca 100644
--- a/src/api/index/index.js
+++ b/src/api/index/index.js
@@ -14,10 +14,38 @@
};
export const securityPer = () => {
- return request({
- url: "/api/performance/queryYearPer",
- method: "get"
- });
- };
+ return request({
+ url: "/api/performance/queryYearPer",
+ method: "get"
+ });
+};
+export const getLiveLocationVoList = (params) => {
+ return request({
+ url: "/api/liveLocation/getLiveLocationVoList",
+ method: "get",
+ params: params
+ });
+};
+export const lazyTreeJu = () => {
+ return request({
+ url: "/api/information/lazyTreeJu",
+ method: "post"
+ });
+};
+export const noholderNum = (params) => {
+ return request({
+ url: "/api/information/selectInCount",
+ method: "post",
+ params: params
+ });
+};
+export const noSocialSecurity = (params) => {
+ return request({
+ url: "/api/information/selectCs",
+ method: "post",
+ params: params
+ });
+};
+
--
Gitblit v1.9.3