交易所前端蓝色ui 4.5 jiem
jhzh
2025-05-19 c5487881d04780e03f4dd86ed1606c587f2c7952
src/views/wallet/withdraw.vue
@@ -637,22 +637,24 @@
        session_token: this.session_token,
      };
      // 申请提现
      Axios.postFormData("api/withdraw/apply", withdrawParams).then((res) => {
        var jsonArray = res;
        if (jsonArray.code == 0) {
          this.$message.success(this.$t("message.user.xian37"));
          this.address = "";
          this.inputPwd = "";
          this.getWithdrawRecord();
        } else if (jsonArray.code == "105") {
          this.$message.error(
            this.$t("message.user.xian38") +
              jsonArray.msg +
              this.$t("message.user.xian39")
          );
      Axios.postFormData("wap/api/withdraw!apply.action", withdrawParams).then(
        (res) => {
          var jsonArray = res;
          if (jsonArray.code == 0) {
            this.$message.success(this.$t("message.user.xian37"));
            this.address = "";
            this.inputPwd = "";
            this.getWithdrawRecord();
          } else if (jsonArray.code == "105") {
            this.$message.error(
              this.$t("message.user.xian38") +
                jsonArray.msg +
                this.$t("message.user.xian39")
            );
          }
          this.getWithdraw_open();
        }
        this.getWithdraw_open();
      });
      );
    },
    cbAdressChoose(add) {
      this.address = add;