diff --git a/src/api/followup.js b/src/api/followup.js index c6f7a48c1bcf01cabbf992db4d186427c7ed8297..b50ff2f2c6e5aa5f5ba5c67af5796836deb5612d 100644 --- a/src/api/followup.js +++ b/src/api/followup.js @@ -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, }); diff --git a/src/components/CustomsTable/index.vue b/src/components/CustomsTable/index.vue index 7a67e9c635af427b44aebd9b21f1d1fbf6761784..c1c9fab539f423f8ac45d2fb8818de61ebae22db 100644 --- a/src/components/CustomsTable/index.vue +++ b/src/components/CustomsTable/index.vue @@ -43,7 +43,7 @@ {{ scope.row[column.value] || "--" }} + >{{ String(scope.row[column.value]) || "--" }} diff --git a/src/views/audit-qualitycontrol/community.vue b/src/views/audit-qualitycontrol/community.vue index 4d1b1b513eb998b5b16bd837b4411de9dd9ae4c8..dca5e4553593be4cea61e3dcad3777fe5041352b 100644 --- a/src/views/audit-qualitycontrol/community.vue +++ b/src/views/audit-qualitycontrol/community.vue @@ -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" + + } ], } }, diff --git a/src/views/followupentry/index.vue b/src/views/followupentry/index.vue index f6be79711d8c18623502dbb8a686a65932c43f6c..7e501e9964cbea147a0218d7e9e7cde4486aeace 100644 --- a/src/views/followupentry/index.vue +++ b/src/views/followupentry/index.vue @@ -18,17 +18,7 @@ export default { }, created() { }, - computed:{ - formEdit(){ - return this.$route.query - } - }, methods: {}, - provide() { - return { - formEdit:this.$route.query.formEdit - } - }, } diff --git a/src/views/screening/components/FormTab.vue b/src/views/screening/components/FormTab.vue index f1df7a565f6c308956cd993b40fc64e747bb7df5..6b3430ac16bf5519e647fa910047fc55eae7572e 100644 --- a/src/views/screening/components/FormTab.vue +++ b/src/views/screening/components/FormTab.vue @@ -42,11 +42,7 @@ --> -