diff --git a/ui/src/components/ai-chat/index.vue b/ui/src/components/ai-chat/index.vue index 993c783de..10e763d2d 100644 --- a/ui/src/components/ai-chat/index.vue +++ b/ui/src/components/ai-chat/index.vue @@ -695,7 +695,7 @@ onMounted(() => { // 2. 解析当前变换状态 const currentTransform = target.style.transform const transformValues = parseTransform(currentTransform) - let { scale, translateX, translateY } = transformValues + const { scale, translateX, translateY } = transformValues // 确保scale是数值类型 const currentScale = Array.isArray(scale) ? scale[0] : scale diff --git a/ui/src/components/infinite-scroll/index.vue b/ui/src/components/infinite-scroll/index.vue index 9d81abda7..32a85041f 100644 --- a/ui/src/components/infinite-scroll/index.vue +++ b/ui/src/components/infinite-scroll/index.vue @@ -2,13 +2,13 @@
-
- - {{ $t('components.loading') }}... - - - {{ $t('components.noMore') }} - +
+ + {{ $t('components.loading') }}... + + {{ $t('components.noMore') }}
- + diff --git a/ui/src/views/application/index.vue b/ui/src/views/application/index.vue index 7a80ddcac..6a7cb9b4a 100644 --- a/ui/src/views/application/index.vue +++ b/ui/src/views/application/index.vue @@ -662,12 +662,6 @@ function getFolder(bool?: boolean) { }) } -function clickFolder(item: any) { - folder.setCurrentFolder(item) - paginationConfig.current_page = 1 - applicationList.value = [] - getList() -} function folderClickHandle(row: any) { if (row.id === folder.currentFolder?.id) { diff --git a/ui/src/views/chat/component/HistoryPanel.vue b/ui/src/views/chat/component/HistoryPanel.vue index 517be7384..43fb783a0 100644 --- a/ui/src/views/chat/component/HistoryPanel.vue +++ b/ui/src/views/chat/component/HistoryPanel.vue @@ -52,54 +52,63 @@
-
- - - - -
-
+ + +
+ +
@@ -164,12 +173,15 @@