From c7691992ecfcaab6eda0d9d5c174954405dcf5ed Mon Sep 17 00:00:00 2001 From: 25juan <1216181067@qq.com> Date: Sat, 10 Jan 2026 21:59:22 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=8F=92=E4=BB=B6=E5=B8=82=E5=9C=BA):=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=87=AA=E5=AE=9A=E4=B9=89=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增本地插件导入功能,支持通过本地文件或远程URL导入插件配置。添加了新的路由、页面组件及多语言支持,并扩展了插件存储逻辑以区分本地插件。同时更新了Ant Design组件注册以支持新功能所需的UI组件。 --- detach/package.json | 5 +- feature/package.json | 5 +- feature/src/App.vue | 8 + feature/src/languages/langs/en-US.ts | 23 ++ feature/src/languages/langs/zh-CN.ts | 22 ++ feature/src/main.ts | 6 + feature/src/router/index.ts | 6 + feature/src/store/index.ts | 21 +- feature/src/views/market/components/image.vue | 1 + .../views/market/components/local-plugin.vue | 196 ++++++++++++++++++ guide/package.json | 5 +- package.json | 3 + 12 files changed, 296 insertions(+), 5 deletions(-) create mode 100644 feature/src/views/market/components/local-plugin.vue diff --git a/detach/package.json b/detach/package.json index de70349..a724335 100644 --- a/detach/package.json +++ b/detach/package.json @@ -53,5 +53,8 @@ "> 1%", "last 2 versions", "not dead" - ] + ], + "volta": { + "node": "16.20.2" + } } diff --git a/feature/package.json b/feature/package.json index 56597ef..97a6ba2 100644 --- a/feature/package.json +++ b/feature/package.json @@ -67,5 +67,8 @@ "> 1%", "last 2 versions", "not dead" - ] + ], + "volta": { + "node": "16.20.2" + } } diff --git a/feature/src/App.vue b/feature/src/App.vue index 7919062..4a2ed21 100644 --- a/feature/src/App.vue +++ b/feature/src/App.vue @@ -42,6 +42,12 @@ {{ $t('feature.market.systemTool') }} + + + {{ $t('feature.market.localPlugin') }} +