diff --git a/pages/rwa_package/account/withdraw.vue b/pages/rwa_package/account/withdraw.vue index 4a04ede..52cf3cb 100644 --- a/pages/rwa_package/account/withdraw.vue +++ b/pages/rwa_package/account/withdraw.vue @@ -320,7 +320,6 @@ export default { accountType:this.curSelect == '0' ? 1 : 2 } let _this = this; - console.log('absc',params,) sendWithdraw(params).then(res=>{ console.log('absc',res) if (res && res.bizcode == 100) { @@ -337,7 +336,7 @@ export default { setTimeout(()=>{ _this.$refs.uToastRef.show({ type: 'error', - message: subMsg, + message: res.data.alResponse.subMsg, }); },400) @@ -356,7 +355,10 @@ export default { }, fail: (res) => { - console.log(res.errMsg) + _this.$refs.uToastRef.show({ + type: 'error', + message: '提现失败', + }); }, })