| | |
| | | |
| | | // 验证码 /account/verifyCode |
| | | export const getverifyCode = (req) => { |
| | | console.log(req, qs.encode(req), "rrr"); |
| | | return req1({ |
| | | url: "/account/verifyCode", |
| | | method: "post", |
| | |
| | | |
| | | // login 登录 |
| | | export const getLogin = (req) => { |
| | | console.log(req, qs.encode(req), "rrr"); |
| | | return req1({ |
| | | url: "/account/verification", |
| | | method: "post", |
| | |
| | | params: data |
| | | }); |
| | | }; |
| | | // 医学人物知识库 人物关系 |
| | | export const getNodeCount = (data) => { |
| | | return req1({ |
| | | url: "/inheritMedical/nodeCount", |
| | | method: "post", |
| | | data: data |
| | | }); |
| | | }; |
| | | |
| | | // 医学人物知识库 著述 |
| | | export const getPersonWritings = (data) => { |
| | |
| | | // 中国地域地谱检索人物 |
| | | export const getRetrieval = (requestData) => { |
| | | return req1({ |
| | | url: "/person/retrieval", |
| | | method: "post", |
| | | data: { |
| | | keyword: requestData?.keyword || "", |
| | | dynasty: requestData?.dynasty || "" |
| | | } |
| | | url: |
| | | "/person/retrieval?page=" + |
| | | requestData?.page + |
| | | "&pageSize=" + |
| | | requestData?.pageSize + |
| | | "&keyword=" + |
| | | requestData?.keyword + |
| | | "&dynasty=" + |
| | | requestData?.dynasty, |
| | | method: "post" |
| | | }); |
| | | }; |
| | | // 医学人物知识库 |
| | |
| | | }); |
| | | }; |
| | | |
| | | export const getPersonDataOutput = (Obj) => { |
| | | return req1({ |
| | | url: "/person/dataOutput", |
| | | method: "post", |
| | | params: Obj |
| | | }); |
| | | }; |
| | | |
| | | // ----------- |
| | | |
| | | // 中国医学人物知识库 |