refactor: 区分导航栏中的系统设置菜单

- 将 SystemSettingResource 导航标签改为'配置项管理'
- 将 ManageSystemSettings 导航标签改为'系统配置'
- 明确区分配置项管理和系统配置功能
This commit is contained in:
2026-03-12 15:08:23 +08:00
parent 32cf642f6f
commit ed9260d5a6
2 changed files with 5 additions and 5 deletions

View File

@@ -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;

View File

@@ -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;