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

随访审核

parent 8e88d185
...@@ -12,10 +12,18 @@ export function getFollowSurvey(params = {}) { ...@@ -12,10 +12,18 @@ export function getFollowSurvey(params = {}) {
params, params,
}); });
} }
//审核质控 随访 //审核质控 随访已审核列表
export function getFollowCheck(params = {}) { export function getFollowCheck(params = {}) {
return request({ return request({
url: "/disease-data/follow/check/patientFrom", url: "/disease-data/follow/check",
method: "get",
params,
});
}
//审核质控 随访病例待审核(详情数据)
export function getFollowUnCheckDetail(params = {}) {
return request({
url: "/disease-data/dataCheck/follow/unCheck/detail/",
method: "get", method: "get",
params, params,
}); });
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<span <span
:style="{ fontSize: fontSize + 'px' }" :style="{ fontSize: fontSize + 'px' }"
v-else v-else
>{{ scope.row[column.value] || "--" }}</span> >{{ String(scope.row[column.value]) || "--" }}</span>
</template> </template>
</el-table-column> </el-table-column>
</template> </template>
......
...@@ -53,22 +53,22 @@ export default { ...@@ -53,22 +53,22 @@ export default {
{ {
label: "医联体", label: "医联体",
minWidth: 120, minWidth: 120,
value: "title", value: "unionName",
}, },
{ {
label: "已审核(例)", label: "已审核(例)",
minWidth: 120, minWidth: 120,
value: "file", value: "checkNums",
}, },
{ {
label: "待审核(例)备份", label: "待审核(例)备份",
minWidth: 120, minWidth: 120,
value: "uploadTime", value: "unCheckNums",
}, },
{ {
label: "最新上报时间", label: "最新上报时间",
minWidth: 120, minWidth: 120,
value: "editTime", value: "reportTime",
}, },
{ {
label: "操作", label: "操作",
...@@ -86,9 +86,17 @@ export default { ...@@ -86,9 +86,17 @@ export default {
], ],
tableData: [ tableData: [
{ {
title: "第一个", "unionId": "2",
isOpen: true,
}, "unionName": "合肥高新附院",
"unCheckNums": 2,
"checkNums": 0,
"reportTime": "2022-12-09 09:12:35"
}
], ],
} }
}, },
......
...@@ -18,17 +18,7 @@ export default { ...@@ -18,17 +18,7 @@ export default {
}, },
created() { created() {
}, },
computed:{
formEdit(){
return this.$route.query
}
},
methods: {}, methods: {},
provide() {
return {
formEdit:this.$route.query.formEdit
}
},
} }
</script> </script>
......
...@@ -42,11 +42,7 @@ ...@@ -42,11 +42,7 @@
</el-switch>--> </el-switch>-->
</div> </div>
</el-row> </el-row>
<div <div ref="my-form" class="my-form" :class="externalScroll ? 'no-scroll' : ''">
ref="my-form"
class="my-form"
:class="externalScroll ? 'no-scroll' : ''"
>
<!-- <read-form <!-- <read-form
ref="form" ref="form"
:options="survivalForm" :options="survivalForm"
...@@ -539,7 +535,7 @@ export default { ...@@ -539,7 +535,7 @@ export default {
}, },
created() { created() {
if (this.$route.query.formEdit) { if (this.$route.query.formEdit) {
this.formData.formEdit = this.$route.query.formEdit this.formData.formEdit = JSON.parse(this.$route.query.formEdit)
} }
this.initForm() this.initForm()
if (this.getAll) { if (this.getAll) {
......
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