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 @@