Authored by 毕凯

解决之前缓存错误的问题

... ... @@ -9,6 +9,12 @@ const qs = require('yoho-qs');
const tip = require('plugin/tip');
const yoho = require('./yoho-app');
// 如果不是 App,就把这个 cookie 清理掉,解决之前缓存错误的问题 20171020
const isApp = qs.app_version || /YohoBuy/i.test(navigator.userAgent || '');
if (!isApp) {
cookie.remove('app_uid', 'app_version', 'app_client_type');
}
// App 的信息需要存下来
if (yoho.isApp && qs.uid && qs.app_version && qs.client_type) {
... ...