🐛 fix: Remove GroupTable and related components, simplify SubscribeTable and update language handling in subscription forms

This commit is contained in:
web
2025-09-03 15:46:36 -07:00
parent 4563c570ac
commit 1ab9b39e8a
14 changed files with 135 additions and 552 deletions
+9 -1
View File
@@ -642,6 +642,14 @@ declare namespace API {
total: number;
};
type QuerySubscribeListParams = {
language: string;
};
type QuerySubscribeListRequest = {
language: string;
};
type QuerySubscribeListResponse = {
list: Subscribe[];
total: number;
@@ -821,6 +829,7 @@ declare namespace API {
type Subscribe = {
id: number;
name: string;
language: string;
description: string;
unit_price: number;
unit_time: string;
@@ -831,7 +840,6 @@ declare namespace API {
speed_limit: number;
device_limit: number;
quota: number;
group_id: number;
nodes: number[];
node_tags: string[];
show: boolean;