insignia Reclaim

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-04-30 17:34:20 +07:00
parent b653300188
commit 17ff56c7cf
5 changed files with 1421 additions and 179 deletions

View file

@ -0,0 +1,18 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useInsigniaReclaimStore = defineStore("insigniaReclaim", () => {
const roundData = ref<any[]>([{ name: "ทั้งหมด", id: "all" }]);
const insigniaTypeData = ref<any[]>([{ name: "ทั้งหมด", id: "all" }]);
const employeeClassData = ref<any[]>([
{ name: "ทั้งหมด", id: "all" },
{ name: "ข้าราชการ กทม.สามัญ", id: "officer" },
{ name: "ลูกจ้างประจำ", id: "perm" },
]);
return {
roundData,
insigniaTypeData,
employeeClassData,
};
});