From 732c30b33f782c2d2ebb62eacda2fb7a453a7ecd Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Sat, 31 Jan 2026 11:01:45 +0800
Subject: [PATCH] 1

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

diff --git a/src/page/login/register.vue b/src/page/login/register.vue
index f798786..8a00b0c 100644
--- a/src/page/login/register.vue
+++ b/src/page/login/register.vue
@@ -7,9 +7,9 @@
     <div class="logins_content">
       <div class="login_forms">
         <div class="top_forms">
-          <el-input :placeholder="placeholder" size="medium" v-model="phone" maxlength="10" clearable
+          <el-input :placeholder="placeholder" size="medium" v-model="phone" maxlength="13" clearable
             @input="handleInput()">
-            <template slot="prepend">+91</template>
+            <!-- <template slot="prepend">+91</template> -->
           </el-input>
 
           <el-input style="margin-top: 0.46rem" show-password :placeholder="$t('hj19')" size="medium"
@@ -99,6 +99,8 @@
     async gook() {
       if (this.phone.length == 0) {
         Notify({ type: "warning", message: this.$t("hj28") });
+      } else if (this.phone.length < 8) {
+        Notify({ type: "warning", message: this.$t("不能小于8位数") });
       } else if (isNull(this.userPassword)) {
         Notify({ type: "warning", message: this.$t("hj30") });
       } else if (isNull(this.rePassword)) {

--
Gitblit v1.9.3