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:
@@ -329,6 +329,11 @@ export default function UserSubscription({ userId }: { userId: number }) {
|
||||
: t("permanent", "Permanent");
|
||||
},
|
||||
},
|
||||
{
|
||||
accessorKey: "node_group_name",
|
||||
header: t("nodeGroup", "Node Group"),
|
||||
cell: ({ row }) => row.original.node_group_name || "-",
|
||||
},
|
||||
{
|
||||
accessorKey: "created_at",
|
||||
header: t("createdAt", "Created At"),
|
||||
|
||||
Reference in New Issue
Block a user