From da42f8cf11411a5bd6104d270686c83113beece5 Mon Sep 17 00:00:00 2001 From: ken Date: Fri, 27 Jun 2025 14:35:10 +0200 Subject: [PATCH] feat: add dashboard grid for other components --- .../src/components/Dashboard.vue | 48 +++++++++++++++++++ .../src/components/OverlayPopup.vue | 3 -- .../src/components/SystemMessagesPage.vue | 2 +- .../src/components/SystemMesssages.vue | 8 ++-- .../src/components/TestPage.vue | 21 -------- .../src/router/index.js | 4 +- 6 files changed, 54 insertions(+), 32 deletions(-) create mode 100644 gca-admin-gurusoft-message-dashboard/src/components/Dashboard.vue delete mode 100644 gca-admin-gurusoft-message-dashboard/src/components/TestPage.vue diff --git a/gca-admin-gurusoft-message-dashboard/src/components/Dashboard.vue b/gca-admin-gurusoft-message-dashboard/src/components/Dashboard.vue new file mode 100644 index 0000000..7bf7aa9 --- /dev/null +++ b/gca-admin-gurusoft-message-dashboard/src/components/Dashboard.vue @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/gca-admin-gurusoft-message-dashboard/src/components/OverlayPopup.vue b/gca-admin-gurusoft-message-dashboard/src/components/OverlayPopup.vue index b67ed79..69ba1d0 100644 --- a/gca-admin-gurusoft-message-dashboard/src/components/OverlayPopup.vue +++ b/gca-admin-gurusoft-message-dashboard/src/components/OverlayPopup.vue @@ -33,15 +33,12 @@ import {ref, onMounted} from 'vue'; import {initializeApi} from '@/utils/api'; -const overlayPopup = ref(null) const overlayInfo = ref({}) const api = initializeApi(); onMounted(async () => { overlayInfo.value = await api.getOverlayPopup(); - const modalInstance = new bootstrap.Modal(overlayPopup.value) - modalInstance.show() }); \ No newline at end of file diff --git a/gca-admin-gurusoft-message-dashboard/src/components/SystemMessagesPage.vue b/gca-admin-gurusoft-message-dashboard/src/components/SystemMessagesPage.vue index 0e211a8..0cb66e7 100644 --- a/gca-admin-gurusoft-message-dashboard/src/components/SystemMessagesPage.vue +++ b/gca-admin-gurusoft-message-dashboard/src/components/SystemMessagesPage.vue @@ -1,7 +1,7 @@