陶杰
2024-11-06 a0ea1ece4e3ffb728aee73e954d65a2209ebde32
sub_pages/supplier/wallet/wallet-withdrao-deposit.vue
@@ -95,11 +95,15 @@
                     uni.navigateBack()
                  }, 1000)
               } else {
                  this.$message.showToast(resp.msg)
                  // if(resp&&resp.data&&resp.data[0]){
                  //    this.$message.showToast(resp.data[0].msg)
                  // }
                  this.$message.showToast("提现失败")
               }
            }).catch(err => {
               console.log(err)
            }).finally(() => {
               this.$message.hideLoading()  // 关闭加载提示
            })
@@ -124,6 +128,11 @@
               if (value > this.wallet.withdrawableAmount) {
                  return callback(new Error('提现金额不能大于可提现金额'));
               }
               // 提现金额不能大于500
               if (value > 500) {
                  return callback(new Error('提现金额不能大于500'));
               }
                callback();
            },