Toggle navigation
Toggle navigation
This project
Loading...
Sign in
mobile
/
YH_RNComponent
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
QC-L
2018-09-25 16:18:26 +0800
Commit
199d99bf196b93971b4803caf6e1e2128156d24c
1 parent
6457b4a0
修复银行分行信息可以输入空格的 bug review by sunkai
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
js/alliance/components/BankCard.js
js/alliance/components/BankCard.js
View file @
199d99b
...
...
@@ -58,7 +58,8 @@ export default class BankCard extends Component {
return
}
if
(
!
this
.
state
.
bankBranch
)
{
let
bankBranch
=
this
.
state
.
bankBranch
;
if
(
!
bankBranch
||
!
bankBranch
.
trim
())
{
this
.
setState
({
messageTips
:
'请输入分行/支行信息'
});
return
}
...
...
Please
register
or
login
to post a comment