From 52769ee87584229ad0d7236fc4df7910df5169f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=92=E6=B2=93=E5=A6=82=E6=B5=81=E6=98=9F?= <13523376917@163.com> Date: Fri, 25 Jul 2025 03:32:18 +0000 Subject: [PATCH 1/3] update src/views/system/menu/index.vue. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 飒沓如流星 <13523376917@163.com> --- src/views/system/menu/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue index a72da7ed7..af3e0ad6a 100644 --- a/src/views/system/menu/index.vue +++ b/src/views/system/menu/index.vue @@ -94,7 +94,7 @@ import { MenuVO } from '@/api/system/menu' import MenuForm from './MenuForm.vue' import DictTag from '@/components/DictTag/src/DictTag.vue' import { Icon } from '@/components/Icon' -import { ElButton, TableV2FixedDir } from 'element-plus' +import { ElButton, TableV2FixedDir, ElSwitch } from 'element-plus' import { checkPermi } from '@/utils/permission' import { CommonStatusEnum } from '@/utils/constants' import { CACHE_KEY, useCache } from '@/hooks/web/useCache' @@ -175,7 +175,7 @@ const columns = [ fixed: TableV2FixedDir.RIGHT, cellRenderer: ({ rowData }) => { // 定义按钮列表 - const buttons = [] + const buttons: InstanceType[] = [] // 检查权限并添加按钮 if (checkPermi(['system:menu:update'])) { -- Gitee From 132a4b5e30a73159c0795c1e6d5d9cd2c8498065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=92=E6=B2=93=E5=A6=82=E6=B5=81=E6=98=9F?= <13523376917@163.com> Date: Fri, 25 Jul 2025 03:35:48 +0000 Subject: [PATCH 2/3] =?UTF-8?q?update=20src/components/Echart/src/Echart.v?= =?UTF-8?q?ue.=20=E5=8F=AF=E8=83=BD=E4=BC=9A=E5=87=BA=E7=8E=B0=E5=BC=82?= =?UTF-8?q?=E6=AD=A5=E5=8A=A0=E8=BD=BD=E6=95=B0=E6=8D=AE=E5=9B=BE=E8=A1=A8?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 飒沓如流星 <13523376917@163.com> --- src/components/Echart/src/Echart.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Echart/src/Echart.vue b/src/components/Echart/src/Echart.vue index bf22b864e..487f20a8d 100644 --- a/src/components/Echart/src/Echart.vue +++ b/src/components/Echart/src/Echart.vue @@ -72,6 +72,7 @@ watch( (options) => { if (echartRef) { echartRef?.setOption(options) + echartRef?.resize() } }, { -- Gitee From c05d584045e31014728859930f2b73b6848c53ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=92=E6=B2=93=E5=A6=82=E6=B5=81=E6=98=9F?= <13523376917@163.com> Date: Fri, 25 Jul 2025 03:38:09 +0000 Subject: [PATCH 3/3] =?UTF-8?q?update=20src/components/AppLinkInput/AppLin?= =?UTF-8?q?kSelectDialog.vue.=20=E4=BF=AE=E5=A4=8DVscode=20TS=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 飒沓如流星 <13523376917@163.com> --- src/components/AppLinkInput/AppLinkSelectDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppLinkInput/AppLinkSelectDialog.vue b/src/components/AppLinkInput/AppLinkSelectDialog.vue index 63f19662e..cdd0b66e9 100644 --- a/src/components/AppLinkInput/AppLinkSelectDialog.vue +++ b/src/components/AppLinkInput/AppLinkSelectDialog.vue @@ -170,7 +170,7 @@ const groupBtnRefs = ref([]) const scrollToGroupBtn = (group: string) => { const groupBtn = groupBtnRefs.value .map((btn: ButtonInstance) => btn['ref']) - .find((ref: Node) => ref.textContent === group) + .find((ref: HTMLButtonElement) => ref.textContent === group) if (groupBtn) { groupScrollbar.value?.setScrollTop(groupBtn.offsetTop) } -- Gitee