WXL
2023-12-21 0d7443623155fa14136d9a18ebd30dd203e4bb82
src/api/AiCentre/indicator.js
@@ -1,12 +1,5 @@
import request from "@/utils/request";
// 查询指标列表
export function listtarget(data) {
  return request({
    url: "/smartor/target/list",
    method: "post",
    data: data,
  });
}
// 查询指标及其关联选项
export function gettargetInfo(data) {
  return request({
@@ -22,10 +15,10 @@
    method: "get",
  });
}
// 查询指标及其关联选项
// 修改指标及其关联选项
export function gettargetInfoedit(data) {
  return request({
    url: "/smartor/target/edit",
    url: "/smartor/target/saveOrupdateIvrLibaTarget",
    method: "post",
    data: data,
  });
@@ -46,3 +39,41 @@
    method: "get",
  });
}
// 查询疾病
export function getillnesslist(data) {
  return request({
    url: "/smartor/icd10/list",
    method: "post",
    data: data,
  });
}
// 疾病详情
export function illnesslistget(Id) {
  return request({
    url: "/smartor/icd10/getInfo/" + Id,
    method: "get",
  });
}
// 查询指标疾病
export function getillness(data) {
  return request({
    url: "/smartor/outicd10/list",
    method: "post",
    data: data,
  });
}
// 新增指标疾病
export function addtargetillness(data) {
  return request({
    url: "/smartor/outicd10/add",
    method: "post",
    data: data,
  });
}
// 删除指标疾病
export function deltargetillness(Id) {
  return request({
    url: "/smartor/outicd10/remove/" + Id,
    method: "get",
  });
}