This commit is contained in:
2025-10-10 13:41:42 +08:00
parent a2faab2646
commit f1f65961dd
33 changed files with 4424 additions and 119 deletions
+46 -12
View File
@@ -52,18 +52,6 @@ export function uploadImage(params) {
export const uploadImg = "/common/upload/image";
/**
* 检查版本更新
* @param {Object} data
*/
export function checkAppVersion(data) {
return request({
url: "/common/checkAppVersion",
method: "post",
data,
});
}
/**
* 查询分享海报
@@ -99,4 +87,50 @@ export function getCarouselImage(data) {
method: "get",
data,
});
}
export function getWithdraw(data) {
return request({
url: "/withdrawAccount/getWithdrawAccountsList",
method: "get",
data,
});
}
export function bindWithdraw(data) {
return request({
url: "/withdrawAccount/bindWithdrawAccount",
method: "post",
data,
cha:1
});
}
export function unbindWithdraw(data) {
return request({
url: "/withdrawAccount/unbindWithdrawAccount",
method: "get",
data,
});
}
export function sendWithdraw(data) {
return request({
url: "/withdraw/withdraw",
method: "post",
data,
cha:1
});
}
/**
* 检查版本更新
* @param {Object} data
*/
export function checkAppVersion(data) {
return request({
url: "/common/checkAppVersion",
method: "post",
data,
});
}