diff --git a/bigtop-manager-ui/src/components/ai-assistant/empty-content.vue b/bigtop-manager-ui/src/components/ai-assistant/empty-content.vue
index bb63bd663..a2240d1df 100644
--- a/bigtop-manager-ui/src/components/ai-assistant/empty-content.vue
+++ b/bigtop-manager-ui/src/components/ai-assistant/empty-content.vue
@@ -34,8 +34,8 @@
})
const aiChatStore = useAiChatStore()
const { hasActivePlatform, threads, chatRecords } = storeToRefs(aiChatStore)
- const emptyState = usePngImage('ai_helper')
- const disabledState = usePngImage('ai_disabled')
+ const emptyState = usePngImage('ai-helper')
+ const disabledState = usePngImage('ai-disabled')
const goSetUpLlmConfig = () => {
emits('goSetUp')
diff --git a/bigtop-manager-ui/src/components/ai-assistant/index.vue b/bigtop-manager-ui/src/components/ai-assistant/index.vue
index 7b0e04963..aa3bc184b 100644
--- a/bigtop-manager-ui/src/components/ai-assistant/index.vue
+++ b/bigtop-manager-ui/src/components/ai-assistant/index.vue
@@ -66,7 +66,7 @@
? filterActions(['EXITSCREEN', 'CLOSE'])
: filterActions(['ADD', 'RECORDS', 'FULLSCREEN', 'CLOSE'])
})
- const addIcon = computed(() => (threads.value.length >= 10 ? 'plus_gray' : 'plus'))
+ const addIcon = computed(() => (threads.value.length >= 10 ? 'plus-gray' : 'plus'))
const addState = computed(() => threads.value.length >= 10 || loadingChatRecords.value || !hasActivePlatform.value)
const actionGroup = computed((): GroupItem
[] => [
{
@@ -84,13 +84,13 @@
},
{
tip: 'full_screen',
- icon: 'full_screen',
+ icon: 'full-screen',
action: 'FULLSCREEN',
clickEvent: toggleFullScreen
},
{
tip: 'exit_screen',
- icon: 'exit_screen',
+ icon: 'exit-screen',
action: 'EXITSCREEN',
clickEvent: toggleFullScreen
},
diff --git a/bigtop-manager-ui/src/components/common/svg-icon/index.vue b/bigtop-manager-ui/src/components/common/svg-icon/index.vue
index db973d4ad..62b7cba84 100644
--- a/bigtop-manager-ui/src/components/common/svg-icon/index.vue
+++ b/bigtop-manager-ui/src/components/common/svg-icon/index.vue
@@ -20,33 +20,64 @@
-
+
+
+
-
-
diff --git a/bigtop-manager-ui/src/components/create-service/components/service-configurator.vue b/bigtop-manager-ui/src/components/create-service/components/service-configurator.vue
index 150a876c4..1d83e6976 100644
--- a/bigtop-manager-ui/src/components/create-service/components/service-configurator.vue
+++ b/bigtop-manager-ui/src/components/create-service/components/service-configurator.vue
@@ -185,7 +185,7 @@
@click.stop="manualAddPropertyForConfig(config)"
>
-
+
diff --git a/bigtop-manager-ui/src/components/service-management/components.vue b/bigtop-manager-ui/src/components/service-management/components.vue
index 9fb8539ff..a11f4bfcd 100644
--- a/bigtop-manager-ui/src/components/service-management/components.vue
+++ b/bigtop-manager-ui/src/components/service-management/components.vue
@@ -362,8 +362,8 @@