From 34ef18c62b80167c86345eaf635e871e792d4da2 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Mon, 06 May 2024 14:49:55 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/0311' into 0311
---
src/page/login/register.vue | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/src/page/login/register.vue b/src/page/login/register.vue
index 61edde4..52bd8b9 100644
--- a/src/page/login/register.vue
+++ b/src/page/login/register.vue
@@ -129,11 +129,7 @@
} else if (isNull(this.rePassword)) {
Notify({ type: "warning", message: this.$t("hj31") });
} else {
- if (!/(^[1-9]\d*$)/.test(this.phone)) {
- Notify({ type: "warning", message: this.$t("hj28") });
- } else if (this.phone.toString().length != 10) {
- Notify({ type: "warning", message: this.$t("hj28") });
- } else if (this.userPassword !== this.rePassword) {
+ if (this.userPassword !== this.rePassword) {
this.password = 0;
this.password2 = 0;
Notify({ type: "warning", message: this.$t("hj32") });
--
Gitblit v1.9.3