fix: 代理系列授权店铺
Some checks failed
构建并部署前端到测试环境 / build-and-deploy (push) Failing after 2m0s

This commit is contained in:
sexygoat
2026-05-09 16:13:11 +08:00
parent 3c71ae0004
commit 73ce9af11a
26 changed files with 833 additions and 807 deletions

View File

@@ -324,9 +324,11 @@ export interface AssetWalletTransactionItem {
* 对应接口GET /api/admin/assets/:asset_type/:id/wallet/transactions
*/
export interface AssetWalletTransactionListResponse {
list?: AssetWalletTransactionItem[] | null // 流水列表
items?: AssetWalletTransactionItem[] | null // 流水列表(当前接口结构)
list?: AssetWalletTransactionItem[] | null // 流水列表(兼容旧结构)
page?: number // 当前页码
page_size?: number // 每页数量
size?: number // 每页数量(当前接口结构)
page_size?: number // 每页数量(兼容旧结构)
total?: number // 总记录数
total_pages?: number // 总页数
}