Authored by 毕凯

Merge branch 'hotfix/question' into 'gray2'

protocol



See merge request !1088
... ... @@ -4,7 +4,7 @@ require('3party/question-list.page.css');
let $ = require('yoho-jquery'),
yoho = require('yoho-app');
const DETAIL_URI = 'http://m.yohobuy.com/3party/questionnaire';
const DETAIL_URI = location.protocol + '//m.yohobuy.com/3party/questionnaire';
require('../common');
... ... @@ -115,7 +115,7 @@ $list.on('click', 'li', function() {
if (canShare && yoho && yoho.isApp) {
yoho.invokeMethod('go.showShareAlert', {
title: data.title,
link: 'https://m.yohobuy.com/3party/questionnaire/' + data.id,
link: DETAIL_URI + '/' + data.id,
desc: data.desc,
imgUrl: data.img
});
... ...