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

标签增改

parent 8552294e
......@@ -12,51 +12,28 @@ export function getSysCheckNote(params = {}) {
params,
});
}
//随访调查 列表
export function getFollowSurvey(params = {}) {
return request({
url: "/disease-data/follow/survey",
method: "get",
params,
});
}
///////////////审核质控/////////////////////
//随访已审核列表
export function getFollowCheck(params = {}) {
//新增意见标签
export function postSysCheckNote(data = {}) {
return request({
url: "/disease-data/dataCheck/follow/check",
method: "get",
params,
url: "/disease-data/sysCheckNote",
method: "post",
data
});
}
//随访待审核列表
export function getFollowUncheck(params = {}) {
//修改意见标签
export function putSysCheckNote(data = {}) {
return request({
url: "/disease-data/dataCheck/follow/unCheck",
method: "get",
params,
url: "/disease-data/sysCheckNote",
method: "put",
data
});
}
//随访病例待审核(详情数据)
export function getFollowUnCheckDetail(id) {
//删除意见标签
export function delSysCheckNote(id) {
return request({
url: `/disease-data/dataCheck/follow/unCheck/detail/${id}`,
method: "get",
url: `/disease-data/sysCheckNote/${id}`,
method: "delete",
});
}
\ No newline at end of file
//随访病例审核
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 {
border-top: 1px solid $base-border-color;
.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