From 21d426b1e5a93cf818d03736752561ade9308a4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 15 Apr 2024 15:23:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/satisfactionSurvey.js | 10 ++ src/views/manage/Auditing/index.vue | 7 +- src/views/manage/LookAuditing/index.vue | 7 +- src/views/manage/manualReview/index.vue | 19 +-- src/views/system/satisfactionSurvey/index.vue | 134 ++++++++++++++++++ 5 files changed, 152 insertions(+), 25 deletions(-) create mode 100644 src/api/system/satisfactionSurvey.js create mode 100644 src/views/system/satisfactionSurvey/index.vue diff --git a/src/api/system/satisfactionSurvey.js b/src/api/system/satisfactionSurvey.js new file mode 100644 index 0000000..058b689 --- /dev/null +++ b/src/api/system/satisfactionSurvey.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +// 列表 +export function satisfactionSurvey(query) { + return request({ + url: '/system/patientQuestionSubmitResult/satisfactionSurvey', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/views/manage/Auditing/index.vue b/src/views/manage/Auditing/index.vue index 5894bd0..795ec96 100644 --- a/src/views/manage/Auditing/index.vue +++ b/src/views/manage/Auditing/index.vue @@ -275,13 +275,8 @@ export default { res.data.birthDate ? res.data.age = getAge(res.data.birthDate) : '' this.list = res.data }) - getRouteNodeList({ patientId: this.$route.query.patientId, taskCreateType: 'MANUAL_CREATE' }).then(res => { + getRouteNodeList({ patientId: this.$route.query.patientId, taskCreateType: 'MANUAL_CREATE', routeCheckStatus: "UNAUDITED" }).then(res => { this.nodelist = res.data - this.nodelist.forEach(e => { - let text - e.suitRange == 'IN_THE_HOSPITAL' ? text = '在院' : e.suitRange == 'DISCHARGE' ? text = '出院' : e.suitRange == 'OUTPATIENT_SERVICE' ? text = '门诊' : e.suitRange == 'OUTPATIENT_SERVICE_DISCHARGE' ? text = '门诊+出院' : text = "" - e.title = '任务名称:' + e.routeName + +'适用范围:' + text - }) }) }, cancel() { diff --git a/src/views/manage/LookAuditing/index.vue b/src/views/manage/LookAuditing/index.vue index 6ced1eb..adb99f3 100644 --- a/src/views/manage/LookAuditing/index.vue +++ b/src/views/manage/LookAuditing/index.vue @@ -274,13 +274,8 @@ export default { res.data.birthDate ? res.data.age = getAge(res.data.birthDate) : '' this.list = res.data }) - getRouteNodeList({ patientId: this.$route.query.patientId, taskCreateType: 'MANUAL_CREATE' }).then(res => { + getRouteNodeList({ patientId: this.$route.query.patientId, taskCreateType: 'MANUAL_CREATE', routeCheckStatus: this.$route.query.routeCheckStatus }).then(res => { this.nodelist = res.data - this.nodelist.forEach(e => { - let text - e.suitRange == 'IN_THE_HOSPITAL' ? text = '在院' : e.suitRange == 'DISCHARGE' ? text = '出院' : e.suitRange == 'OUTPATIENT_SERVICE' ? text = '门诊' : e.suitRange == 'OUTPATIENT_SERVICE_DISCHARGE' ? text = '门诊+出院' : text = "" - e.title = '任务名称:' + e.routeName + +'适用范围:' + text - }) }) }, cancel() { diff --git a/src/views/manage/manualReview/index.vue b/src/views/manage/manualReview/index.vue index b5c06cc..fcf2156 100644 --- a/src/views/manage/manualReview/index.vue +++ b/src/views/manage/manualReview/index.vue @@ -1,7 +1,7 @@