Authored by htoooth

移除头部请求

... ... @@ -77,6 +77,16 @@ function getUid() {
return user[1];
}
function getProfileName() {
var user = getUser();
if (user === 0) {
return 0;
}
return user[0];
}
function getShoppingKey() {
var c = cookie('_g');
... ... @@ -238,6 +248,8 @@ window.getUser = getUser;
window.getUid = getUid;
window.getProfileName = getProfileName;
window.getShoppingKey = getShoppingKey;
window.queryString = queryString;
... ...
... ... @@ -68,6 +68,10 @@ var cookieMap = {};
var bannerApi = '//new.yohobuy.com/common/getbanner?content_code=';
var fetchUserInfoEvent = $.Callbacks('once');
require('./common');
$('#api-domain').remove(); //删除信息表单
function getSource(column, postition, event) {
... ... @@ -1486,6 +1490,7 @@ function actionVipInfo(_data) {
}
$('#myYohoBox').mouseenter(function() {
$(this).addClass('acttags');
$('#myYohoBox .myyoho-info').show().html(vipInfoCombine(vipInfo));
headUrl = $('.myyoho-photo img').attr('data-url');
... ... @@ -1512,6 +1517,8 @@ function actionVipInfo(_data) {
$(this).removeClass('acttags');
$('#myYohoBox .myyoho-info').hide();
});
$('#myYohoBox').triggerHandler('mouseenter');
}
}
/**
... ... @@ -1533,6 +1540,32 @@ function actionLoginInfo() {
}
});
}
/**
* 设置用户登录后的用户名
*/
function actionProfileName(){
var profileName = getProfileName();
var uid = getUid();
if(!uid || !profileName){
return;
}
actionLoginState({profileName:profileName, result:'1'})
}
/**
* 移动到myYohoBox之后,显示东西
*/
function actionUserInfo(){
$('#myYohoBox').hover(function(){
fetchUserInfoEvent.fire();
},function(){
});
}
/**
* 初始化函数
* @return {[type]} [description]
... ... @@ -1558,7 +1591,9 @@ function init() {
actionClickMiniCartBox(); //点击购物车跳转
actionListenDelCarGoods(); //监听购物车删除
actionListenCartMore(); //
actionLoginInfo(); //获取登录信息
actionAddKeyWords(); //增加关键字
actionProfileName(); // 获得登录用户名
actionUserInfo(); // 异步获得用户数据
fetchUserInfoEvent.add(actionLoginInfo); // 获得事件代码
}
init();
\ No newline at end of file
... ...