From d16a07dcc2771bb65d03658847549ab3b21f6bcd Mon Sep 17 00:00:00 2001 From: 杨磊 <505174330@qq.com> Date: 星期四, 04 七月 2024 16:29:08 +0800 Subject: [PATCH] 图片title --- src/api/index.js | 94 ++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 84 insertions(+), 10 deletions(-) diff --git a/src/api/index.js b/src/api/index.js index 6c25b8c..746dfe9 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -12,7 +12,6 @@ // 楠岃瘉鐮� /account/verifyCode export const getverifyCode = (req) => { - console.log(req, qs.encode(req), "rrr"); return req1({ url: "/account/verifyCode", method: "post", @@ -25,7 +24,6 @@ // login 鐧诲綍 export const getLogin = (req) => { - console.log(req, qs.encode(req), "rrr"); return req1({ url: "/account/verification", method: "post", @@ -123,6 +121,14 @@ params: data }); }; +// 鍖诲浜虹墿鐭ヨ瘑搴� 浜虹墿鍏崇郴 +export const getNodeCount = (data) => { + return req1({ + url: "/inheritMedical/nodeCount", + method: "post", + data: data + }); +}; // 鍖诲浜虹墿鐭ヨ瘑搴� 钁楄堪 export const getPersonWritings = (data) => { @@ -140,13 +146,22 @@ params: Obj }); }; +export const getWebBasic = (Obj) => { + return req1({ + url: "/person/webBasic", + method: "post", + params: Obj + }); +}; + // 鍖诲浜虹墿鐭ヨ瘑搴� 鍩虹妫�绱� export const getFuzzySearch = (requestData) => { return req1({ url: "/person/fuzzySearch", method: "post", params: { - keyword: requestData?.keyword + keyword: requestData?.keyword, + personId: requestData?.personId, } }); }; @@ -163,12 +178,27 @@ // 涓浗鍦板煙鍦拌氨妫�绱汉鐗� 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 getPreCount = (requestData) => { + return req1({ + url: + "/person/retrieval/preCount?keyword=" + + requestData?.keyword + + "&dynasty=" + + requestData?.dynasty, + method: "post" }); }; // 鍖诲浜虹墿鐭ヨ瘑搴� @@ -221,7 +251,7 @@ }; // -------------------------P -// 鏈濅唬 +// 鏃舵湡 export const getDynastyAll = () => { return req1({ url: "/dynasty/list", @@ -232,6 +262,12 @@ export const getDynasty = () => { return req1({ url: "/dynasty/listAll", + method: "post" + }); +}; +export const getDynastyData = () => { + return req1({ + url: "/person/retrieval/dynasty", method: "post" }); }; @@ -248,6 +284,14 @@ return req1({ url: "/school/introduction?id=" + id, method: "post" + }); +}; + +export const searchSchoolPerson = (data) => { + return req1({ + url: "/person/searchSchoolPerson", + method: "post", + params: data }); }; @@ -284,6 +328,14 @@ }); }; +export const getPersonDataOutput = (Obj) => { + return req1({ + url: "/person/dataOutput", + method: "post", + params: Obj + }); +}; + // ----------- // 涓浗鍖诲浜虹墿鐭ヨ瘑搴� @@ -299,3 +351,25 @@ export const getImg = (path) => { return baseUrl + "/picture/getImageByFilePath?filePath=" + path; }; + +export const getRelationTypeTreeList = () => { + return req1({ + url: "/personRelationType/getRelationTypeTreeList", + method: "post" + }); +}; + +export const getInstitutionList = () => { + return req1({ + url: "/medical/institutionList", + method: "post" + }); +}; + + + + + + + + -- Gitblit v1.9.1