insignia Reclaim
This commit is contained in:
parent
b653300188
commit
17ff56c7cf
5 changed files with 1421 additions and 179 deletions
18
src/modules/07_insignia/storeReclaim.ts
Normal file
18
src/modules/07_insignia/storeReclaim.ts
Normal 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,
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue