From 2b4b15f558ac8f20b81649776cd330da4f34aba5 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Wed, 5 Mar 2025 19:24:47 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=B1:=20[client]=20sync=20upgrade=20wit?= =?UTF-8?q?h=206=20commits=20[trident-sync]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit chore: chore: help menu chore: help menu fix: 修复 antdv 弹出菜单边框过大的问题 fix: 修复 antdv懒加载后dropdown按钮无法点击的bug --- .../src/components/highlight/index.vue | 1 + .../certd-client/src/layout/layout-basic.vue | 20 ++--- .../src/plugin/antdv-async/index.ts | 25 ++++-- .../src/router/source/framework.ts | 3 +- .../src/router/source/modules/about.ts | 85 +++++++++++++++++++ .../src/router/source/modules/ui.ts | 2 +- .../src/vben/menu-ui/components/menu.vue | 3 + .../shadcn-ui/components/button/button.vue | 32 +++---- .../shadcn-ui/ui/popover/PopoverContent.vue | 23 +++-- .../src/views/crud/basis/reset/index.vue | 1 - .../views/framework/home/page-cover/helper.ts | 2 +- 11 files changed, 142 insertions(+), 55 deletions(-) create mode 100644 packages/ui/certd-client/src/router/source/modules/about.ts diff --git a/packages/ui/certd-client/src/components/highlight/index.vue b/packages/ui/certd-client/src/components/highlight/index.vue index ba826d25..6a9e406d 100644 --- a/packages/ui/certd-client/src/components/highlight/index.vue +++ b/packages/ui/certd-client/src/components/highlight/index.vue @@ -62,5 +62,6 @@ export default defineComponent({ .fs-highlight { margin: 0px; border-radius: 4px; + font-size: 12px; } diff --git a/packages/ui/certd-client/src/layout/layout-basic.vue b/packages/ui/certd-client/src/layout/layout-basic.vue index 82e70de0..a3aea2f4 100644 --- a/packages/ui/certd-client/src/layout/layout-basic.vue +++ b/packages/ui/certd-client/src/layout/layout-basic.vue @@ -15,15 +15,15 @@ const userStore = useUserStore(); const accessStore = useAccessStore(); const menus = computed(() => [ - { - handler: () => { - openWindow(VBEN_DOC_URL, { - target: "_blank" - }); - }, - icon: BookOpenText, - text: $t("ui.widgets.document") - } + // { + // handler: () => { + // openWindow(VBEN_DOC_URL, { + // target: "_blank" + // }); + // }, + // icon: BookOpenText, + // text: $t("ui.widgets.document") + // } ]); const avatar = computed(() => { @@ -38,7 +38,7 @@ async function handleLogout() {