ปรับแสดงการเผยแพร่โครงสร้าง
This commit is contained in:
parent
039d4081d6
commit
76cd4e170b
4 changed files with 38 additions and 22 deletions
|
|
@ -18,12 +18,14 @@ export const useOrganizational = defineStore("organizationalStore", () => {
|
|||
const treeId = ref<string>();
|
||||
const level = ref<number>();
|
||||
const isPublic = ref<boolean>(false);
|
||||
const orgPublishDate = ref<Date>();
|
||||
const orgPublishDate = ref<Date | null>(null);
|
||||
|
||||
function fetchDataActive(data: DataActive) {
|
||||
activeId.value = data.activeId;
|
||||
draftId.value = data.draftId;
|
||||
dataActive.value = data;
|
||||
isPublic.value = data.isPublic;
|
||||
orgPublishDate.value = data.orgPublishDate;
|
||||
}
|
||||
|
||||
function fetchPosMaster(data: PosMaster[]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue