From 5f5ae354d2ba6d94967f4f38de8677996935c3ff Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sat, 25 Jan 2025 18:03:41 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=8A=9F=E8=83=BD=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E3=80=91system=EF=BC=9A=E8=8F=9C=E5=8D=95=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=88=97=E8=A1=A8=EF=BC=8C=E8=99=9A=E6=8B=9F=20table=20?= =?UTF-8?q?=E7=9A=84=E5=91=8A=E8=AD=A6=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/menu/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue index 41658c63..3ca05a37 100644 --- a/src/views/system/menu/index.vue +++ b/src/views/system/menu/index.vue @@ -162,6 +162,7 @@ const columns: Column[] = [ cellRenderer: ({ rowData }) => { return h( 'div', + {}, [ hasPermission(['system:menu:update']) && h( @@ -171,7 +172,7 @@ const columns: Column[] = [ type: 'primary', onClick: () => openForm('update', rowData.id) }, - '修改' + () => '修改' ), hasPermission(['system:menu:create']) && h( @@ -181,7 +182,7 @@ const columns: Column[] = [ type: 'primary', onClick: () => openForm('create', undefined, rowData.id) }, - '新增' + () => '新增' ), hasPermission(['system:menu:delete']) && h( @@ -191,7 +192,7 @@ const columns: Column[] = [ type: 'danger', onClick: () => handleDelete(rowData.id) }, - '删除' + () => '删除' ) ].filter(Boolean) )