优化:去掉不必要的loading
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
<template>
|
||||
<view class="page">
|
||||
<view class="title" :style="{ 'margin-top': getNotchHeight() + 'px' }">{{ $t('forget.title') }}</view>
|
||||
<!-- 自定义导航栏 -->
|
||||
<nav-bar :title="$t('forget.title')" />
|
||||
<!-- <view class="title" :style="{ 'margin-top': getNotchHeight() + 'px' }">{{ $t('forget.title') }}</view> -->
|
||||
|
||||
<!-- 邮箱输入 -->
|
||||
<view class="input-box">
|
||||
@@ -33,7 +35,7 @@
|
||||
<input
|
||||
class="input-text"
|
||||
type="password"
|
||||
maxlength="20"
|
||||
:maxlength="20"
|
||||
v-model="password"
|
||||
:placeholder="$t('forget.passwordPlaceholder')"
|
||||
@input="inputMethod(password)"
|
||||
@@ -54,8 +56,8 @@
|
||||
<input
|
||||
class="input-text"
|
||||
type="password"
|
||||
minlength="8"
|
||||
maxlength="20"
|
||||
:minlength="8"
|
||||
:maxlength="20"
|
||||
v-model="confirmPassword"
|
||||
:placeholder="$t('forget.passwordAgainPlaceholder')"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user