fix เงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-12-02 16:06:25 +07:00
parent f81b69b828
commit 8ede2c6d09
2 changed files with 5 additions and 5 deletions

View file

@ -102,8 +102,6 @@ const baseItemsMenu = ref<DataOptionSys[]>([
]); ]);
const itemsMenu = computed(() => { const itemsMenu = computed(() => {
console.log(leaveReason.value);
if ( if (
leaveReason.value === leaveReason.value ===
"(พ้นจากราชการด้วยสาเหตุ: ได้รับโทษทางวินัย ให้ออกจากราชการไว้ก่อน)" || "(พ้นจากราชการด้วยสาเหตุ: ได้รับโทษทางวินัย ให้ออกจากราชการไว้ก่อน)" ||

View file

@ -71,11 +71,11 @@ const columns = ref<QTableProps["columns"]>([
style: "font-size: 14px", style: "font-size: 14px",
}, },
{ {
name: "posTypeName", name: "posType",
align: "left", align: "left",
label: "กลุ่มงาน", label: "กลุ่มงาน",
sortable: true, sortable: true,
field: "posTypeName", field: "posType",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px",
}, },
@ -87,6 +87,9 @@ const columns = ref<QTableProps["columns"]>([
field: "posLevelName", field: "posLevelName",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px",
format(val, row) {
return `${row.posTypeShort}${row.posLevel}`;
},
}, },
]); ]);
/** ข้อมูุลค้นหา*/ /** ข้อมูุลค้นหา*/
@ -227,7 +230,6 @@ watch(
<q-input <q-input
borderless borderless
dense dense
debounce="300"
outlined outlined
placeholder="ค้นหา" placeholder="ค้นหา"
v-model="formFilter.keyword" v-model="formFilter.keyword"