From ed9260d5a667676efe3199bea0f6981ab4a790ef Mon Sep 17 00:00:00 2001 From: lizhuoran <625237490@qq.com> Date: Thu, 12 Mar 2026 15:08:23 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8C=BA=E5=88=86=E5=AF=BC?= =?UTF-8?q?=E8=88=AA=E6=A0=8F=E4=B8=AD=E7=9A=84=E7=B3=BB=E7=BB=9F=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 SystemSettingResource 导航标签改为'配置项管理' - 将 ManageSystemSettings 导航标签改为'系统配置' - 明确区分配置项管理和系统配置功能 --- app/Filament/Pages/ManageSystemSettings.php | 4 ++-- app/Filament/Resources/SystemSettingResource.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Filament/Pages/ManageSystemSettings.php b/app/Filament/Pages/ManageSystemSettings.php index 8ff28cb..7c2e4c4 100644 --- a/app/Filament/Pages/ManageSystemSettings.php +++ b/app/Filament/Pages/ManageSystemSettings.php @@ -14,9 +14,9 @@ class ManageSystemSettings extends Page protected static string $view = 'filament.pages.manage-system-settings'; - protected static ?string $navigationLabel = '系统设置'; + protected static ?string $navigationLabel = '系统配置'; - protected static ?string $title = '系统设置'; + protected static ?string $title = '系统配置'; protected static ?int $navigationSort = 1; diff --git a/app/Filament/Resources/SystemSettingResource.php b/app/Filament/Resources/SystemSettingResource.php index 0ebcc68..12d7a9c 100644 --- a/app/Filament/Resources/SystemSettingResource.php +++ b/app/Filament/Resources/SystemSettingResource.php @@ -16,11 +16,11 @@ class SystemSettingResource extends Resource protected static ?string $navigationIcon = 'heroicon-o-cog-6-tooth'; - protected static ?string $navigationLabel = '系统设置'; + protected static ?string $navigationLabel = '配置项管理'; - protected static ?string $modelLabel = '系统设置'; + protected static ?string $modelLabel = '系统配置项'; - protected static ?string $pluralModelLabel = '系统设置'; + protected static ?string $pluralModelLabel = '系统配置项'; protected static ?int $navigationSort = 1;