แก้ฟิลเตอร์ จากล่างขึ้นบนถึง พ้นราชการ

This commit is contained in:
setthawutttty 2024-12-03 15:28:53 +07:00
parent 35422c6963
commit e9280ca4f3
21 changed files with 260 additions and 69 deletions

View file

@ -58,6 +58,7 @@ export const useRoundDataStore = defineStore("roundWorkStore", () => {
/** ข้อมูลในตาราง */
const rows = ref<dataRowRound[]>([]);
const rowsData = ref<dataRowRound[]>([]);
/**
* Function API map
* @param data API
@ -85,12 +86,14 @@ export const useRoundDataStore = defineStore("roundWorkStore", () => {
};
});
rows.value = datalist;
rowsData.value = datalist;
}
return {
visibleColumns,
columns,
rows,
rowsData,
fetchData,
};
});