feat: 后台表格优化——行点击禁用/标题省略/行高统一/筛选控件紧凑

- 8 个资源表格 recordUrl(null)+recordAction(null):行不再可点击,查看/编辑仅通过操作列按钮;标题列不再自动变链接
- 标题列单行省略(含分类描述),长标题不换行,所有数据行统一 53px 与表头等高
- 筛选下拉控件紧凑(min-height 1.75rem、字号 0.8rem),与应用按钮协调
- 重置链接紧跟应用筛选按钮(不再推到最右)
- 操作列固定宽度 88px
- 实测:表头=数据行=53px、行点击关闭、重置紧跟应用
This commit is contained in:
ak
2026-08-12 19:11:13 +08:00
parent 1d0fe3f8b6
commit c12eb38cca
9 changed files with 30 additions and 4 deletions
@@ -73,7 +73,9 @@ class CommentsTable
->color('success')
->visible(fn (Comment $record) => $record->status !== 'published')
->action(function (Comment $record): void {
$record->update(['status' => 'published']);
$record->update(['status' => 'published'])
->recordUrl(null)
->recordAction(null);
$record->post?->increment('comment_count');
}),
Action::make('spam')