feat: 用户订阅列表显示节点分组名,限速详情显示起止时间
- UserSubscribe 类型新增 node_group_id/node_group_name 字段 - UserSubscribeDetail 类型新增 throttle_start/throttle_end/node_group_id/node_group_name 字段 - 订阅列表表格新增「节点分组」列 - 限速卡片新增限速窗口起止时间显示 Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
@@ -86,6 +86,12 @@ function SpeedLimitCard({ subscriptionId }: { subscriptionId: number }) {
|
||||
{detail.throttle_rule}
|
||||
</p>
|
||||
)}
|
||||
{isThrottled && detail.throttle_start && detail.throttle_end && (
|
||||
<p className="text-muted-foreground text-xs">
|
||||
{formatDate(detail.throttle_start)} ~{" "}
|
||||
{formatDate(detail.throttle_end)}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user