feat: 注意事项
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 6m43s

This commit is contained in:
luo
2026-07-25 14:37:27 +08:00
parent dd6bceeeb7
commit cc6fc9243e
5 changed files with 13 additions and 49 deletions

View File

@@ -473,7 +473,7 @@ export interface AssetWalletResponse {
resource_type?: string // 资源类型iot_card 或 device
balance?: number // 总余额(分)
frozen_balance?: number // 冻结余额(分)
available_balance?: number // 可用余额 = balance - frozen_balance
available_balance?: number // 后端返回的可用余额(分),前端不得自行计算
currency?: string // 币种,目前固定 CNY
status?: number // 钱包状态1-正常 2-冻结 3-关闭
status_text?: string // 状态文本
@@ -607,6 +607,5 @@ export interface AssetOperationLogsResponse {
export interface AssetOperationLogsParams {
page?: number // 页码默认1
page_size?: number // 每页条数默认20最大100
operation_type?: string // 操作类型
result_status?: 'success' | 'failed' | 'denied' // 执行结果
}