|
- {item.title}
+ {item.title}
|
-
+
{item.slug || '-'}
|
@@ -198,27 +198,27 @@ export default function ContentListPage() {
? 'bg-green-50 text-green-700'
: item.status === 'draft'
? 'bg-yellow-50 text-yellow-700'
- : 'bg-gray-100 text-gray-600'
+ : 'bg-bg-hover text-text-tertiary'
}`}
>
{item.status === 'published' ? '已发布' : item.status === 'draft' ? '草稿' : '已归档'}
-
+ |
{item.updatedAt ? new Date(item.updatedAt).toLocaleDateString('zh-CN') : '-'}
|
|