修复:开发测试问题修改

This commit is contained in:
2025-11-27 18:18:47 +08:00
parent 7062e675f6
commit 435a23f995
16 changed files with 99 additions and 1400 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class="page">
<view class="title">{{ $t('forget.title') }}</view>
<view class="title" :style="{ 'margin-top': getNotchHeight() + 'px' }">{{ $t('forget.title') }}</view>
<!-- 邮箱输入 -->
<view class="input-box">
@@ -53,7 +53,8 @@
<text class="input-tit">{{ $t('forget.passwordAgain') }}</text>
<input
class="input-text"
type="password"
type="password"
minlength="8"
maxlength="20"
v-model="confirmPassword"
:placeholder="$t('forget.passwordAgainPlaceholder')"
@@ -73,6 +74,7 @@ import { useI18n } from 'vue-i18n'
import { commonApi } from '@/api/modules/common'
import { resetPassword } from '@/api/modules/auth'
import { validateEmail, checkPasswordStrength } from '@/utils/validator'
import { getNotchHeight } from '@/utils/system'
const { t } = useI18n()