From e5099e0d8640a2f60cbee0542b40a79ccd02a66a Mon Sep 17 00:00:00 2001 From: yangrz Date: Mon, 22 Jan 2024 21:39:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=8F=90=E7=8E=B0=E5=8E=86?= =?UTF-8?q?=E5=8F=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agentApp/common/api.js | 4 +- .../withdrawal-history/withdrawal-history.vue | 171 +++++++++--------- 2 files changed, 87 insertions(+), 88 deletions(-) diff --git a/agentApp/common/api.js b/agentApp/common/api.js index abdc2ec..e44a844 100644 --- a/agentApp/common/api.js +++ b/agentApp/common/api.js @@ -54,4 +54,6 @@ export const userOrderList = (params) => http.post(baseUrl + '/api/user/orderLis export const userFillAlipayAccount = (params) => http.post(baseUrl + '/api/user/fillAlipayAccount', params, userConfig()) -export const userWithdraw = (params) => http.post(baseUrl + '/api/user/withdraw', params, userConfig()) \ No newline at end of file +export const userWithdraw = (params) => http.post(baseUrl + '/api/user/withdraw', params, userConfig()) + +export const userWithdrawList = (params) => http.post(baseUrl + '/api/user/withdrawList', params, userConfig()) \ No newline at end of file diff --git a/agentApp/pages/withdrawal-history/withdrawal-history.vue b/agentApp/pages/withdrawal-history/withdrawal-history.vue index 1de2a0c..863dfec 100644 --- a/agentApp/pages/withdrawal-history/withdrawal-history.vue +++ b/agentApp/pages/withdrawal-history/withdrawal-history.vue @@ -2,127 +2,124 @@ - + - 流水号: 139812983213 + 流水号: {{item.out_biz_no}} - - 提现成功 - - - 2023-11-28 15:45:39 - - - - -¥458.00 - - - - - - 流水号: 139812983213 + + 审核中 - + 提现成功 - - 2023-11-28 15:45:39 + + 审核不通过:{{item.review_remark}} - - - -¥458.00 - - - - - - 流水号: 139812983213 - - - 提现成功 + + 申请时间:{{item.created_at}} - 2023-11-28 15:45:39 + 审核时间:{{item.reviewed_at}} - - - -¥458.00 - - - - - - 流水号: 139812983213 + + 提现金额:¥{{item.amount}} - - 提现成功 + + 扣手续费:¥{{item.fee}} - 2023-11-28 15:45:39 + 实际到账:¥{{item.receive_amount}} - - -¥458.00 - + + \ No newline at end of file