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
|
<div
|
||||||
v-if="evaluationResult !== 'PENDING'"
|
v-if="evaluationResult !== 'PENDING'"
|
||||||
align="right"
|
align="right"
|
||||||
:class="
|
class="full-width"
|
||||||
evaluationResult == 'PASS'
|
|
||||||
? `full-width text-green`
|
|
||||||
: `full-width text-orange`
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
ผลการพิจารณา : {{ evaluationResult == "PASS" ? "ผ่าน" : "ไม่ผ่าน" }}
|
ผลการประเมิน:
|
||||||
|
<span
|
||||||
|
:class="
|
||||||
|
evaluationResult == 'PASS'
|
||||||
|
? `full-width text-green`
|
||||||
|
: `full-width text-red`
|
||||||
|
"
|
||||||
|
>
|
||||||
|
{{ evaluationResult == "PASS" ? "ผ่าน" : "ไม่ผ่าน" }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue