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 @@ +
+
提现记录
+
+ +
+
@@ -111,4 +117,4 @@ export default { background: #fdf2ee; color: #ee6d41; } - \ No newline at end of file + diff --git a/pages/mine/deposit/withdrawApply.vue b/pages/mine/deposit/withdrawApply.vue new file mode 100644 index 0000000..995d9d3 --- /dev/null +++ b/pages/mine/deposit/withdrawApply.vue @@ -0,0 +1,252 @@ + + + + +