Authored by yyq

to h5

... ... @@ -3,9 +3,9 @@
const helpers = global.yoho.helpers;
const getQuestionnaire = (req, res) => {
let id = req.param || '';
let id = req.params.id || '';
res.redirect(helpers.urlFormat(`/questionnaire/${id}`, null, 'm'));
res.redirect(helpers.urlFormat(`/3party/questionnaire/${id}`, null, 'm'));
};
module.exports = {
... ...