2
0

fix:账单服务界面

This commit is contained in:
zhongzm
2024-12-24 18:36:22 +08:00
parent f3667813ae
commit 87fe7bd5df
6 changed files with 178 additions and 2 deletions

15
src/typings/api.d.ts vendored
View File

@@ -585,4 +585,19 @@ declare namespace Api {
pageSize: number;
}
}
namespace Package {
interface PackageItem {
id: string;
amount: number;
price: number;
description?: string;
}
interface PackageListResponse {
code: number;
msg: string;
data: PackageItem[];
total?: number;
}
}
}