This commit is contained in:
2023-09-13 18:29:35 +08:00
commit 4ac8391a9a
126 changed files with 15555 additions and 0 deletions

25
src/api/withdraw.js Normal file
View File

@@ -0,0 +1,25 @@
import request from "@/utils/request.js";
/**
* 提现申请查询
* @returns
*/
export function getOutFlow(params) {
return request({
method: "get",
url: "/user/getOutFlow",
params
});
}
/**
* 提现审核
* @returns
*/
export function modifyOutFlow(params) {
return request({
method: "get",
url: "/user/modifyOutFlow",
params
});
}