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

随访审核

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