diff --git a/api/members.js b/api/members.js
index e198238..79b82d8 100644
--- a/api/members.js
+++ b/api/members.js
@@ -23,6 +23,23 @@ export function withdrawalApply(params) {
});
}
+export function getWithdrawApplyPage(params) {
+ return http.request({
+ url: "/member/withdrawApply",
+ method: Method.GET,
+ needToken: true,
+ params,
+ });
+}
+
+export function getWithdrawApplyWechatTransferInfo(id) {
+ return http.request({
+ url: `/member/withdrawApply/wechat/transfer/${id}`,
+ method: Method.GET,
+ needToken: true,
+ });
+}
+
/**
* 支付结果查询
* @param orderType 交易类型,可用值:TRADE,ORDER,RECHARGE
diff --git a/pages.json b/pages.json
index 48a8f83..5e26fd6 100644
--- a/pages.json
+++ b/pages.json
@@ -211,6 +211,12 @@
}
},
+ {
+ "path": "deposit/withdrawApply",
+ "style": {
+ "navigationStyle": "custom"
+ }
+ },
{
"path": "deposit/info",
diff --git a/pages/mine/deposit/operation.vue b/pages/mine/deposit/operation.vue
index ab73181..701217d 100644
--- a/pages/mine/deposit/operation.vue
+++ b/pages/mine/deposit/operation.vue
@@ -15,6 +15,12 @@