WXL (wul)
3 天以前 16cf0f0ab45f58a7fe3ad35d657eecc432e0aac2
src/api/AiCentre/EChartsdata.js
@@ -25,6 +25,14 @@
    data: data,
  });
}
// 首页中部数据
export function getServiceStatistics(data) {
  return request({
    url: "/smartor/serviceSubtask/getServiceStatistics",
    method: "post",
    data: data,
  });
}
// 查询患者住院记录列表
export function getechartsMedInhospList(data) {
  return request({
@@ -51,3 +59,19 @@
    data: data,
  });
}
// 获取orgid
// 再次随访服务
export function getorganization(data) {
  return request({
    url: "/smartor/organization/list",
    method: "get",
  });
}
// 发送短信
export function sendMsg(data) {
  return request({
    url: "/sms/send",
    method: "post",
    data: data
  });
}