From 5dfb843c29fdcc1693961b70a36ddee3fea85a4a Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 27 Feb 2026 16:33:11 +0800
Subject: [PATCH] 1

---
 src/page/login/register.vue |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/src/page/login/register.vue b/src/page/login/register.vue
index 6ff323b..1740807 100644
--- a/src/page/login/register.vue
+++ b/src/page/login/register.vue
@@ -11,11 +11,10 @@
             :placeholder="placeholder"
             size="medium"
             v-model="phone"
-            maxlength="10"
             clearable
             @input="handleInput()"
           >
-            <template slot="prepend">+91</template>
+            <template slot="prepend">+81</template>
           </el-input>
 
           <el-input
@@ -53,7 +52,7 @@
           <van-checkbox v-model="checked">{{
             $t("我已閱讀並同意")
           }}</van-checkbox>
-          <span style="color: rgb(5, 106, 239)">{{
+          <span @click="gotoxy" style="color: rgb(5, 106, 239)">{{
             $t("《用戶服務協議》")
           }}</span>
         </div>
@@ -109,6 +108,9 @@
       : "";
   },
   methods: {
+    gotoxy(){
+      this.$router.push("/help_fwxy");
+    },
     handleInput() {
       if (
         this.userPassword !== "" &&
@@ -123,7 +125,7 @@
     },
 
     async gook() {
-      if (this.phone.length !== 10) {
+      if (this.phone.length == 0) {
         Notify({ type: "warning", message: this.$t("hj28") });
       } else if (isNull(this.userPassword)) {
         Notify({ type: "warning", message: this.$t("hj30") });
@@ -172,8 +174,8 @@
   font-size: 0.37333rem;
   color: #8c9fad;
   text-align: center;
-  margin: 0 auto;
-  margin-top: 10px;
+  margin: 20px auto;
+  // margin-top: 10px;
 }
 .radio-con {
   margin-top: 0.32rem;

--
Gitblit v1.9.3