选择套餐配置链接&更新账户总览数据展示

This commit is contained in:
Eamon-meng
2025-06-30 16:08:08 +08:00
parent 54725d446b
commit b096e20fcd
7 changed files with 65 additions and 84 deletions

View File

@@ -6,12 +6,12 @@ import {listAnnouncements} from './announcement'
type listAccountReq = {
resource_no?: string
create_after: Date
create_before: Date
create_after?: Date
create_before?: Date
}
type listAccountResp = {
time: Date
date: string
count: number
}[]
@@ -81,11 +81,3 @@ export async function listInitialization(): Promise<ApiResponse<listInitializati
data: data,
}
}
export type ChartDataItem = {
time: Date
count: number
count2: number
}
export type ChartData = ChartDataItem[]