From 0ddd745e0951211dadf7a5aea52a2bc834cd35ce Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Thu, 24 Oct 2024 14:34:51 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BC=98=E5=8C=96=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../component/XPackDisplaySettingDialog.vue | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue b/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue index 933fc7c21..ba1830d2c 100644 --- a/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue +++ b/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue @@ -113,6 +113,13 @@
+
+ {{ xpackForm.disclaimer_value }} +
@@ -304,8 +311,8 @@ const defaultSetting = { header_font_color: '#1f2329' }, float_location: { - x: { type: '', value: 0 }, - y: { type: '', value: 0 } + y: { type: 'bottom', value: 30 }, + x: { type: 'right', value: 0 } } } @@ -329,8 +336,8 @@ const xpackForm = ref({ header_font_color: '#1f2329' }, float_location: { - x: { type: 'bottom', value: 30 }, - y: { type: 'right', value: 0 } + y: { type: 'bottom', value: 30 }, + x: { type: 'right', value: 0 } } }) @@ -355,9 +362,13 @@ function resetForm() { form.value = { ...defaultSetting } + xpackForm.value = { + ...defaultSetting + } imgUrl.value = { avatar: '', - float_icon: '' + float_icon: '', + user_avatar: '' } }