From caeb2c4b5fa88f6fe8799b67c790d8ad8b4d98e8 Mon Sep 17 00:00:00 2001
From: QYF-GitLab1 <1940665526@qq.com>
Date: 星期三, 24 七月 2024 16:41:27 +0800
Subject: [PATCH] 1

---
 src/api/index.js |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/src/api/index.js b/src/api/index.js
index 102254c..5ae3f05 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -310,6 +310,14 @@
   });
 };
 
+export const getPlaceInfo = (data) => {
+  return req1({
+    url: "/person/search/place",
+    method: "post",
+    params: data,
+  });
+};
+
 export const searchSchoolPerson = (data) => {
   return req1({
     url: "/person/searchSchoolPerson",
@@ -388,3 +396,25 @@
     method: "post",
   });
 };
+
+export const academicSearch = (data) => {
+  return req1({
+    url: "/person/academic/search",
+    method: "post",
+    params: data,
+  });
+};
+
+export const getPersonTag = () => {
+  return req1({
+    url: "/personTag/list",
+    method: "post",
+  });
+};
+
+export const getSocialDistinction = () => {
+  return req1({
+    url: "/socialDistinction/list",
+    method: "post",
+  });
+};

--
Gitblit v1.9.1