fixing display
This commit is contained in:
parent
140a319718
commit
adc9ae1272
1 changed files with 11 additions and 6 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue