From e7610ae2fb4bdfaa404490e88081264dd4b33ab2 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Tue, 03 Feb 2026 14:49:05 +0800
Subject: [PATCH] 1
---
src/views/register/index.vue | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/views/register/index.vue b/src/views/register/index.vue
index 026430e..95a10fc 100644
--- a/src/views/register/index.vue
+++ b/src/views/register/index.vue
@@ -25,11 +25,11 @@
:dialCode="dialCode" @selectArea="onSelectArea" :icon="icon" />
<ExInput :placeholderText="$t('passwordTips')" v-model="password" typeText="password" />
- <ExInput :placeholderText="$t('surePassword')" v-model="repassword" typeText="password" />
+ <!-- <ExInput :placeholderText="$t('surePassword')" v-model="repassword" typeText="password" /> -->
<ExInput :placeholderText="$t('safewordTips')" v-model="safeword" typeText="password"
v-if="activeIndex === 1" />
- <div class="inputCom" v-if="activeIndex === 1">
+ <!-- <div class="inputCom" v-if="activeIndex === 1">
<div class="iptbox inputBackground">
<input class="inputBackground textColor" type="text" :placeholder="$t('entryVerifyCode')"
v-model="verifyCode">
@@ -37,7 +37,7 @@
<template v-if="time">({{ time }})s</template>
</span>
</div>
- </div>
+ </div> -->
<ExInput :placeholderText="$t('entryInvitCode')" v-model="invitCode" :clearBtn="false" />
<div class="protocol textColor">
<i @click="agreeProt">
@@ -208,10 +208,10 @@
showToast(t('safewordTips'));
return
}
- if (verifyCode.value.length < 6) {
- showToast(t('entryVerifyTips'));
- return
- }
+ // if (verifyCode.value.length < 6) {
+ // showToast(t('entryVerifyTips'));
+ // return
+ // }
} else if (activeIndex.value == 2) {
if (!(/(^[1-9]\d*$)/.test(username.value))) {
showToast(t('entryPhone'));
@@ -230,10 +230,10 @@
showToast(t('passwordTips'));
return
}
- if (repassword.value !== password.value) {
- showToast(t('noSamePassword'));
- return
- }
+ // if (repassword.value !== password.value) {
+ // showToast(t('noSamePassword'));
+ // return
+ // }
if (!agree.value) {
showToast(t('agreeServiceCond'));
return
@@ -288,7 +288,7 @@
// re_password: repassword.value,
type: type.value,
userCode: invitCode.value,
- emailCode: verifyCode.value,
+ // emailCode: verifyCode.value,
}).then((res) => {
userStore[GET_USERINFO](res)
store.state.user.userInfo = res
--
Gitblit v1.9.3