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