no message

This commit is contained in:
2025-12-11 13:48:48 +08:00
parent f11a12a416
commit 6c92138283
17 changed files with 1446 additions and 785 deletions
+21 -1
View File
@@ -223,5 +223,25 @@ export function getBonusStat() {
});
}
// 分红统计
export function getVcoinLocked() {
return request({
url: "/finance/getVcoinLocked",
method: "get",
});
}
// 分红统计
export function getVcoinReleaseLog(data) {
return request({
url: "/finance/getVcoinReleaseLog",
method: "get",
data,
});
}
export function getProfitSharingData() {
return request({
url: "/finance/getProfitSharingData",
method: "get",
});
}