| | |
| | | }); |
| | | }; |
| | | |
| | | // 查询人物学术流派 |
| | | 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, |
| | | }); |
| | | }; |
| | | |
| | | export const searchSchoolPerson = (data) => { |
| | | return req1({ |
| | | url: "/person/searchSchoolPerson", |
| | |
| | | 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", |
| | | }); |
| | | }; |