Compare commits

..

No commits in common. "3478875bc3fb53b6b7caa4f189a0b510ec26df32" and "b1e292cefca9fbfa0ddb0d5c4789ade5f92d41b9" have entirely different histories.

3 changed files with 3 additions and 27 deletions

View file

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

View file

@ -32,7 +32,6 @@ export const useExamDataStore = defineStore('exam', () => {
const examInfo = ref<DataExam>()
const educationLevel = ref<string>('')
const isShowExamInfo = ref<boolean>(false)
const isShowResult = ref<boolean>(true)
const consend = ref<boolean>(false)
const status = ref<string>('')
@ -60,7 +59,6 @@ export const useExamDataStore = defineStore('exam', () => {
changeStatus,
examInfo,
educationLevel,
isShowExamInfo,
isShowResult
isShowExamInfo
}
})

View file

@ -1,24 +1,6 @@
<!-- page:detail page รายการสอบทงหมด -->
<template>
<div v-if="!storeExam.isShowResult" class="flex flex-center" style="min-height: 70vh">
<div class="text-center q-px-xl" style="max-width: 800px">
<q-icon name="mdi-timer-off" size="100px" color="red-7" class="q-mb-lg" />
<div class="text-h5 text-weight-medium q-mb-sm text-red-7">
นสดระยะเวลาการแสดงผลสอบผานระบบออนไลน
</div>
<q-separator class="q-mx-auto q-mb-md" style="max-width: 100px" />
<div class="text-body1 text-grey-8" style="line-height: 1.8">
านสามารถตรวจสอบผลการสอบผานระบบไดภายใน
<strong class="text-red-7">15 </strong> บจากวนประกาศผล<br />
กรณนระยะเวลาทกำหนด กรณาตดตอกองสรรหาโดยตรง
</div>
</div>
</div>
<q-toolbar class="q-pa-sm text-center" v-if="storeExam.isShowResult">
<q-toolbar class="q-pa-sm text-center">
<div class="text-dark row col-12 text-h6 q-px-md">
<div class="col-12">
{{ tittle }}
@ -35,7 +17,6 @@
</q-toolbar> -->
<q-stepper
v-if="storeExam.isShowResult"
v-model="step"
ref="stepper"
alternative-labels
@ -95,13 +76,11 @@
</q-card>
</q-step>
</q-stepper>
<q-dialog :model-value="modalConsend" persistent>
<q-card :style="$q.screen.gt.xs ? 'min-width: 50vw' : 'min-width: 80vw'">
<Consendform :ok="consendOk" :editorCondition="editorCondition" />
</q-card>
</q-dialog>
<q-dialog :model-value="timeout" persistent>
<q-card :style="$q.screen.gt.xs ? 'min-width: 30vw' : 'min-width: 80vw'" class="q-pa-sm">
<q-card-section class="row items-center col-12">
@ -251,7 +230,6 @@ const fetchStep = async () => {
rejectMessage.value = data.rejectDetail
status.value = data.status
storeExam.isShowExamInfo = data.isShowExamInfo || false
storeExam.isShowResult = data.isShowResult || true
if (status.value == 'register') {
stepRaw.value = 2
step.value = 2