import request from "@/utils/request"; // 查询指标及其关联选项 export function gettargetInfo(data) { return request({ url: "/smartor/target/targetInfo", method: "post", data: data, }); } // 指标详情 export function particulartarget(Id) { return request({ url: "/smartor/target/getInfo/" + Id, method: "get", }); } // 修改指标及其关联选项 export function gettargetInfoedit(data) { return request({ url: "/smartor/target/saveOrupdateIvrLibaTarget", method: "post", data: data, }); } // 新增指标 export function addtarget(data) { return request({ url: "/smartor/target/add", method: "post", data: data, }); } // 删除指标 export function deletetarget(userId) { return request({ url: "/smartor/target/remove/" + userId, 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", }); }