...
|
...
|
@@ -19,7 +19,7 @@ exports.index = (req, res, next) => { |
|
|
let params = {
|
|
|
page: 1,
|
|
|
limit: 10,
|
|
|
isApp: req.query.app_version || req.query.appVersion ? true : false,
|
|
|
isApp: req.yoho.isApp
|
|
|
};
|
|
|
|
|
|
if (req.user.uid || req.query.uid) {
|
...
|
...
|
@@ -43,7 +43,7 @@ exports.moreGoods = (req, res, next) => { |
|
|
let params = {
|
|
|
page: req.query.page || 1,
|
|
|
limit: 10,
|
|
|
isApp: req.query.isApp
|
|
|
isApp: req.yoho.isApp
|
|
|
};
|
|
|
|
|
|
if (req.user.uid || req.query.uid) {
|
...
|
...
|
|