Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
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
Plain Diff
Browse Files
Authored by
周奇琪
2016-11-25 20:46:47 +0800
Commit
042bf66a2afe9477861105d332943fdfafc8dc49
2 parents
06c2ce1b
4f41d484
Merge branch 'hotfix/qrcode' into 'master'
解决个人中心二维码无法扫码问题 See merge request
!7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
apps/home/models/myqrcode.js
apps/home/models/myqrcode.js
View file @
042bf66
...
...
@@ -9,8 +9,8 @@ exports.getQr = (params) => {
try
{
uid
=
crypto
.
decrypt
(
PASSWORD
,
decodeURIComponent
(
params
.
token
));
uid
=
parseInt
(
uid
,
10
)
}
catch
(
e
)
{
console
.
error
(
e
);
uid
=
params
.
token
;
}
...
...
Please
register
or
login
to post a comment