From 01413795feed90bf84afc4ceb520f52a6511cb6a Mon Sep 17 00:00:00 2001 From: QYF-GitLab1 <1940665526@qq.com> Date: 星期五, 26 七月 2024 11:36:20 +0800 Subject: [PATCH] 1 --- 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