diff --git a/README.md b/README.md index a0960d6..758f0bf 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ - word新增ai优化/续写/纠错/翻译/总结,生成大纲,根据大纲一键创建文章 - markdown更换为更实用的cherry-markdown,支持draw.io绘图,支持导出为思维导图/pdf/长图/md/html格式 - 修复截图/截屏路径 +- 修复更换存储将路径后系统不重置的问题 - 新增文件密码箱(系统设置里),可根据不同文件进行加密存储 ## 🏭 第三阶段目标(十二月底发布) diff --git a/frontend/components.d.ts b/frontend/components.d.ts index 9b49402..fe6480e 100644 --- a/frontend/components.d.ts +++ b/frontend/components.d.ts @@ -28,7 +28,6 @@ declare module 'vue' { ChatBox: typeof import('./src/components/chat/ChatBox.vue')['default'] ChatContent: typeof import('./src/components/localchat/ChatContent.vue')['default'] ChatDomain: typeof import('./src/components/localchat/ChatDomain.vue')['default'] - ChatEditInfo: typeof import('./src/components/localchat/ChatEditInfo.vue')['default'] ChatEditor: typeof import('./src/components/localchat/ChatEditor.vue')['default'] ChatFoot: typeof import('./src/components/localchat/ChatFoot.vue')['default'] ChatGroupMember: typeof import('./src/components/chat/chatGroupMember.vue')['default'] @@ -126,12 +125,10 @@ declare module 'vue' { LocalChat: typeof import('./src/components/localchat/LocalChat.vue')['default'] LockDesktop: typeof import('./src/components/desktop/LockDesktop.vue')['default'] Magnet: typeof import('./src/components/taskbar/Magnet.vue')['default'] - MarkDown: typeof import('./src/components/builtin/MarkDown.vue')['default'] MenuBar: typeof import('./src/components/window/MenuBar.vue')['default'] MenuList: typeof import('./src/components/taskbar/MenuList.vue')['default'] MessageCenterPop: typeof import('./src/components/taskbar/MessageCenterPop.vue')['default'] MessageIcon: typeof import('./src/components/taskbar/MessageIcon.vue')['default'] - Model: typeof import('./src/components/ai/model.vue')['default'] MusicStore: typeof import('./src/components/builtin/MusicStore.vue')['default'] MusicViewer: typeof import('./src/components/builtin/MusicViewer.vue')['default'] NetWork: typeof import('./src/components/taskbar/NetWork.vue')['default'] @@ -186,7 +183,4 @@ declare module 'vue' { WinSelect: typeof import('./src/components/ui/WinSelect.vue')['default'] WinUpButtonGroup: typeof import('./src/components/ui/WinUpButtonGroup.vue')['default'] } - export interface ComponentCustomProperties { - vLoading: typeof import('element-plus/es')['ElLoadingDirective'] - } } diff --git a/frontend/src/components/ai/DownLabeleditor.vue b/frontend/src/components/ai/DownLabeleditor.vue index 5da7a07..6d39b74 100644 --- a/frontend/src/components/ai/DownLabeleditor.vue +++ b/frontend/src/components/ai/DownLabeleditor.vue @@ -2,7 +2,7 @@ import { db } from "@/stores/db" import { useModelStore } from "@/stores/model"; import { notifyError } from "@/util/msg"; -import { getSystemKey } from "@/system/config"; +// import { getSystemKey } from "@/system/config"; import { t } from "@/i18n/index"; import { watchEffect, ref, toRaw } from "vue"; const modelStore = useModelStore(); diff --git a/frontend/src/components/computer/QuickLink.vue b/frontend/src/components/computer/QuickLink.vue index 9be9352..fe55a9e 100644 --- a/frontend/src/components/computer/QuickLink.vue +++ b/frontend/src/components/computer/QuickLink.vue @@ -39,7 +39,7 @@ const quickLinks = [ { img: "excel", name: t("excel"), - path: "/C/Users/Documents/Execl", + path: "/C/Users/Documents/Excel", }, { img: "pptexe", diff --git a/frontend/src/components/localchat/AiChatInfo.vue b/frontend/src/components/localchat/AiChatInfo.vue index 1e49d76..ad37c82 100644 --- a/frontend/src/components/localchat/AiChatInfo.vue +++ b/frontend/src/components/localchat/AiChatInfo.vue @@ -1,9 +1,9 @@