pop up จัดลำดับตำแหน่ง

This commit is contained in:
setthawutttty 2024-02-01 13:45:08 +07:00
parent dd9239ac25
commit 41a40a8fc4
5 changed files with 168 additions and 2 deletions

View file

@ -11,6 +11,8 @@ export const useOrganizational = defineStore("organizationalStore", () => {
const dataActive = ref<DataActive>();
const activeId = ref<string>();
const draftId = ref<string>();
const treeId = ref<string>();
const level = ref<number>();
function fetchDataActive(data: DataActive) {
activeId.value = data.activeId;
draftId.value = data.draftId;
@ -57,5 +59,7 @@ export const useOrganizational = defineStore("organizationalStore", () => {
convertType,
draftId,
activeId,
treeId,
level
};
});