ปรับ บัญชีเงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-19 10:53:52 +07:00
parent 7891c16a6c
commit c32c56bc10
5 changed files with 374 additions and 362 deletions

View file

@ -41,7 +41,7 @@ const columns = ref<QTableProps["columns"]>([
name: "salaryType",
align: "left",
label: "ประเภทผัง",
sortable: false,
sortable: true,
field: "salaryType",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
@ -49,7 +49,7 @@ const columns = ref<QTableProps["columns"]>([
{
name: "posType",
align: "left",
label: "เลขที่ตำแหน่ง",
label: "ประเภทตำแหน่ง",
sortable: true,
field: "posType",
headerStyle: "font-size: 14px",
@ -60,6 +60,7 @@ const columns = ref<QTableProps["columns"]>([
align: "left",
label: "ระดับ",
field: "posLevel",
sortable: true,
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
@ -121,7 +122,7 @@ const itemMenu = ref<ItemsMenu[]>([
/** queryString*/
const formQuery = reactive<FormQuerySalary>({
page: 1, //*
pageSize: 2, //*
pageSize: 10, //*
keyword: "", //keyword
});
const maxPage = ref<number>(1);