...
|
...
|
@@ -8,8 +8,6 @@ |
|
|
const _ = require('lodash');
|
|
|
const moment = require('moment');
|
|
|
const ghelper = require('./guang-helper');
|
|
|
const querystring = require('querystring');
|
|
|
|
|
|
|
|
|
const helpers = global.yoho.helpers;
|
|
|
const serviceApi = global.yoho.ServiceAPI;
|
...
|
...
|
@@ -759,7 +757,10 @@ const getArticleComments = (aid, page, pageSize) => { |
|
|
pageSize: pageSize,
|
|
|
page: page,
|
|
|
list: list,
|
|
|
baseUrl: `?${querystring.stringify({pageSize: pageSize})}`
|
|
|
baseUrl: helpers.urlFormat('/info/index', {
|
|
|
id: aid,
|
|
|
pageSize: pageSize
|
|
|
}, 'guang')
|
|
|
};
|
|
|
});
|
|
|
};
|
...
|
...
|
|