Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wx-school-app
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姜雷
wx-school-app
Commits
c97ea5b3
Commit
c97ea5b3
authored
Mar 12, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加注册密码校验
parent
d2566cb5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Register.tsx
src/pages/Register/Register.tsx
+3
-3
No files found.
src/pages/Register/Register.tsx
View file @
c97ea5b3
...
...
@@ -119,14 +119,14 @@ class Register extends Component {
});
return
false
;
}
if
(
!
pwd
)
{
if
(
!
pwd
||
pwd
.
length
<
6
)
{
Taro
.
showToast
({
title
:
'请输入密码'
,
icon
:
'none'
,
});
return
false
;
}
if
(
!
checkPwd
)
{
if
(
!
checkPwd
||
checkPwd
.
length
<
6
)
{
Taro
.
showToast
({
title
:
'请输入确认密码'
,
icon
:
'none'
,
...
...
@@ -135,7 +135,7 @@ class Register extends Component {
}
if
(
pwd
!=
checkPwd
)
{
Taro
.
showToast
({
title
:
'
请输入确认密码
'
,
title
:
'
两次密码不一致
'
,
icon
:
'none'
,
});
return
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment