From f2ed2415758745799074f7a937245a38561b7b5d Mon Sep 17 00:00:00 2001 From: "icksishu@gmail.com" Date: Fri, 5 Dec 2025 16:03:08 +0900 Subject: [PATCH] =?UTF-8?q?=EC=97=90=EC=9D=B4=EC=A0=84=ED=8A=B8=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=20=EB=AA=A8=EB=8B=AC=20=EC=A7=84=ED=96=89?= =?UTF-8?q?=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../front/src/components/AgentConfigView.vue | 219 ++++++++++++++++++ src/main/front/src/views/AgentManageView.vue | 14 +- 2 files changed, 229 insertions(+), 4 deletions(-) create mode 100644 src/main/front/src/components/AgentConfigView.vue diff --git a/src/main/front/src/components/AgentConfigView.vue b/src/main/front/src/components/AgentConfigView.vue new file mode 100644 index 0000000..eac9fda --- /dev/null +++ b/src/main/front/src/components/AgentConfigView.vue @@ -0,0 +1,219 @@ + + + + + diff --git a/src/main/front/src/views/AgentManageView.vue b/src/main/front/src/views/AgentManageView.vue index ae72712..3279908 100644 --- a/src/main/front/src/views/AgentManageView.vue +++ b/src/main/front/src/views/AgentManageView.vue @@ -2,6 +2,7 @@ import '@/assets/main.css' import { useApiClient } from '@/components/apiClient' import { onMounted, ref } from 'vue' +import AgentConfigView from '@/components/AgentConfigView.vue' const apiClient = useApiClient() @@ -11,10 +12,12 @@ async function getAgentInfoDtoList() { } let dfxAgentInfoDtoList = ref([]) +const agentConfigDto = ref({}) +const agentConfigViewModal = ref(null) -function setDfxAgentInfoDto(dfxAgentInfoDto) { - console.log(dfxAgentInfoDto) - alert(dfxAgentInfoDto) +function openAgentConfigView(dfxAgentInfoDto) { + agentConfigDto.value = JSON.parse(dfxAgentInfoDto.settingsData) + agentConfigViewModal.value.open() } onMounted(async () => { @@ -51,7 +54,7 @@ onMounted(async () => { {{ dfxAgentInfoDto.postmanCount }} {{ dfxAgentInfoDto.dropboxCount }} - + no datas. @@ -61,6 +64,9 @@ onMounted(async () => { + +