From 53ddad2253379652a50c687b95a8325d1b2c9727 Mon Sep 17 00:00:00 2001 From: sige Date: Wed, 24 Jul 2024 18:47:19 +0800 Subject: [PATCH] 1 --- src/App.vue | 2 +- src/components/ServiceConfiguration.vue | 59 +++++----- src/components/ServiceConfigurationActionLog.vue | 25 +++++ .../ServiceConfigurationParamValueEdit.vue | 54 +++++++++ .../ServiceConfigurationParamValueObjectEdit.vue | 121 +++++++++++++++++++++ 5 files changed, 234 insertions(+), 27 deletions(-) create mode 100644 src/components/ServiceConfigurationActionLog.vue create mode 100644 src/components/ServiceConfigurationParamValueEdit.vue create mode 100644 src/components/ServiceConfigurationParamValueObjectEdit.vue diff --git a/src/App.vue b/src/App.vue index 10a6d11..b55ac20 100644 --- a/src/App.vue +++ b/src/App.vue @@ -25,7 +25,7 @@ const menuItems = ref([]); /** @var {string} */ const activeServiceKey = ref(null); /** @var {Boolean} */ -const isGuest = ref(true); +const isGuest = ref(false); /** @var {String} */ const password = ref(''); // on mounted diff --git a/src/components/ServiceConfiguration.vue b/src/components/ServiceConfiguration.vue index b9a0098..3cca6de 100644 --- a/src/components/ServiceConfiguration.vue +++ b/src/components/ServiceConfiguration.vue @@ -8,12 +8,20 @@