Authored by 郭成尧

seo-title

... ... @@ -230,8 +230,9 @@ const category = (req, res, next) => {
let params = Object.assign({}, req.query);
try {
seoTitle = decodeURIComponent(req.query.title || req.query.sort_name) || '商品列表';
seoTitle = decodeURIComponent(req.query.title || req.query.sort_name);
} catch (e) {
seoTitle = '商品列表';
logger.error('decodeURIComponent seoTitle: ' + e);
}
... ...