2024.2.21

This commit is contained in:
魏啾
2024-02-21 18:42:17 +08:00
parent 786bceb7a4
commit 3db00932f7
21 changed files with 758 additions and 403 deletions

View File

@@ -4,11 +4,11 @@ import request from "@/utils/request.js";
* 提现申请查询
* @returns
*/
export function getOutFlow(params) {
export function getOutFlow(data) {
return request({
method: "get",
url: "/user/getOutFlow",
params
method: "post",
url: "/agent/withdrawerlist",
data
});
}
@@ -16,10 +16,10 @@ export function getOutFlow(params) {
* 提现审核
* @returns
*/
export function modifyOutFlow(params) {
export function modifyOutFlow(data) {
return request({
method: "get",
url: "/user/modifyOutFlow",
params
method: "post",
url: "/agent/withdrawalreview",
data
});
}