From 99019bc6896899bdac578eda33ec82d09be7ceac Mon Sep 17 00:00:00 2001 From: Leo <98382335+gaoziman@users.noreply.github.com> Date: Wed, 9 Jul 2025 01:44:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(user):=20=E4=BC=98=E5=8C=96=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=96=87=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将"重置"按钮文本修改为"重置密码",提升用户体验 - 将"角色"按钮文本修改为"分配角色",增强操作明确性 - 提升操作按钮的语义化程度和用户理解度 Improvement: 增强用户界面的可用性和直观性 --- src/views/system/user/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 005cbfb..6970710 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -1070,7 +1070,7 @@ const columns: DataTableColumns = [ icon: () => h(NIcon, { size: 14, style: 'transform: translateY(-1px)' }, { default: () => h(IconParkOutlineRefresh), }), - default: () => '重置', + default: () => '重置密码', })) } @@ -1084,7 +1084,7 @@ const columns: DataTableColumns = [ icon: () => h(NIcon, { size: 14, style: 'transform: translateY(-1px)' }, { default: () => h(IconParkOutlineUserPositioning), }), - default: () => '角色', + default: () => '分配角色', })) }