fixing display
This commit is contained in:
parent
c423e68d01
commit
557badce4d
1 changed files with 12 additions and 2 deletions
|
|
@ -315,7 +315,7 @@ async function fetchDataSigner() {
|
||||||
nameOfWork.value = data.subjectDoc2;
|
nameOfWork.value = data.subjectDoc2;
|
||||||
nameOfOwner.value = data.authorDoc2;
|
nameOfOwner.value = data.authorDoc2;
|
||||||
position.value = data.assignedPosition;
|
position.value = data.assignedPosition;
|
||||||
evaluationResult.value = data.evaluationResult
|
evaluationResult.value = data.evaluationResult;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
|
|
@ -986,7 +986,17 @@ onMounted(async () => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="evaluationResult !== 'PENDING'" align="right" :class="evaluationResult == 'PASS' ? `full-width text-green`:`full-width text-orange` ">ผลการพิจารณา : {{ evaluationResult == 'PASS' ? 'ผ่าน':'ไม่ผ่าน' }}</div>
|
<div v-if="evaluationResult !== 'PENDING'" align="right" class="full-width">
|
||||||
|
ผลการประเมิน:
|
||||||
|
<span
|
||||||
|
:class="
|
||||||
|
evaluationResult == 'PASS'
|
||||||
|
? `full-width text-green`
|
||||||
|
: `full-width text-red`
|
||||||
|
"
|
||||||
|
>{{ evaluationResult == "PASS" ? "ผ่าน" : "ไม่ผ่าน" }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<q-dialog v-model="modalConfirm" persistent>
|
<q-dialog v-model="modalConfirm" persistent>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue