ระบบประเมิน eva แสดงระดับตำแหน่งที่ได้รับ
This commit is contained in:
parent
2d8e11afa3
commit
0f0812dd0a
2 changed files with 15 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue