Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2024-03-08 10:10:56 +07:00
commit f65a7086bd
5 changed files with 16 additions and 2 deletions

View file

@ -96,6 +96,7 @@ const formFilter = reactive<DataFilterPerson>({
page: 1,
pageSize: 10,
keyword: "",
rootId: ""
});
const maxPage = ref<number>(1);
@ -108,7 +109,8 @@ function closeModal() {
/** function เรียกรายชื่อ คนเลื่อนเงินเดือน*/
function fetchListPerson() {
showLoader();
showLoader();
formFilter.rootId = store.rootId;
http
.post(config.API.salaryListPerson, formFilter)
.then((res) => {