Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-blk
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
shijian
8 years ago
Commit
3e6d89c820470170bb21ee19fd05fc2ab957f587
1 parent
de501459
记住密码的bug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
doraemon/middleware/user.js
doraemon/middleware/user.js
View file @
3e6d89c
...
...
@@ -46,7 +46,7 @@ module.exports = () => {
let
password
=
data
.
password
;
let
area
=
data
.
area
;
return
LoginService
.
signin
Async
(
area
,
account
,
password
);
return
LoginService
.
signin
(
'PasswordLogin'
,
area
,
account
,
password
,
''
,
req
);
}).
then
(
result
=>
{
if
(
result
.
code
!==
200
)
{
return
Promise
.
reject
(
new
Error
(
result
.
message
));
...
...
Please
register
or
login
to post a comment