YM
2024-04-26 a640a68b55034ad38b1936eedd33c23f63bec0f0
src/api/index.js
@@ -143,8 +143,8 @@
// 医学人物知识库 基础检索
export const getFuzzySearch = (requestData) => {
  return req1({
    url: "/person/fuzzySearch?keyword="+requestData?.keyword,
    method: "post",
    url: "/person/fuzzySearch?keyword=" + requestData?.keyword,
    method: "post"
  });
};
@@ -218,6 +218,30 @@
};
// -------------------------P
// 朝代
export const getDynastyAll = () => {
  return req1({
    url: "/dynasty/list",
    method: "post"
  });
};
export const getDynasty = () => {
  return req1({
    url: "/dynasty/listAll",
    method: "post"
  });
};
// 学术流派
export const getDynastyStatistics = () => {
  return req1({
    url: "/school/dynasty/statistics",
    method: "get"
  });
};
// 医事制度
// 数据统计
export const getDataStatistics = () => {
@@ -235,11 +259,11 @@
  });
};
// 详情
export const getMedicalDetails = (Obj) => {
export const getMedicalDetails = (data) => {
  return req1({
    url: "/medical/details",
    method: "post",
    data: Obj
    data: data
  });
};
// 取值:RDF、NT、XML、JSON
@@ -252,8 +276,6 @@
};
// -----------
// 中国医学人物知识库
// 数据统计