no message

This commit is contained in:
2025-10-20 10:44:08 +08:00
parent c1c03ba390
commit 64a3e7310c
+5 -3
View File
@@ -320,7 +320,6 @@ export default {
accountType:this.curSelect == '0' ? 1 : 2 accountType:this.curSelect == '0' ? 1 : 2
} }
let _this = this; let _this = this;
console.log('absc',params,)
sendWithdraw(params).then(res=>{ sendWithdraw(params).then(res=>{
console.log('absc',res) console.log('absc',res)
if (res && res.bizcode == 100) { if (res && res.bizcode == 100) {
@@ -337,7 +336,7 @@ export default {
setTimeout(()=>{ setTimeout(()=>{
_this.$refs.uToastRef.show({ _this.$refs.uToastRef.show({
type: 'error', type: 'error',
message: subMsg, message: res.data.alResponse.subMsg,
}); });
},400) },400)
@@ -356,7 +355,10 @@ export default {
}, },
fail: (res) => { fail: (res) => {
console.log(res.errMsg) _this.$refs.uToastRef.show({
type: 'error',
message: '提现失败',
});
}, },
}) })