From 652a4348e1b2e1b5253c562bd37e15e2c5518ea7 Mon Sep 17 00:00:00 2001
From: 杨磊 <505174330@qq.com>
Date: 星期五, 26 七月 2024 10:35:58 +0800
Subject: [PATCH] Merge branch 'master' of http://182.92.203.7:2001/r/TCM_CharacterLibrary

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

diff --git a/src/api/index.js b/src/api/index.js
index 70011c4..9f6ac7e 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -302,11 +302,27 @@
   });
 };
 
+export const getAdvancedData = (data) => {
+  return req1({
+    url: "/person/advanced/search",
+    method: "post",
+    data: data,
+  });
+};
+
 // 鏌ヨ浜虹墿瀛︽湳娴佹淳
 export const getSchoolInfo = (id) => {
   return req1({
     url: "/person/chain/search/school?schoolId=" + id + "&maxStep=3",
     method: "post",
+  });
+};
+
+export const getPlaceInfo = (data) => {
+  return req1({
+    url: "/person/search/place",
+    method: "post",
+    params: data,
   });
 };
 
@@ -397,3 +413,16 @@
   });
 };
 
+export const getPersonTag = () => {
+  return req1({
+    url: "/personTag/list",
+    method: "post",
+  });
+};
+
+export const getSocialDistinction = () => {
+  return req1({
+    url: "/socialDistinction/list",
+    method: "post",
+  });
+};

--
Gitblit v1.9.1