Authored by Targaryen

mkt_code

Showing 1 changed file with 11 additions and 6 deletions
... ... @@ -348,13 +348,18 @@ function setMktc() {
expires: new Date(Date.now() + (7 * 24 * 60 * 60 * 1000))
}
if (isWechat) {
// 微信中,不管是否已经种入cookie,直接覆盖
cookies('mkt_code', mktc, options);
} else if (!cookies('mkt_code') || mktc === '100000000000349'){
// 如果没有种入mtk_code则种入
cookies('mkt_code', mktc, options);
// 170717 因流量劫持问题要求修改
if (!cookies('mkt_code') || cookies('mkt_code') !== mktc || mktc === '100000000000349') {
cookies('mkt_code', mktc, options);
}
// if (isWechat) {
// // 微信中,不管是否已经种入cookie,直接覆盖
// cookies('mkt_code', mktc, options);
// } else if (!cookies('mkt_code') || mktc === '100000000000349'){
// // 如果没有种入mtk_code则种入
// cookies('mkt_code', mktc, options);
// }
}
}
... ...