From 6a7fe3910a91355467295b4f81f71405fb1b1e75 Mon Sep 17 00:00:00 2001 From: YM <479443481@qq.com> Date: 星期二, 23 七月 2024 16:00:56 +0800 Subject: [PATCH] 1 --- src/api/index.js | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/src/api/index.js b/src/api/index.js index 5f87363..adfd9c3 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -302,6 +302,14 @@ }); }; +// 鏌ヨ浜虹墿瀛︽湳娴佹淳 +export const getSchoolInfo = (id) => { + return req1({ + url: "/person/chain/search/school?schoolId=" + id + "&maxStep=3", + method: "post", + }); +}; + export const searchSchoolPerson = (data) => { return req1({ url: "/person/searchSchoolPerson", @@ -380,3 +388,26 @@ 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