From 5adb2dc0ec499e174270dc146b2159fcd1c5943a Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 11 Sep 2023 14:25:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- subpkg/withdrawDeposit/company.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subpkg/withdrawDeposit/company.vue b/subpkg/withdrawDeposit/company.vue index a9b8443..cdc7912 100644 --- a/subpkg/withdrawDeposit/company.vue +++ b/subpkg/withdrawDeposit/company.vue @@ -43,6 +43,7 @@ payMoney: { money: '0.00', end_cycle: '', + end_cycle_time: '' }, payTimer: null, timeCount: 5, @@ -86,6 +87,7 @@ async loadWithddrawInfo(){ let res = await getCurrCycleWithdraw(); this.payMoney.money = parseFloat(res.data?.user_currrent_total_withdraw_money).toFixed(2); + this.payMoney.end_cycle_time = res.data.end_cycle; res.data.end_cycle ? this.payMoney.end_cycle = uni.$u.timeFormat(res.data.end_cycle, 'yyyy-mm-dd') : this.payMoney.end_cycle||''; }, // 提现 @@ -107,7 +109,7 @@ async goApply() { let res = await userWithdraw({ amount: this.payMoney.money, - transfer_end_cycel: this.payMoney.end_cycle + transfer_end_cycel: this.payMoney.end_cycle_time }); uni.showToast({ icon:'success',