新增开放平台

This commit is contained in:
gyq
2024-02-20 09:56:17 +08:00
parent b32c47c176
commit 64c0ec97c9
20 changed files with 782 additions and 313 deletions

View File

@@ -99,4 +99,36 @@ export function unread(params) {
});
}
/**
* 获取总流水
* @returns
*/
export function querySumAmount() {
return request({
method: "post",
url: "/open/querySumAmount"
});
}
/**
* 获取七日数据
* @returns
*/
export function queryRecentlyData() {
return request({
method: "post",
url: "/open/queryRecentlyData"
});
}
/**
* 获取近一年流水
* @returns
*/
export function queryRecentYears() {
return request({
method: "post",
url: "/open/queryRecentYears"
});
}