﻿/// <reference path="../jQuery-vsdoc.js" />

//商品数
var itemCount=0;
$(document).ready(function(){
    setShoppingCar();
    setWelcome();
});

function setLoginInfo()
{
	 if(hasLogin())
    {
        setWelcome();
    }
}
//判断用户是否登录
function hasLogin()
{
    return getCookie("UserLogin")!="";
}

//异步获取用户登录名称.
function setWelcome()
{
    $.getScript("/Usercenter/userajax.aspx?action=GetUserName", function(){
            if(typeof(data)!='undefined'&&data!="")
            {
                $("#userloginwelcome").html("您好 <img src=\"/images/smell.gif\">，<a  href='/UserCenter/OrderList.aspx'>"+data+"</a>。<a  href='/loginout.aspx'>退出登录</a>");
            }
            else
            {
                return;           
            }
        }
    );  
}

//获取购物车内的物品数
function setShoppingCar()
{
	 $.getScript("/Usercenter/userajax.aspx?action=GetUserShoppingCarInfo", function(){
        if(typeof car_info!='undefined'&&car_info!="")
        {
            $("#prdCount").html(car_info.TotCount);
            $("#price").html(car_info.TotMoney);
        }
    });
}
