ระบบประเมิน eva แสดงระดับตำแหน่งที่ได้รับ

This commit is contained in:
Warunee Tamkoo 2025-06-16 17:06:01 +07:00
parent 2d8e11afa3
commit 0f0812dd0a
2 changed files with 15 additions and 2 deletions

View file

@ -50,6 +50,8 @@ async function getDate() {
});
}
const assignedPosLevel = ref<string>(""); //
/**
* function เรยกขอมลผลงาน
*/
@ -72,6 +74,7 @@ async function getSigner() {
author.value = data.authorDoc2;
subject.value = data.subjectDoc2;
assignedPosition.value = data.assignedPosition;
assignedPosLevel.value = data.assignedPosLevel;
}
})
.catch((e) => {
@ -125,7 +128,7 @@ onMounted(async () => {
/>
<q-input
readonly
class="col-xs-12 col-sm-6"
class="col-xs-12 col-sm-3"
dense
outlined
v-model="assignedPosition"
@ -133,6 +136,16 @@ onMounted(async () => {
lazy-rules
hide-bottom-space
/>
<q-input
readonly
class="col-xs-12 col-sm-3"
dense
outlined
v-model="assignedPosLevel"
label="ระดับตำแหน่งที่ได้รับ"
lazy-rules
hide-bottom-space
/>
</div>
<div

View file

@ -71,7 +71,7 @@ onBeforeMount(async () => {
flat
color="primary"
class="q-mr-sm"
@click="router.go(-1)"
@click="router.push({ name: 'evaluate' })"
/>
<div>รายละเอยดการประเมนบคคลของ{{ `${fullName}` }}</div>
</div>