Authored by 毕凯

Merge branch 'hotfix/installment-cookie' into 'master'

分期首页去掉js端的设置cookie

分期首页由服务端返回cookies,去掉js端的插入cookie避免重复


See merge request !17
... ... @@ -168,11 +168,11 @@ var installment = {
});
},
setCookies: function() {
window.setCookie('installmentUid', window.queryString.uid);
window.setCookie('yhChannel', window.queryString.yh_channel);
window.setCookie('udid', window.queryString.udid);
window.setCookie('clientType', window.queryString.client_type);
window.setCookie('appVersion', window.queryString.app_version);
// window.setCookie('installmentUid', window.queryString.uid);
// window.setCookie('yhChannel', window.queryString.yh_channel);
// window.setCookie('udid', window.queryString.udid);
// window.setCookie('clientType', window.queryString.client_type);
// window.setCookie('appVersion', window.queryString.app_version);
}
};
... ...