购买套餐页面更改字段和添加小字提示 & 添加余额管理页面

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Eamon-meng
2026-04-25 17:53:26 +08:00
parent 6adcd33943
commit 6a9e7289b5
10 changed files with 309 additions and 26 deletions

View File

@@ -39,6 +39,17 @@ export type Bill = {
refund: Refund
resource: Resource
}
export type Balance = {
id: number
resource_id: number
bill_no: string
amount: number
created_at: Date
trade: Trade
balance_prev: number
balance_curr: number
bill: Bill
}
export type Trade = {
id: number