diff --git a/.env.production b/.env.production index c24054c..771c23c 100644 --- a/.env.production +++ b/.env.production @@ -3,4 +3,4 @@ VITE_API_URI_REPORT_CONFIG=VITE_API_URI_REPORT_CONFIG VITE_KC_REALM=VITE_KC_REALM VITE_CLIENTID_EXAM_KEYCLOAK=VITE_CLIENTID_EXAM_KEYCLOAK VITE_KC_URL=VITE_KC_URL -API_REPORT_TEMPLATE_URI=API_REPORT_TEMPLATE_URI \ No newline at end of file +VITE_API_REPORT_URL=VITE_API_REPORT_URL \ No newline at end of file diff --git a/src/modules/01_exam/store.ts b/src/modules/01_exam/store.ts index 50510ad..dbf0483 100644 --- a/src/modules/01_exam/store.ts +++ b/src/modules/01_exam/store.ts @@ -32,6 +32,7 @@ export const useExamDataStore = defineStore('exam', () => { const examInfo = ref() const educationLevel = ref('') const isShowExamInfo = ref(false) + const isShowResult = ref(true) const consend = ref(false) const status = ref('') @@ -59,6 +60,7 @@ export const useExamDataStore = defineStore('exam', () => { changeStatus, examInfo, educationLevel, - isShowExamInfo + isShowExamInfo, + isShowResult } }) diff --git a/src/modules/01_exam/views/ExamDetail.vue b/src/modules/01_exam/views/ExamDetail.vue index 4f6929e..4faa426 100644 --- a/src/modules/01_exam/views/ExamDetail.vue +++ b/src/modules/01_exam/views/ExamDetail.vue @@ -1,6 +1,24 @@