fixing display

This commit is contained in:
Warunee Tamkoo 2025-01-06 19:21:22 +07:00
parent 140a319718
commit adc9ae1272

View file

@ -247,13 +247,18 @@ onMounted(async () => {
<div
v-if="evaluationResult !== 'PENDING'"
align="right"
:class="
evaluationResult == 'PASS'
? `full-width text-green`
: `full-width text-orange`
"
class="full-width"
>
ผลการพจารณา : {{ evaluationResult == "PASS" ? "ผ่าน" : "ไม่ผ่าน" }}
ผลการประเม:
<span
:class="
evaluationResult == 'PASS'
? `full-width text-green`
: `full-width text-red`
"
>
{{ evaluationResult == "PASS" ? "ผ่าน" : "ไม่ผ่าน" }}
</span>
</div>
</div>
</div>