แก้ไข ชื่อตำแหน่งที่สมัคร

This commit is contained in:
AnandaTon 2023-10-05 17:33:58 +07:00
parent c3b8543ae1
commit 73c9cab3f1

View file

@ -339,7 +339,7 @@ const columns = ref<QTableProps["columns"]>([
{
name: "position",
align: "left",
label: "ตำแหน่ง",
label: "ตำแหน่งที่สมัคร",
sortable: true,
field: "position",
headerStyle: "font-size: 14px; min-width: 200px",
@ -451,7 +451,6 @@ onMounted(async () => {
await fetchDataCom();
});
const fetchDataCom = async () => {
await fetchDataSummary();
await fetchPeriodExam();
@ -481,6 +480,8 @@ const fetchData = async () => {
email: r.email,
status: r.status,
position: r.positionExam == null ? "-" : r.positionExam.positionName,
positionLevel:
r.positionExam == null ? "-" : r.positionExam.positionLevelName,
check: false,
});
});