โครงสร้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-21 12:48:12 +07:00
parent 112f650623
commit 0f706b8e75
11 changed files with 123 additions and 13 deletions

View file

@ -15,6 +15,7 @@ export const useOrganizational = defineStore("organizationalStore", () => {
const rootId = ref<string>("");
const isOfficer = ref<boolean | null>(null);
const isStaff = ref<boolean | null>(null);
const remark = ref<string>("");
const dataActive = ref<DataActive>(); //ข้อมูลโครงสร้าง
const activeId = ref<string>(); // id โครงสร้างปัจจุบัน
@ -169,5 +170,6 @@ export const useOrganizational = defineStore("organizationalStore", () => {
isStaff,
rootId,
isLosck,
remark,
};
});