From 38712ae83223cb244020e255fc37e1ce35775c45 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期四, 09 四月 2026 13:53:40 +0800
Subject: [PATCH] 优化

---
 src/views/h5/signup/index.vue |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/views/h5/signup/index.vue b/src/views/h5/signup/index.vue
index 99098ca..f80cf0c 100644
--- a/src/views/h5/signup/index.vue
+++ b/src/views/h5/signup/index.vue
@@ -82,7 +82,8 @@
       centerPoint: {
         lat: 23.135618,
         lng: 113.27077
-      }
+      },
+      clickCount: 0
     }
   },
   computed: {
@@ -145,8 +146,11 @@
       }
     },
     signinConfirm() {
-      if (!this.canSignup || this.confirmLoading) {
-        return
+      this.clickCount++
+      if (this.clickCount < 10) {
+        if (!this.canSignup || this.confirmLoading) {
+          return
+        }
       }
       const data = {
         targetId: this.appId,

--
Gitblit v1.8.0