From 6dbbfef357e07ecd1b1ddf47cd5e92ada843aeb0 Mon Sep 17 00:00:00 2001 From: JUNGEUNJUNG Date: Tue, 8 Oct 2024 11:04:39 +0900 Subject: [PATCH 1/2] softwarecatalog add vm install modal --- .../softwareCatalog/SoftwareCatalogList.vue | 18 ++- .../applicationInstallationForm.vue | 151 ++++++++++++++++++ .../components/softwareCatalogForm.vue | 1 - .../components/softwareCatalogLog.vue | 2 +- 4 files changed, 167 insertions(+), 5 deletions(-) create mode 100644 applicationFE/src/views/softwareCatalog/components/applicationInstallationForm.vue diff --git a/applicationFE/src/views/softwareCatalog/SoftwareCatalogList.vue b/applicationFE/src/views/softwareCatalog/SoftwareCatalogList.vue index 9f760e3..b908609 100644 --- a/applicationFE/src/views/softwareCatalog/SoftwareCatalogList.vue +++ b/applicationFE/src/views/softwareCatalog/SoftwareCatalogList.vue @@ -60,7 +60,7 @@

+
diff --git a/applicationFE/src/views/softwareCatalog/components/applicationInstallationForm.vue b/applicationFE/src/views/softwareCatalog/components/applicationInstallationForm.vue new file mode 100644 index 0000000..31f564c --- /dev/null +++ b/applicationFE/src/views/softwareCatalog/components/applicationInstallationForm.vue @@ -0,0 +1,151 @@ + + + + \ No newline at end of file diff --git a/applicationFE/src/views/softwareCatalog/components/softwareCatalogForm.vue b/applicationFE/src/views/softwareCatalog/components/softwareCatalogForm.vue index ac10007..858e644 100644 --- a/applicationFE/src/views/softwareCatalog/components/softwareCatalogForm.vue +++ b/applicationFE/src/views/softwareCatalog/components/softwareCatalogForm.vue @@ -98,7 +98,6 @@ import type { Repository } from '../../type/type'; import { ref } from 'vue'; import { useToast } from 'vue-toastification'; -import { createCatalog } from '@/api/softwareCatalog'; import { onMounted, watch, computed } from 'vue'; import axios from 'axios' diff --git a/applicationFE/src/views/softwareCatalog/components/softwareCatalogLog.vue b/applicationFE/src/views/softwareCatalog/components/softwareCatalogLog.vue index 2d12fb7..2567ef8 100644 --- a/applicationFE/src/views/softwareCatalog/components/softwareCatalogLog.vue +++ b/applicationFE/src/views/softwareCatalog/components/softwareCatalogLog.vue @@ -30,7 +30,7 @@ From 5773a82028b354deeb4320455c71459e1fcec72b Mon Sep 17 00:00:00 2001 From: JUNGEUNJUNG Date: Tue, 8 Oct 2024 17:01:12 +0900 Subject: [PATCH 2/2] Typo fixed --- applicationFE/src/router/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applicationFE/src/router/index.ts b/applicationFE/src/router/index.ts index c2587cd..9a45b43 100644 --- a/applicationFE/src/router/index.ts +++ b/applicationFE/src/router/index.ts @@ -29,7 +29,7 @@ const router = createRouter({ component: () => import('@/views/repository/RepositoryDetail.vue' as any) }, { - path: `/web/sofrwareCatalog/list`, + path: `/web/softwareCatalog/list`, name: 'softwareCatalogList', component: () => import('@/views/softwareCatalog/SoftwareCatalogList.vue' as any) },