Commit e370a1ff authored by 刘予佳's avatar 刘予佳

标签增改

parent 8552294e
...@@ -12,51 +12,28 @@ export function getSysCheckNote(params = {}) { ...@@ -12,51 +12,28 @@ export function getSysCheckNote(params = {}) {
params, params,
}); });
} }
//随访调查 列表
export function getFollowSurvey(params = {}) { //新增意见标签
return request({ export function postSysCheckNote(data = {}) {
url: "/disease-data/follow/survey",
method: "get",
params,
});
}
///////////////审核质控/////////////////////
//随访已审核列表
export function getFollowCheck(params = {}) {
return request({ return request({
url: "/disease-data/dataCheck/follow/check", url: "/disease-data/sysCheckNote",
method: "get", method: "post",
params, data
}); });
} }
//随访待审核列表
export function getFollowUncheck(params = {}) { //修改意见标签
export function putSysCheckNote(data = {}) {
return request({ return request({
url: "/disease-data/dataCheck/follow/unCheck", url: "/disease-data/sysCheckNote",
method: "get", method: "put",
params, data
}); });
} }
//随访病例待审核(详情数据) //删除意见标签
export function getFollowUnCheckDetail(id) { export function delSysCheckNote(id) {
return request({ return request({
url: `/disease-data/dataCheck/follow/unCheck/detail/${id}`, url: `/disease-data/sysCheckNote/${id}`,
method: "get", method: "delete",
}); });
}
//随访病例审核
export function putFollowCheck(data = {}) {
return request({
url: "/disease-data/dataCheck/follow/check",
method: "put",
data,
})
}
//修改随访审核意见
export function putFollowCheckAdvice(data = {}) {
return request({
url: "/disease-data/dataCheck/follow/check/advice",
method: "put",
data,
})
} }
\ No newline at end of file
...@@ -272,7 +272,7 @@ html { ...@@ -272,7 +272,7 @@ html {
border-top: 1px solid $base-border-color; border-top: 1px solid $base-border-color;
.el-form { .el-form {
padding-right: 30px; // padding-right: 30px;
} }
} }
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment