เปลี่ยน id เป็น id card

This commit is contained in:
setthawutttty 2025-02-18 11:38:13 +07:00
parent 19bf90fee5
commit 64f60eead9
4 changed files with 19 additions and 8 deletions

View file

@ -20,6 +20,7 @@ export const useRegistryNewDataStore = defineStore("registryNew", () => {
{ id: "perm", name: "ลูกจ้างประจำ" },
// { id: "temp", name: "ลูกจ้างชั่วคราว" },
]);
const citizenId = ref<string>('')
const posTypeOps = ref<DataOption[]>([]);
const posTypeMain = ref<DataType[]>([]);
const posLevelOps = ref<DataOption[]>([]);
@ -147,5 +148,6 @@ export const useRegistryNewDataStore = defineStore("registryNew", () => {
convertTypeRetired,
retireTypeOps,
retireTypeEmpOps,
citizenId
};
});