From d0fd43dc856abc30b53e4ebe2258d85123f987f5 Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Sat, 19 Apr 2025 13:52:44 +0800
Subject: [PATCH] feat: 顶部热门修改

---
 src/views/wallet/withdraw.vue |   32 +++++++++++++++++---------------
 1 files changed, 17 insertions(+), 15 deletions(-)

diff --git a/src/views/wallet/withdraw.vue b/src/views/wallet/withdraw.vue
index 3eca580..ca1eaeb 100644
--- a/src/views/wallet/withdraw.vue
+++ b/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;

--
Gitblit v1.9.3