From 4446be7f0d835249c8296292c7f4e4326cd7cb85 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Mon, 29 Jan 2024 12:03:20 +0700 Subject: [PATCH 1/2] =?UTF-8?q?popup=20=E0=B9=81=E0=B8=AA=E0=B8=94?= =?UTF-8?q?=E0=B8=87=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=A5=E0=B8=B0=E0=B9=80?= =?UTF-8?q?=E0=B8=AD=E0=B8=B5=E0=B8=A2=E0=B8=94=E0=B9=82=E0=B8=84=E0=B8=A3?= =?UTF-8?q?=E0=B8=87=E0=B8=AA=E0=B8=A3=E0=B9=89=E0=B8=B2=E0=B8=87=E0=B9=81?= =?UTF-8?q?=E0=B8=A5=E0=B8=B0=E0=B8=95=E0=B8=B3=E0=B9=81=E0=B8=AB=E0=B8=99?= =?UTF-8?q?=E0=B9=88=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/DialogHistory.vue | 8 +- .../components/PositionDetail.vue | 152 ++++++++++++++++++ .../components/StructureDetail.vue | 131 +++++++++++++++ .../02_organizationalNew/views/main.vue | 16 +- 4 files changed, 302 insertions(+), 5 deletions(-) create mode 100644 src/modules/02_organizationalNew/components/PositionDetail.vue create mode 100644 src/modules/02_organizationalNew/components/StructureDetail.vue diff --git a/src/modules/02_organizationalNew/components/DialogHistory.vue b/src/modules/02_organizationalNew/components/DialogHistory.vue index 22482272f..51e7e8f12 100644 --- a/src/modules/02_organizationalNew/components/DialogHistory.vue +++ b/src/modules/02_organizationalNew/components/DialogHistory.vue @@ -165,15 +165,15 @@ watch(
diff --git a/src/modules/02_organizationalNew/components/PositionDetail.vue b/src/modules/02_organizationalNew/components/PositionDetail.vue new file mode 100644 index 000000000..516c36cd0 --- /dev/null +++ b/src/modules/02_organizationalNew/components/PositionDetail.vue @@ -0,0 +1,152 @@ + + diff --git a/src/modules/02_organizationalNew/components/StructureDetail.vue b/src/modules/02_organizationalNew/components/StructureDetail.vue new file mode 100644 index 000000000..9b5023792 --- /dev/null +++ b/src/modules/02_organizationalNew/components/StructureDetail.vue @@ -0,0 +1,131 @@ + + diff --git a/src/modules/02_organizationalNew/views/main.vue b/src/modules/02_organizationalNew/views/main.vue index 99740223a..9efce0243 100644 --- a/src/modules/02_organizationalNew/views/main.vue +++ b/src/modules/02_organizationalNew/views/main.vue @@ -13,7 +13,8 @@ import StructureView from "@/modules/02_organizationalNew/components/structureVi import DialogFormNewStructure from "@/modules/02_organizationalNew/components/DialogNewStructure.vue"; import DialogDateTime from "@/modules/02_organizationalNew/components/DialogFormDateTime.vue"; import DialogHistory from "@/modules/02_organizationalNew/components/DialogHistory.vue"; - +import DialogStructureDetail from "@/modules/02_organizationalNew/components/StructureDetail.vue"; +import DialogPositionDetail from "@/modules/02_organizationalNew/components/PositionDetail.vue"; /** importStore*/ import { useOrganizational } from "@/modules/02_organizationalNew/store/organizational"; import { useCounterMixin } from "@/stores/mixin"; @@ -22,6 +23,9 @@ const $q = useQuasar(); const { showLoader, hideLoader, messageError } = useCounterMixin(); const modalNewStructure = ref(false); +const modalStructureDetail = ref(false); +const modalPositionDetail = ref(true); + const stroe = useOrganizational(); const isStatusData = ref(false); @@ -237,6 +241,16 @@ onMounted(async () => { + + + + + + From 98f6c71ad3c972cd6871e4ebe305af7403344deb Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Mon, 29 Jan 2024 12:04:55 +0700 Subject: [PATCH 2/2] no message --- src/modules/02_organizationalNew/views/main.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/02_organizationalNew/views/main.vue b/src/modules/02_organizationalNew/views/main.vue index 0e4525231..47e2cb2d4 100644 --- a/src/modules/02_organizationalNew/views/main.vue +++ b/src/modules/02_organizationalNew/views/main.vue @@ -23,7 +23,7 @@ const { showLoader, hideLoader, messageError } = useCounterMixin(); const modalNewStructure = ref(false); const modalStructureDetail = ref(false); -const modalPositionDetail = ref(true); +const modalPositionDetail = ref(false); const stroe = useOrganizational();