﻿// JavaScript Document
$(document).ready(function () {
    //设置用户登录状态
    $.get("/tools/getUser.aspx", null, function (json) {
        if (json.userid == 0) {
            var html = '您好，欢迎来到居长安西安买房卖房专业网站！';
            html += '<span class="lanse">';
            html += '[<a href="/user/index.aspx" class="lanse">请登录</a>] ';
            html += '[<a href="/user/index.aspx?url=/user/Register.aspx" class="lanse">免费注册</a>] ';
            html += '[<a href="/#" class="lanse">帮助</a>] ';
            html += '[<a href="/#" class="lanse">地图找房</a>] ';
            html += '</span> ';
            html += "&nbsp;&nbsp;服务电话：<strong>029-88899711";
            $("#userwrapper").html(html);
        } else {
            var html = '您好：' + (json.type == 'agency' ? json.passport : json.name) + '，欢迎来到居长安！';
            html += '<span class="lanse">';
            if (json.type == 'agency') {
                html += '[<a href="/user/" class="lanse">管理中心</a>] ';
                html += '[<a href="/agency/' + json.userid + '/index.html" class="lanse">我的店铺</a>] ';
            } else {
                html += '[<a href="/user/" class="lanse">管理中心</a>] ';
                html += '[<a href="/broker/' + json.userid + '/index.html" class="lanse">我的店铺</a>] ';
            }
            html += '[<a href="/user/UserLogout.aspx" class="lanse">退出</a>] ';
            html += '</span> ';
            html += "&nbsp;&nbsp;服务电话：<strong>029-88899711";
            $("#userwrapper").html(html);
        }
    }, "json");
});
