fix: 修复店铺用户列表未展示统计数据和跳转充值记录,增加充值记录页面

This commit is contained in:
2025-03-25 00:51:02 +08:00
parent f085516959
commit 87f000299c
6 changed files with 513 additions and 7 deletions

View File

@@ -55,6 +55,14 @@ const API = {
method: "get",
params
});
},
//获取店铺用户充值记录
flow(params: getRequest) {
return request({
url: `${baseURL}/flow`,
method: "get",
params
});
}
}
export default API;