| | |
| | | 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({ |
| | |
| | | method: "get", |
| | | }); |
| | | } |
| | | // 查询指标及其关联选项 |
| | | // 修改指标及其关联选项 |
| | | export function gettargetInfoedit(data) { |
| | | return request({ |
| | | url: "/smartor/target/edit", |
| | | url: "/smartor/target/saveOrupdateIvrLibaTarget", |
| | | method: "post", |
| | | data: data, |
| | | }); |
| | |
| | | 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", |
| | | }); |
| | | } |