รักษาการในตำแหน่ง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-12-03 14:06:09 +07:00
parent 93fd5012eb
commit 35422c6963
3 changed files with 47 additions and 22 deletions

View file

@ -1100,7 +1100,7 @@ export const useCounterMixin = defineStore("mixin", () => {
.catch((error) => console.error("ดาวน์โหลดไฟล์ไม่สำเร็จ:", error));
}
function filterTableQuasar(keyword: string, data: any[], columns: any[]) {
function onSearchDataTable(keyword: string, data: any[], columns: any[]) {
const searchText = keyword.trim().toLowerCase();
if (!searchText) {
@ -1164,6 +1164,6 @@ export const useCounterMixin = defineStore("mixin", () => {
pathRegistryEmp,
downloadRenameFileByLink,
filterTableQuasar,
onSearchDataTable,
};
});