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
毕凯
2017-02-25 15:36:37 +0800
Commit
821bbfdcc112bfb51c5718616b5e4cba609d6982
2 parents
56720802
68e00666
Merge branch 'hotfix/unionData' into 'release/5.4.1'
下单 union data参数 See merge request
!306
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
apps/cart/controllers/order.js
apps/cart/controllers/order.js
View file @
821bbfd
...
...
@@ -223,7 +223,7 @@ exports.orderSub = (req, res, next) => {
unionKey
=
testQyhUnion
.
client_id
?
encryData
:
''
;
}
}
else
{
unionKey
=
'{"client_id":'
+
req
.
cookies
.
mkt_code
+
'}'
;
unionKey
=
'{"client_id":'
+
req
.
cookies
.
mkt_code
+
(
req
.
cookies
.
union_data
?
',"union_data":'
+
req
.
cookies
.
union_data
:
''
)
+
'}'
;
}
/* 检查联盟参数是否有效 */
...
...
Please
register
or
login
to post a comment